Ejemplo n.º 1
0
 protected TextValueField(string label, int maxLength, TextValueInput textValueInput)
     : base(label, maxLength, Char.MinValue, textValueInput)
 {
     m_UpdateTextFromValue = true;
     SetValueWithoutNotify(default(TValueType));
     onIsReadOnlyChanged += OnIsReadOnlyChanged;
 }
Ejemplo n.º 2
0
 protected TextValueField(int maxLength, TextValueInput textValueInput)
     : this(null, maxLength, textValueInput)
 {
 }
Ejemplo n.º 3
0
 protected TextValueField(string label, int maxLength, TextValueInput textValueInput)
     : base(label, maxLength, Char.MinValue, textValueInput)
 {
     SetValueWithoutNotify(default(TValueType));
 }