9

我是 WPF 的新手。在我的 UserControl 中,我有 8 个标签及其各自的 8 个文本框,如下所示:

1.Label : abc   2.Label : def
  TextBox1 :        TextBox2 :

3.Label :xyz    4. Label : ghi
  Textbox3 :        TextBox4 :

这些文本框文本属性中的每一个都应包含以其各自标签名称结尾的文本,例如TextBox1.text应该是xxxx.abcTextBox2.text应该是 xxxx.def 等等。如果不是,文本框应该有红色边框。

希望我对细节很清楚。所以我需要ValidationRule为每个文本框写不同的内容吗?

你有输入吗??

4

1 回答 1

31

为什么不使用一个ValidationRule实现,其属性公开字段应以什么结尾,例如:

public class EndsWithValidationRule : ValidationRule
{
    public string MustEndWith { get; set; }

    public override ValidationResult Validate(object value, CultureInfo cultureInfo)
    {
        var str = value as string;
        if(str == null)
        {
            return new ValidationResult(false, "Please enter some text");
        }
        if(!str.EndsWith(MustEndWith))
        {
            return new ValidationResult(false, String.Format("Text must end with '{0}'", MustEndWith));
        }
        return new ValidationResult(true, null);

    }
}

然后你可以像这样使用它:

<TextBox x:Name="TextBox1">
    <TextBox.Text>
        <Binding Path="BoundProperty1" UpdateSourceTrigger="PropertyChanged">
            <Binding.ValidationRules>
                <local:EndsWithValidationRule MustEndWith=".def" />
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>

<TextBox x:Name="TextBox2">
    <TextBox.Text>
        <Binding Path="BoundProperty2" UpdateSourceTrigger="PropertyChanged">
            <Binding.ValidationRules>
                <local:EndsWithValidationRule MustEndWith=".abc" />
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>
于 2013-01-23T13:52:06.270 回答