如何在文本框上实现允许数字或字母数字值的依赖属性
我在 WPFApplication 中使用文本框,并且想要实现一个依赖属性,该属性将决定文本框是否允许输入数字或字母数字。
I am using a textbox in a WPFApplication and I want to implement a dependency property that will decide whether textbox allow input as numeric or alphanumeric.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至少有三种方法可以做到这一点。
1)派生一个子类,添加您的依赖属性
2)创建附加属性
3)创建并附加一个行为(使用表达式SDK)
there are at least three ways to do this.
1) derive a sub-class, adding your dependency property
2) create an attached property
3) create and attach a behavior (using the expression SDK)