Silverlight 中的验证
如何验证silverlight控件的输入形式? 我有 3 个控件,其中三分之二是文本框(姓名和年龄),剩下的一个控件是日期选择器。
当我点击提交按钮时,应该调用验证。它将如何完成?
提前致谢。
how to validate the input form of a silverlight control?
I have 3 controls, two out of three are text boxes (For name, and Age), and the remaining one control is date picker.
When i hit submit button, the validation should be invoked. how it will done??
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用的是 Silverlight 3,请查看数据验证。 http://www.silverlightshow.net/items/Data- Validation-in-Silverlight-3.aspx
如果您使用的是 Silverlight 2,则必须滚动自己的代码进行验证。
If you're using Silverlight 3 check out Data Validation. http://www.silverlightshow.net/items/Data-Validation-in-Silverlight-3.aspx
If you're using Silverlight 2 you'll have to roll your own code for validation.
我为 SL2 编写了自己的验证。它基于:
I wrote my own validaion for SL2. It's based on:
您还可以找到验证应用程序块(它是企业库 Silverlight 集成包)很有用。它现在处于公共预览状态。
You may also find the Validation Application Block (which is part of the Enterprise Library Silverlight Integration Pack) useful. It's in public preview right now.