0

我有一个这样创建的验证规则:

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 上的属性已填充为窗口上的其他组件正在适当地运行。我还验证了 ViewModel 属性是在运行 ValidationRule 之前设置的。我究竟做错了什么?

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

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

站点 1 站点 2

4

1 回答 1

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 从转换器抛出异常,您将在输入中获得类似的红框轮廓视觉错误模板,这似乎是默认值。

于 2013-11-12T16:06:07.093 回答