123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace UAS_MES.CustomControl.CustomCheckBox
- {
- public partial class CustomCheckBox : CheckBox
- {
- /// <summary>
- /// 权限标识
- /// </summary>
- private string Power1;
- public string Power
- {
- get
- {
- return Power1;
- }
- set
- {
- Power1 = value;
- }
- }
- public CustomCheckBox()
- {
- InitializeComponent();
- }
- }
- }
|