public TextFieldKeyAcceptedEventArgs(
     TerminalKeyInfo acceptedKey,
     int indexInField,
     TerminalColors colors)
 {
     this.AcceptedKey  = acceptedKey;
     this.IndexInField = indexInField;
     this.Colors       = colors;
     this.Reject       = false;
 }
Beispiel #2
0
 public virtual void KeyPressed(TerminalKeyInfo keyInfo)
 {
 }