Hi,
Does anyone know how to set the TextBox, TextBoxItem, EditControl or what ever property to read only so that the users can not type any text into it? I've tried every sub control that has a read only property I could find. Maybe I missed the correct one.
Thanks,
Mike
edit:
Still can not find it but accomplished with the KeyDown Event Handler
Does anyone know how to set the TextBox, TextBoxItem, EditControl or what ever property to read only so that the users can not type any text into it? I've tried every sub control that has a read only property I could find. Maybe I missed the correct one.
Thanks,
Mike
edit:
Still can not find it but accomplished with the KeyDown Event Handler
{
e.SuppressKeyPress = true;
e.Handled = true;
}