0

我是 WPF 新手并且有一个(在我看来)奇怪的问题:我想将本地属性(名称:XmlText)绑定到 TextBox.Text 属性并使用如下验证规则验证值:

<TextBox Height="23" Width="301" Margin="78,14,0,0" Name="tbXMLFile" HorizontalAlignment="Left" VerticalAlignment="Top" TextChanged="tbXMLFile_TextChanged">
    <TextBox.Style>
        <Style TargetType="{x:Type TextBox}">
            <Style.Triggers>
                <Trigger Property="Validation.HasError" Value="true">
                    <Setter Property="ToolTip"
                            Value="{Binding RelativeSource={RelativeSource Self},
                                            Path=(Validation.Errors),
                                            Converter={StaticResource ErrorsToStringConverter}}"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
    <TextBox.Text>
        <Binding Path="XmlText" UpdateSourceTrigger="PropertyChanged">
            <Binding.ValidationRules>
                <local:RegexValidationRule Dateiendung="xml"></local:RegexValidationRule>
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>

每次我的属性 XmlText 获得一个新值时,验证不会做任何事情,但如果我在我的 TextBox 中手动输入文本,它会验证。

如果我删除 TextChanged-Event 或将以下代码添加到事件中,验证将不再起作用:

XmlText = ((TextBox)sender).Text;

有人可以解释为什么程序会这样吗?

4

1 回答 1

0

真正的问题是 ValidationRules:它们不是为做你所想的而设计的!看看这篇文章,了解更多细节:http: //msdn.microsoft.com/en-us/library/system.windows.controls.validationrule.aspx

(当您使用 WPF 数据绑定模型时,您可以将 ValidationRules 与您的绑定对象相关联。要创建自定义规则,请创建此类的子类并实现 Validate 方法。或者,使用内置的 ExceptionValidationRule,它会捕获以下异常在源更新期间抛出,或 DataErrorValidationRule,它检查源对象的 IDataErrorInfo 实现引发的错误。绑定引擎在每次传输输入值(即绑定目标属性值)时检查与绑定关联的每个 ValidationRule , 绑定源属性。)

如果您System.ComponentModel.IDataErrorInfo在绑定对象的类中实现接口,您将捕获任何验证(分配绑定属性以及来自 UI)。

它们只是两种方法,我向您展示了一个带有您的属性的示例:

public class TestObject : INotifyPropertyChanged, IDataErrorInfo
{
    private string _xmlText;

    public string XmlText
    {
        get
        {
            return _xmlText;
        }
        set
        {
            if (value != _xmlText)
            {
                _xmlText = value;
                NotifyPropertyChanged("XmlText");
            }
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected virtual void NotifyPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (null != handler)
            handler(this, new PropertyChangedEventArgs(propertyName));
    }


    public string Error
    {
        get { throw new NotImplementedException(); }
    }

    public string this[string columnName]
    {
        get
        {
            string result = null;
            if (columnName == "XmlText")
            {
                if (XmlText.Length > 5)
                    result = "Too much long!";
            }
            return result;
        }
    }
}

现在您的绑定验证应该可以完美运行:

<TextBox.Text>
    <Binding Path="XmlText"
             UpdateSourceTrigger="PropertyChanged"
             ValidatesOnDataErrors="True"
             Mode="TwoWay" />
    </Binding>
</TextBox.Text>
于 2012-08-24T07:41:47.920 回答