我的视图模型实现IDataErrorInfo
并包含经过验证的Message
属性。
我创建了一个UserControl
,Text
DependencyProperty
绑定到Message
。我的UserControl
上有几个与Text
绑定的控件(因此显示Message
)。
如何在UserControl
中的控件上显示未直接绑定到Message
的控件上的验证错误?
答案 0 :(得分:2)
经过一段时间后,我设法找到了一个我认为应该分享的解决方案,以防其他人发现它有用:
基本上我在PropertyChangedCallback
Text
上添加了DependencyProperty
。在此回调中,我获得了Text
与视图模型上的属性之间的绑定,并检查它是否存在验证错误。如果找到ValidationError
,我会检查UserControl
中绑定到Text
的所有控件,并使用Validation.MarkInvalid
为其绑定提供相同的错误。
编辑:
如果我将下面的代码放在按钮单击事件处理程序中,那么复制这样的验证错误就可以了。但是,如果代码位于PropertyChangedCallback
Text
,那么没有任何反应。有没有人有解决方案?
// Get the binding from the Text property to the view model.
BindingExpression textBindingExpression = BindingOperations.GetBindingExpression(this,
MyUserControl.TextProperty);
// If there is a validation error, then give it to the control bindings.
if (textBindingExpression != null && textBindingExpression.ValidationError != null) {
Validation.MarkInvalid(this.MyTextBox.GetBindingExpression(TextBox.TextProperty),
textBindingExpression.ValidationError);
Validation.MarkInvalid(this.MyTextBlock.GetBindingExpression(TextBlock.TextProperty),
textBindingExpression.ValidationError);
}
答案 1 :(得分:0)
这是我想出的解决方案,它允许具有依赖项属性的UserControl
从绑定到的视图模型“包装”验证。
首先,我按照this post中的模式创建所需的DataContext
层次结构。
XAML:
<!-- Some boilerplate attributes snipped -->
<UserControl x:Class="App.Views.UserControls.MyUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:App.Views.UserControls"
Validation.ErrorTemplate="{x:Null}">
<Grid x:Name="LayoutRoot"
DataContext="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=local:MyUserControl}}">
<TextBox Grid.Row="0" Grid.Column="0" Text="{Binding Text, UpdateSourceTrigger=PropertyChanged}" />
</Grid>
</UserControl>
这样,控件的DataContext是从父级继承的视图模型,在此模型中完成验证。然后,将其在控件的根子元素上重写为控件本身,从而允许在背后的代码中绑定到Dependency Properties。另外请注意,控件的ErrorTemplate
已被清空-这是为了防止出现默认的红色框。
现在可以很容易地从控件的代码后面访问继承的视图模型:
private INotifyDataErrorInfo ViewModelErrors => DataContext as INotifyDataErrorInfo;
现在在用户控件中实现INotifyDataErrorInfo
并包装视图模型:
public bool HasErrors => ViewModelErrors.HasErrors;
public IEnumerable GetErrors(string propertyName)
{
return ViewModelErrors.GetErrors(propertyName);
}
当您需要知道控件依赖项属性绑定到哪个模型属性时,就会遇到棘手的问题。如果您可以按名称查找已注册的依赖项属性并查询绑定,则这样做会更容易,但是我找不到一种无需反思的方法。因此,我使用了依赖项属性的PropertyChangedCallback
来手动构建映射列表。回调的参数包含所有必需的信息。
// Maps User Control properties to their View Model properties.
private readonly Dictionary<string, string> _propertyMappings = new Dictionary<string, string>();
// This should work for any property.
private static void OnDependencyPropertyValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var userControl = (MyUserControl)d;
var dependencyPropertyName = e.Property.Name;
// Create this mapping one time only.
if (!userControl._propertyMappings.ContainsKey(dependencyPropertyName))
{
// Get the binding from the property to the view model.
var binding = BindingOperations.GetBindingExpression(d, e.Property);
if (binding != null)
{
// Create a mapping of user control property to view model property.
// This will let us look up the error from the view model.
var boundPropertyName = binding.ResolvedSourcePropertyName;
userControl._propertyMappings[dependencyPropertyName] = boundPropertyName;
}
}
}
然后将其合并到GetErrors
中:
public IEnumerable GetErrors(string propertyName)
{
if (ViewModelErrors != null && _propertyMappings.ContainsKey(propertyName))
{
return ViewModelErrors.GetErrors(_propertyMappings[propertyName]);
}
else
{
return Enumerable.Empty<string>();
}
}
那应该足够了。验证在模型中完成,并将结果下拉至用户控件。无需重复。