ValueLabel.cs 463 B

12345678910111213141516171819202122232425262728
  1. using System.Windows.Forms;
  2. namespace UAS_MES_NEW.CustomControl.ValueLabel
  3. {
  4. public partial class ValueLabel : Label
  5. {
  6. string CutLength1;
  7. public ValueLabel()
  8. {
  9. InitializeComponent();
  10. }
  11. public string CutLength
  12. {
  13. get
  14. {
  15. return CutLength1;
  16. }
  17. set
  18. {
  19. CutLength1 = value;
  20. }
  21. }
  22. }
  23. }