Datagrid行更新问题
我正在使用 WPF 工具包 Datagrid。我对此定义了一个 rowvalidationrule 。要触发此验证规则,在每个单元格更新时我必须按 Enter 按钮。但我想在每个单元格更新时检查这一点,而无需按 Enter 按钮。我怎样才能做到这一点。这是一个 MVVM 应用程序。 谢谢, 雷伊
I am using WPF toolkit Datagrid. I have a rowvalidationrule defined on this. to trigger this validation rule, on each cell update i have to hit enter button. but i want to check this on each cell update without hitting Enter button. How can i do this. this is a MVVM app.
Thanks,
Rey
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用 IDataErrorInfo 和 UpdateSourceTrigger=propertychanged 来触发单元格级别验证。
i am using IDataErrorInfo and UpdateSourceTrigger=propertychanged to trigger cell level validation.