ClickPicBox.cs 676 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System.Windows.Forms;
  2. namespace UAS_BARCODEIO
  3. {
  4. public partial class ClickPicBox : PictureBox
  5. {
  6. private string Power1;
  7. public string Power
  8. {
  9. get
  10. {
  11. return Power1;
  12. }
  13. set
  14. {
  15. Power1 = 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 ClickPicBox()
  31. {
  32. InitializeComponent();
  33. }
  34. }
  35. }