如何验证UserControl上的依赖项属性?

时间:2012-12-05 14:55:43

标签: c# wpf validation mvvm

我的视图模型实现IDataErrorInfo并包含经过验证的Message属性。

我创建了一个UserControlText DependencyProperty绑定到Message。我的UserControl上有几个与Text绑定的控件(因此显示Message)。

如何在UserControl中的控件上显示未直接绑定到Message的控件上的验证错误?

2 个答案:

答案 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>();
    }
}

那应该足够了。验证在模型中完成,并将结果下拉至用户控件。无需重复。