如何将其他数据传递到ValidationRule?

时间:2013-11-05 01:00:16

标签: c# wpf

我有一个如此创建的验证规则:

public class TagFitsConstraintRule : ValidationRule
{
    public TagDependencyObject SelectedTag { get; set; }

    public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
    {
        Tag tag = SelectedTag.Tag;

        if (tag != null)
        {
            if (tag.TagConstraintPattern == null)
            {
                return ValidationResult.ValidResult;
            }
            else
            {
                // Perform additional validation for the tag
            }
        }
        else
        {
            return new ValidationResult(false, "No tag selected.");
        }
    }
}

Dependency对象定义为:

public class TagDependencyObject : DependencyObject
{
    public static readonly DependencyProperty TagProperty = DependencyProperty.Register("Tag", typeof(Tag), typeof(TagDependencyObject), new UIPropertyMetadata(null));

    public Tag Tag
    {
        get { return (Tag)GetValue(TagProperty); }
        set { SetValue(TagProperty, value); }
    }
}

我在XAML中使用它:

<Window
...>
<Window.Resources>
    <d:TagDependencyObject x:Key="TagDependencyObject" Tag="{Binding CurrentlySelectedTag}"/>
</Window.Resources>
...
<TextBox ... >
    <TextBox.Text>
        <Binding Path="CurrentlySelectedTag" Converter="{StaticResource TagDataConverter}" UpdateSourceTrigger="PropertyChanged">
            <Binding.ValidationRules>
                <c:TagFitsConstraintRule ValidatesOnTargetUpdated="True" SelectedTag="{StaticResource TagDependencyObject}"/>
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>
...

无论出于什么原因,我似乎无法包裹我的大脑,TagDependencyObject上的Tag属性不会被设置为null。我试过操作绑定模式,UpdateSourceTrigger,似乎没什么用。我知道我的ViewModel上的属性是填充的,因为窗口上的其他组件正在适当地操作。我还验证了在运行ValidationRule之前已设置ViewModel属性。我做错了什么?

我故意以我的方式提出这个问题,因为或许有一种更好的方式来做我想做的事情,我不知道,所以我愿意接受替代方案。我的最终目标是在上面的XAML中列出的TextBox上提供验证,但我需要的不仅仅是TextBox中的文本来进行实际验证(只有Tag类的几个属性)。

我基本上遵循以下网站上描述的内容。

Site 1 Site 2

1 个答案:

答案 0 :(得分:0)

我能够使用转换器完成此操作。我使用了一个IMultiValueConverter,因此我可以将我需要的每个属性传递给转换器。

转换器:

public class MyCoolConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        // Logic
    }

    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

结合:

<TextBox Text="{Binding CurrentlySelectedTag.TagData, UpdateSourceTrigger=PropertyChanged}">
    <TextBox.Style>
        <MultiBinding Converter="{StaticResource TagDataValidationStyleSelector}" UpdateSourceTrigger="PropertyChanged">
            <Binding Path="CurrentlySelectedTag"/>
            <Binding Path="CurrentlySelectedTag.TagData" UpdateSourceTrigger="PropertyChanged"/>
        </MultiBinding>
    </TextBox.Style>
</TextBox>

在文档中似乎没有很好地解释验证部分......通过设置ValidateOnDataErrors = true,您可以在转换器中抛出异常,从而在输入中获得类似的红框轮廓视觉错误在您的验证模板上,这似乎是默认模板。