I am new to WPF. I need to create textboxes which is only accept digits. Not accepted any special characters, letters .
And the important thing is ,
No, it's not possible because XAML is a markup language. It has no support for distinguishing between digits and other type of characters.
You should use a programming language such as C# to implement this kind of logic.