Exemplo n.º 1
0
        protected override void OnDetaching()
        {
            Masking.SetMask(attachedTextBox, null);
            attachedTextBox = null;

            base.OnDetaching();
        }
Exemplo n.º 2
0
        private void AttachTextBox(TextBox textBox)
        {
            attachedTextBox = textBox;

            Masking.SetMask(attachedTextBox, @"^[a-zA-Z][a-zA-Z0-9\._-]*$");
        }