带参数的ValidationRule

时间:2015-02-21 12:16:17

标签: c# wpf validationrules

我正在使用C#和WPF开发一个应用程序,我有自己的滑块自定义控件。和同一窗口上的文本框。我的滑块的所有属性都是DependencyProperty

我使用文本框来更改滑块的属性。我想在文本框上使用ValidationRule。我编写了自己的ValidationRule(派生自ValidationRule类)。我想将一些参数传递给ValidationRule。这是代码:

TextBox:

<TextBox HorizontalAlignment="Left" Height="24" Margin="10,169,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="40" Style="{DynamicResource archiveSearchTextBox}" MaxLength="3" HorizontalContentAlignment="Center" TabIndex="2">
        <TextBox.Text>
            <Binding UpdateSourceTrigger="PropertyChanged" Mode="TwoWay" ElementName="gammaSlider" Path="LeftThumbValue" NotifyOnValidationError="True" ValidatesOnExceptions="True" ValidatesOnDataErrors="True">
                <Binding.ValidationRules>
                    <ExceptionValidationRule/>
                    <local:ZeroTo255MinMax>
                        <local:ZeroTo255MinMax.Parameters>
                            <local:ValidationParameters NumberCombineTo="{Binding ElementName=gammaSlider, Path=RightThumbValue}" ValTypeFor0to255="ShouldBeSmaller"/>
                        </local:ZeroTo255MinMax.Parameters>
                    </local:ZeroTo255MinMax>
                </Binding.ValidationRules>
            </Binding>
        </TextBox.Text>
    </TextBox>

ZeroTo255MinMax ValidationRule:

 public class ZeroTo255MinMax : ValidationRule
{
    private ValidationParameters _parameters = new ValidationParameters();
    public ValidationParameters Parameters
    {
        get { return _parameters; }
        set { _parameters = value; }
    }

    public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
    {
        string numberStr = value as string;
        int val;

        if (int.TryParse(numberStr, out val))
        {
            if (val < 0 || val > 255)
                return new ValidationResult(false, "");
            else if (Parameters.ValTypeFor0to255 == ValidationParameters.ValTypes.ShouldBeBigger)
            {
                if (val <= Parameters.NumberCombineTo || val - Parameters.NumberCombineTo < 2)
                    return new ValidationResult(false, "");
            }
            else if (Parameters.ValTypeFor0to255 == ValidationParameters.ValTypes.ShouldBeSmaller)
            {
                if (val >= Parameters.NumberCombineTo || Parameters.NumberCombineTo - val < 2)
                    return new ValidationResult(false, "");
            }
            return new ValidationResult(true, "");
        }
        else
            return new ValidationResult(false, "");
    }
}

public class ValidationParameters : DependencyObject
{
    public enum ValTypes { ShouldBeSmaller, ShouldBeBigger };
    public static readonly DependencyProperty NumberCombineToProperty = DependencyProperty.Register("NumberCombineTo", typeof(int), typeof(ValidationParameters), new PropertyMetadata(0, new PropertyChangedCallback(OnNumberCombineToChanged)));
    public static readonly DependencyProperty ValTypeFor0to255Property = DependencyProperty.Register("ValTypeFor0to255", typeof(ValTypes), typeof(ValidationParameters), new PropertyMetadata(ValTypes.ShouldBeBigger));

    private static void OnNumberCombineToChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { d.CoerceValue(NumberCombineToProperty); }

    public int NumberCombineTo
    {
        get { return (int)GetValue(NumberCombineToProperty); }
        set { SetValue(NumberCombineToProperty, value); }
    }

    public ValTypes ValTypeFor0to255
    {
        get { return (ValTypes)GetValue(ValTypeFor0to255Property); }
        set { SetValue(ValTypeFor0to255Property, value); }
    }
}

我的猜测是,一切都很好,但问题是,NumberCombineTo参数设置为default (0) ,即使我更改了gammaSlider的RightThumbValue属性。 我需要在更改NumberCombineTo时更新RightThumbValue属性。

1 个答案:

答案 0 :(得分:0)

我根据您在此提供的代码段编写了一个简单的完整代码示例,我相信我能够重现您遇到的基本问题。

