Catel在视图中显示字段验证(在视图模型或模型中完成)的结果时遇到问题:如果字段中有错误,则相应的文本框应标记为红色框。但由于某种原因,我无法做到这一点。
这是一个非常简化的测试场景,其中视图模型具有2个整数字段,并且验证规则要求两者都具有值<100:
public class MainViewModel : ViewModelBase
{
public MainViewModel() : base()
{ }
protected override async Task InitializeAsync()
{
await base.InitializeAsync();
}
protected override async Task CloseAsync()
{
await base.CloseAsync();
}
public override string Title { get { return "Test"; } }
public int Value1
{
get { return GetValue<int>(Value1Property); }
set { SetValue(Value1Property, value); }
}
public static readonly PropertyData Value1Property = RegisterProperty(nameof(Value1), typeof(int), 42 );
public int Value2
{
get { return GetValue<int>(Value2Property); }
set { SetValue(Value2Property, value); }
}
public static readonly PropertyData Value2Property = RegisterProperty(nameof(Value2), typeof(int), 99);
protected override void ValidateFields(List<IFieldValidationResult> validationResults)
{
if (Value1 >= 100)
{
validationResults.Add(FieldValidationResult.CreateError(Value1Property, "Value1 must be < 100" ));
}
if (Value2 >= 100)
{
validationResults.Add(FieldValidationResult.CreateError(Value1Property, "Value2 must be < 100"));
}
}
protected override void ValidateBusinessRules(List<IBusinessRuleValidationResult> validationResults)
{ }
}
}
请注意:在我的真实项目中,字段和验证将在一个模型中,但出于测试原因,我将其简化为一个视图和一个视图模型。
这个简单的视图将视图模型作为数据上下文:
<catel:Window x:Class="WPF_Catel_Validation.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:catel="http://schemas.catelproject.com">
<StackPanel Orientation="Vertical" HorizontalAlignment="Left">
<TextBox Text="{Binding Value1, NotifyOnValidationError=True, ValidatesOnDataErrors=True}" Width="100" />
<TextBox Text="{Binding Value2, NotifyOnValidationError=True, ValidatesOnDataErrors=True}" Width="100" />
</StackPanel>
</catel:Window>
视图和视图模型之间的连接是有效的。当在文本框中输入非数字文本时,该视图还会显示错误。方法ValidateFields()的视图模型也会识别任何错误,但视图不会在文本框周围用红色框显示这些验证错误。
我已经用Catel 5.8.0和进行了测试。NET 4.7.2。我想知道Catel类ViewModelBase如何实现INotifyDataErrorInfo,但事件ErrorsChanged在该类中不可见。但总的来说,我不知道我的视图模型、视图、Catel或其他方面是否有问题?我也没有找到任何关于Catel的最新文档。非常感谢您的任何建议-谢谢!
如果要立即显示,可能需要将DeferValidationUntilFirstSave设置为false。