↧
Make Textbox Number Only – WPF
Coding : private void txt_PreviewTextInput(object sender, TextCompositionEventArgs e) { e.Handled = !ValidNumeric(e.Text); base.OnPreviewTextInput(e); } bool ValidNumeric(string str) { bool ret =...
View ArticleHow to bring the cursor to the end of text in the textbox control – WPF C#
Normally if we focus a textbox control the cursor would be in the start of the textbox.But when there is text already in the textbox it would be annoying if the cursor is in start.It would be better if...
View Article