Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我将一个字符串放入需要整数的 TextBox(在 XAML 中),我会收到以下消息:
无法转换值“xy”。
有人请告诉我是否可以引入如下自定义错误消息:
请输入一个数字。
本文将帮助您做到这一点:http ://weblogs.asp.net/monikadyrda/archive/2009/06/24/wpf-textbox-validation.aspx
是的,您需要在页面后面的代码中覆盖 TextBox 规则的默认验证方法,即规则的 ValidationResult Validate 方法,并让此方法返回由您的字符串组成的 ValidationResult,即“请输入一个数字”。