MaskedTextBox.cs 193 B

12345678910
  1. namespace System.Windows.Forms
  2. {
  3. // TODO?
  4. public class MaskedTextBox : TextBox
  5. {
  6. public string Mask { get; set; }
  7. public bool SkipLiterals { get; set; }
  8. }
  9. }