当 WPF DataGrid 上发生验证错误时阻止保存
目前,我有一个 DataGrid,它绑定到我的 ViewModel 中的一些数据。我为行和列设置了 ValidationRules。我想做的是在出现任何验证错误时阻止用户保存文件。我正在使用 RelayCommands 类将“打开”、“保存”等命令路由到我的 ViewModel。
Currently, I have a DataGrid which is bound to some data in my ViewModel. I have ValidationRules set up for the Rows, and the Columns. What I would like to do is prevent the user from saving the file if there are any Validation Errors. I am using the RelayCommands class to route the Open, Save, etc commands to my ViewModel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查以下链接
如果验证失败,请禁用 WPF 中的“保存”按钮
使用 WPF 验证规则并禁用“保存”按钮
http://babaandthepigman.wordpress.com/2010/02/14/wpf-commanding- and-data-annotations-validation/
希望这有帮助......
Check the below links
Disable Save button in WPF if validation fails
Using WPF Validation rules and disabling a 'Save' button
http://babaandthepigman.wordpress.com/2010/02/14/wpf-commanding-and-data-annotations-validation/
Hope this helps...
您可能对WPF 应用程序框架 (WAF)的 BookLibrary 示例应用程序感兴趣a>。当验证错误处于活动状态时(例如 DataGrid),它会禁用“保存”按钮。
You might be interested in the BookLibrary sample application of the WPF Application Framework (WAF). It disables the Save button when a validation error is active (e.g. DataGrid).