12345678910111213141516171819202122232425262728 |
- using System.Windows.Forms;
- namespace UAS_MES_NEW.CustomControl.ValueLabel
- {
- public partial class ValueLabel : Label
- {
- string CutLength1;
- public ValueLabel()
- {
- InitializeComponent();
- }
- public string CutLength
- {
- get
- {
- return CutLength1;
- }
- set
- {
- CutLength1 = value;
- }
- }
- }
- }
|