必须将值提交给对象,因为 IDataErrorInfo 仅使用 propertyName 来检索特定属性的错误。无法将建议值(应该验证)传递给它,因此只能使用提交的属性值。
我认为这是一个很好的方法,因为视图模型和视图始终是同步的,即使属性具有无效值并且视图模型中保留了无效值状态,因此基于该信息的附加逻辑可以包含在视图模型中而不是视图中.
如果您想将提议的值验证传播到视图模型,您将不得不使用自己的自定义界面和验证规则来完成。
以下是我的实现方式:
IProposedValueErrorInfo.cs
using System.Globalization;
namespace WpfApplication
{
public interface IProposedValueErrorInfo
{
object GetError(string propertyName, object value, CultureInfo cultureInfo);
}
}
ProposedValueErrorValidationRule.cs
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
namespace WpfApplication
{
internal sealed class ProposedValueErrorValidationRule : ValidationRule
{
private readonly DependencyObject targetObject;
private readonly DependencyProperty targetProperty;
public ProposedValueErrorValidationRule(DependencyObject targetObject, DependencyProperty targetProperty)
: base(ValidationStep.RawProposedValue, true)
{
if (targetObject == null)
throw new ArgumentNullException("targetObject");
if (targetProperty == null)
throw new ArgumentNullException("targetProperty");
this.targetObject = targetObject;
this.targetProperty = targetProperty;
}
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
var expression = BindingOperations.GetBindingExpression(this.targetObject, this.targetProperty);
if (expression != null)
{
var sourceItem = expression.DataItem as IProposedValueErrorInfo;
if (sourceItem != null)
{
var propertyName = expression.ParentBinding.Path != null ? expression.ParentBinding.Path.Path : null;
if (propertyName != null)
{
var error = sourceItem.GetError(propertyName, value, cultureInfo);
if (error != null)
return new ValidationResult(false, error);
}
}
}
return ValidationResult.ValidResult;
}
}
}
ProposedValueValidationBindingExtension.cs
using System;
using System.Windows;
using System.Windows.Data;
using System.Windows.Markup;
namespace WpfApplication
{
public sealed class ProposedValueValidationBindingExtension : MarkupExtension
{
private readonly Binding binding;
public ProposedValueValidationBindingExtension(Binding binding)
{
if (binding == null)
throw new ArgumentNullException("binding");
this.binding = binding;
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
var provideValueTarget = serviceProvider != null ? serviceProvider.GetService(typeof(IProvideValueTarget)) as IProvideValueTarget : null;
if (provideValueTarget != null)
this.binding.ValidationRules.Add(new ProposedValueErrorValidationRule(provideValueTarget.TargetObject as DependencyObject, provideValueTarget.TargetProperty as DependencyProperty));
return this.binding.ProvideValue(serviceProvider);
}
}
}
个人.cs
using System.Globalization;
namespace WpfApplication
{
public class Person : IProposedValueErrorInfo
{
public int Age { get; set; }
public string Surname { get; set; }
#region IProposedValueErrorInfo Members
object IProposedValueErrorInfo.GetError(string propertyName, object value, CultureInfo cultureInfo)
{
switch (propertyName)
{
case "Age":
int dummy;
return value is int || int.TryParse(value as string, NumberStyles.Integer, cultureInfo, out dummy) ? null : "Age must be a number.";
}
return null;
}
#endregion
}
}
主窗口.xaml
<Window x:Class="WpfApplication.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication"
Title="MainWindow" Height="350" Width="525">
<Window.DataContext>
<local:Person Age="16"/>
</Window.DataContext>
<StackPanel>
<TextBox Text="{local:ProposedValueValidationBinding {Binding Age}}" ToolTip="{Binding Path='(Validation.Errors)/ErrorContent', RelativeSource={RelativeSource Self}}"/>
<TextBox Text="{local:ProposedValueValidationBinding {Binding Age}}" ToolTip="{Binding Path='(Validation.Errors)/ErrorContent', RelativeSource={RelativeSource Self}}"/>
</StackPanel>
</Window>