Esempio n. 1
0
 public TextBox(Rect position, string initialText) : this()
 {
     Position = position;
     TextProperty.SetValueWithoutBinding(initialText);
 }
Esempio n. 2
0
 public TextBox(string initialText) : this()
 {
     TextProperty.SetValueWithoutBinding(initialText);
 }
Esempio n. 3
0
 public NumericTextBox(Rect position, float initialValue) : base()
 {
     FloatingPoint = true;
     Position      = position;
     TextProperty.SetValueWithoutBinding(initialValue.ToString());
 }
Esempio n. 4
0
 public NumericTextBox(int initialValue) : base()
 {
     FloatingPoint = false;
     TextProperty.SetValueWithoutBinding(initialValue.ToString());
 }
Esempio n. 5
0
 public NumericTextBox(Rect position) : base()
 {
     FloatingPoint = false;
     Position      = position;
     TextProperty.SetValueWithoutBinding("0");
 }
Esempio n. 6
0
 public NumericTextBox() : base()
 {
     FloatingPoint = false;
     TextProperty.SetValueWithoutBinding("0");
 }