| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System.Windows.Forms;
- namespace UAS_MES_NEW.CustomControl.CustomCheckBox
- {
- public partial class CustomCheckBox : CheckBox
- {
- /// <summary>
- /// 权限标识
- /// </summary>
- private string Power1;
- public string Power
- {
- get
- {
- return Power1;
- }
- set
- {
- Power1 = value;
- }
- }
- public string AllPower
- {
- get
- {
- return AllPower1;
- }
- set
- {
- AllPower1 = value;
- }
- }
- private string AllPower1;
- public CustomCheckBox()
- {
- InitializeComponent();
- }
- }
- }
|