与 WPF 中的 DataGrid 上应用 RowValidationRules 等效的 C# 代码
我们可以使用以下 XAML 在 DataGrid 上应用 RowValidationRules。
<DataGrid.RowValidationRules>
<local:MyValidationClass ValidationStep="UpdatedValue"/>
</DataGrid.RowValidationRules>
我想知道如何通过 C# 代码实现相同的目标?
We can apply RowValidationRules on a DataGrid by using following XAML.
<DataGrid.RowValidationRules>
<local:MyValidationClass ValidationStep="UpdatedValue"/>
</DataGrid.RowValidationRules>
I want to know how can I achieve same through C# Code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以解决问题:
请注意,您需要设置 ValidationStep。
This should do the trick:
Note that you need to set the ValidationStep.