如果您在调试器中运行代码,并查看“输出”窗口,您可能会看到一条消息,其中包含部分内容:

  

无法为目标元素

找到管理FrameworkElement或FrameworkContentElement

WPF绑定系统需要其中一个元素才能查找源元素的名称(即ElementName属性的对象)。但是在这种情况下,您试图绑定一个对象的属性,该对象本身既不是与框架相关的元素,也不是与WPF可见的方式相关的元素。因此在尝试配置绑定时失败。

我看过几篇不同的文章,建议通过“代理对象”来解决这个问题。这通常遵循声明绑定到包含对象的DataContext的资源,然后将该对象用作绑定的Source的模式。但是让我正确设置这个设置似乎很棘手,这取决于能否设置一个特定的DataContext对象,其中包含您实际想要绑定的属性。随着框架元素较少的绑定数量的增加,你可以采用这种技术的程度有限。

例如:
How to bind to data when the DataContext is not inherited
Attaching a Virtual Branch to the Logical Tree in WPF
甚至在这里,WPF Error: Cannot find govering FrameworkElement for target element

相反,在我看来,这是代码隐藏更好的情况之一。显式设置绑定只需几行代码,它完全避免了WPF是否实际上可以找到要绑定的对象的问题。

我结束了一个看起来像这样的XAML示例:

<Window x:Class="TestSO28645688ValidationRuleParameter.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:TestSO28645688ValidationRuleParameter"
        Title="MainWindow" Height="350" Width="525">
  <Window.Resources>
    <local:ValidationParameters x:Key="validationParams1"
                                    ValTypeFor0to255="ShouldBeSmaller"/>
  </Window.Resources>
  <StackPanel>
    <Slider x:Name="slider1" Value=".25" />
    <Slider x:Name="slider2" Value=".5"/>
    <TextBlock Text="{Binding ElementName=slider1, Path=Value,
               StringFormat=slider1.Value: {0}}" />
    <TextBlock Text="{Binding ElementName=slider2, Path=Value,
               StringFormat=slider2.Value: {0}}" />
    <TextBlock Text="{Binding Source={StaticResource validationParams1},
                              Path=NumberCombineTo,
                              StringFormat=validationParams1.NumberCombineTo: {0}}" />
    <TextBox x:Name="textBox1" HorizontalAlignment="Left" VerticalAlignment="Top"
             Height="24" Width="400"
             Margin="5" TextWrapping="Wrap"
             MaxLength="3" HorizontalContentAlignment="Center" TabIndex="2">
      <TextBox.Text>
        <Binding UpdateSourceTrigger="PropertyChanged" Mode="TwoWay"
                 ElementName="slider1" Path="Value" NotifyOnValidationError="True"
                 ValidatesOnExceptions="True" ValidatesOnDataErrors="True">
          <Binding.ValidationRules>
            <ExceptionValidationRule/>
            <local:ZeroTo255MinMax Parameters="{StaticResource validationParams1}"/>
          </Binding.ValidationRules>
        </Binding>
      </TextBox.Text>
    </TextBox>
  </StackPanel>
</Window>

这里与您的代码不同的主要是我将ValidationParameters对象放在窗口的资源中。这使我可以轻松地从代码隐藏中引用它来绑定那里。

(当然,代码的其余部分也不同,但没有任何有意义的方式。我觉得在基本示例中使用两个单独的Slider控件更简单,因为它内置于WPF中,并且在窗口中提供TextBlock个元素,以便更容易看到正在发生的事情。

代码隐藏看起来像这样:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

        Binding binding = new Binding();

        binding.Source = slider2;
        binding.Path = new PropertyPath(Slider.ValueProperty);

        ValidationParameters validationParams = (ValidationParameters)Resources["validationParams1"];

        BindingOperations.SetBinding(validationParams, ValidationParameters.NumberCombineToProperty, binding);
    }
}

换句话说,它只是创建一个新的Binding对象,分配源对象和属性,检索我们想要绑定该对象+属性的ValidationParameters对象,然后设置绑定在ValidationParameters对象的NumberCombineTo属性上。

执行此操作时,NumberCombineTo属性在slider2.Value值更改时正确更新,并且在Validate()对象的ValidationRule方法为调用。