Ejemplo n.º 1
0
 public TextBox(string Text, int X, int Y, int Width, int Height)
     : base(X, Y, Width, Height)
 {
     this.Text       = Text;
     _isValid        = true;
     _allowMultiline = false;
     _pressed        = false;
     _allowedChars   = AllowedCharTypesEnum.All;
     _editTextLabel  = string.Empty;
 }
Ejemplo n.º 2
0
 public TextBox(string Text, int X, int Y, int Width, int Height)
     : base(X, Y, Width, Height)
 {
     this.Text = Text;
     _isValid = true;
     _allowMultiline = false;
     _pressed = false;
     _allowedChars = AllowedCharTypesEnum.All;
     _editTextLabel = string.Empty;
 }