12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System.Windows.Forms;
- namespace UAS_BARCODEIO
- {
- public partial class ClickPicBox : PictureBox
- {
- private string Power1;
- public string Power
- {
- get
- {
- return Power1;
- }
- set
- {
- Power1 = value;
- }
- }
- string AllPower1;
- public string AllPower
- {
- get
- {
- return AllPower1;
- }
- set
- {
- AllPower1 = value;
- }
- }
- public ClickPicBox()
- {
- InitializeComponent();
- }
- }
- }
|