Textbox validation for IP Address in WPF

2019-06-25 17:19发布

I'm making a WPF Application using C#. I want to put validations on integers (0123456789 and ".") only.. The textbox is supposed to contain an IP address... So need to ensure that user key in their correct "IP Address" before they click on the "Submit" button... How can I achieve it?

Thanks.

3条回答
一纸荒年 Trace。
2楼-- · 2019-06-25 17:26

You can easily implement this using Wpf binding validation rules or by using a custom masked textbox

Check these links for exactly what you are looking for

http://geekswithblogs.net/QuandaryPhase/archive/2008/12/17/wpf-masked-textbox.aspx

http://www.switchonthecode.com/tutorials/wpf-tutorial-binding-validation-rules

Hope it helps..

查看更多
聊天终结者
3楼-- · 2019-06-25 17:26

The following question link on StackOverflow contains a lot of pointers to MaskedTextBox implementation in WPF. You can use it to get IP Address input from user.

Where can I find a free masked TextBox in WPF?

查看更多
倾城 Initia
4楼-- · 2019-06-25 17:36

Sounds like you're trying to implement a masked textbox, which is a textbox that auto-format data as the user types according to a specified pattern. Check this tutorial on how to implement this, since is not featured in WPF out-of-the-box: Masked TextBox in WPF

查看更多
登录 后发表回答