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_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(); } } }