| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System.Windows.Forms;
- namespace UAS_MES_NEW.CustomControl.PowerControlForm
- {
- public partial class PowerControlForm : Form
- {
- string PowerRead1;
- public string PowerRead
- {
- get
- {
- return PowerRead1;
- }
- set
- {
- PowerRead1 = value;
- }
- }
- string AllPower1;
- public string AllPower
- {
- get
- {
- return AllPower1;
- }
- set
- {
- AllPower1 = value;
- }
- }
- public PowerControlForm()
- {
- InitializeComponent();
- }
- }
- }
|