Silverlight DataGrid - 在未编辑单个单元格时验证新行
我有一个 silverlight 数据网格。
使用 DataAnnotations 进行验证效果非常好。但是,如果我向网格添加新行,直到我实际尝试编辑单元格之前,我不会启动验证。
当单元格未被单击时,是否没有办法强制网格进行验证?
I have a silverlight datagrid.
Validation works very well using DataAnnotations. However if I add a new row to the grid I don't get validation kicking in until I actuall try and edit cells.
Is there no way to force the grid to validate when a cell has not been clicked on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 DataGridTemplateColumn 与 TextBox 结合使用,并在添加项目后对其执行手动验证。看看我的问题,它非常相关: Silverlight DataGrid 验证显示验证错误对于所有对象|属性
Use DataGridTemplateColumn with TextBox and perform manual validation of item after you add it. See my question it is very related: Silverlight DataGrid validation show validation error for all objects|properties