| | |
| | | if (Parent != null) getNamespace(); |
| | | } |
| | | |
| | | private bool _isCk(int _type) { |
| | | private bool _isCk(int _type) |
| | | { |
| | | Form parentForm = this.FindForm(); |
| | | if (parentForm != null) |
| | | { |
| | | PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault(); |
| | | if (specificControl== null) |
| | | return false; |
| | | if (specificControl.Tag == null) |
| | | return false; |
| | | if (_type == 1) |
| | | { |
| | | PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault(); |
| | | if (specificControl != null) |
| | | { |
| | | if (specificControl.Tag.ToString() == "已审核") |
| | |
| | | } |
| | | if (_type == 0) |
| | | { |
| | | PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault(); |
| | | if (specificControl != null) |
| | | { |
| | | if (specificControl.Tag.ToString() == "未审核") |