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