wpf使用mvvm模式怎么控制界面上的DataGrid某一行有验证错误,提交按钮就不能使用
答案:2 悬赏:40 手机版
解决时间 2021-03-19 12:38
- 提问者网友:城市野鹿
- 2021-03-18 20:23
wpf使用mvvm模式怎么控制界面上的DataGrid某一行有验证错误,提交按钮就不能使用
最佳答案
- 五星知识达人网友:夜余生
- 2021-03-18 21:20
检查错误的通用方法:
using System.Windows.Controls;
public static bool IsValid(DependencyObject parent)
{
if (Validation.GetHasError(parent)) return false;
for (int i = 0; i != VisualTreeHelper.GetChildrenCount(parent); ++i)
{
DependencyObject child = VisualTreeHelper.GetChild(parent, i);
if (!IsValid(child)) return false;
}
return true;
}
using System.Windows.Controls;
public static bool IsValid(DependencyObject parent)
{
if (Validation.GetHasError(parent)) return false;
for (int i = 0; i != VisualTreeHelper.GetChildrenCount(parent); ++i)
{
DependencyObject child = VisualTreeHelper.GetChild(parent, i);
if (!IsValid(child)) return false;
}
return true;
}
全部回答
- 1楼网友:由着我着迷
- 2021-03-18 21:27
大概是bingding的datacontex发生了变化,可以用relativesource来寻找下,可否共享源码来调试?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