| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.Windows.Forms;
- using UAS_MES_NEW.Properties;
- namespace UAS_MES_NEW.CustomControl.ButtonUtil
- {
- public partial class DeleteButton : Button
- {
- private string Power1;
- public DeleteButton()
- {
- InitializeComponent();
- this.Image = Resources._2_0btn_36;
- }
- string AllPower1;
- public string AllPower
- {
- get
- {
- return AllPower1;
- }
- set
- {
- AllPower1 = value;
- }
- }
- public string Power
- {
- get
- {
- return Power1;
- }
- set
- {
- Power1 = value;
- }
- }
- }
- }
|