12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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;
- 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;
- }
- }
- }
- }
|