PowerControlForm.cs 717 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Windows.Forms;
  2. namespace UAS_MES_NEW.CustomControl.PowerControlForm
  3. {
  4. public partial class PowerControlForm : Form
  5. {
  6. string PowerRead1;
  7. public string PowerRead
  8. {
  9. get
  10. {
  11. return PowerRead1;
  12. }
  13. set
  14. {
  15. PowerRead1 = value;
  16. }
  17. }
  18. string AllPower1;
  19. public string AllPower
  20. {
  21. get
  22. {
  23. return AllPower1;
  24. }
  25. set
  26. {
  27. AllPower1 = value;
  28. }
  29. }
  30. public PowerControlForm()
  31. {
  32. InitializeComponent();
  33. }
  34. }
  35. }