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; } } } }