PowerControlForm.cs 873 B

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