我刚刚根据 Rachel Lim 的博客实现了我的业务逻辑验证。一切都运行良好,直到我决定在绑定到IsValid属性的视图中放置一个触发器,如下所示:
<ListBox ItemsSource="{Binding EdgedBoards}" SelectedItem="{Binding SelEdgedBoard, Mode=TwoWay}" DisplayMemberPath="Name">
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}" BasedOn="{StaticResource {x:Type ListBoxItem}}">
<Setter Property="Focusable" Value="True" />
<Style.Triggers>
<DataTrigger Binding="{Binding Path=IsValid}" Value="False">
<Setter Property="Focusable" Value="False" />
</DataTrigger>
</Style.Triggers>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
问题是,当绑定项目有错误(SelEdgedBoard.IsValid == false)时,触发器不会被通知重新评估,并且项目将其可聚焦属性保持为真。
我已经尝试在 GetValidationError() 返回其值之前放置 NotifyPropertyChanged("IsValid") ,但是这样我得到了一个 stackoverflow 异常:
#region IsValid Property
public bool IsValid
{
get
{
return string.IsNullOrWhiteSpace(GetValidationError());
}
}
public string GetValidationError()
{
string error = null;
if (ValidatedProperties != null)
{
foreach (string s in ValidatedProperties)
{
error = GetValidationError(s);
if (!string.IsNullOrWhiteSpace(error))
{
break;
}
}
}
NotifyPropertyChanged("IsValid");
return error;
}
#endregion