如果在Datagrid / DataGridCells中有ValidationErrors,我在获取信息时遇到一些麻烦。
我要做的是根据是否存在验证错误,通过命令(CanExecute)禁用按钮。因此,我将DataGrid的Validation.HasError绑定到Button上的CommandParameter。
验证是通过 ViewModel 中的 IDataErrorInfo 实现的,并且运行正常。任何包含错误值的DataGridCell都会获得一个红色边框和一个描述错误的工具提示。
我无法工作的是将Button的 CommandParameter 绑定到DataGrid上的Validation.HasError。如果我调试此问题,Validation.HasError始终为false。为什么?我该如何解决?
我几乎尝试了我在这里和网上其他地方找到的每一个“解决方案”。到目前为止没有任何工作。
我的DataGrid XAML:
<DataGrid x:Uid="DataGrid_1"
Name="SomeDataGrid"
Grid.Column="0"
Grid.Row="1"
Grid.RowSpan="2"
ItemsSource="{Binding SomeItems}"
SelectedItem="{Binding SomeSelectedItem, Mode=TwoWay}"
CanUserSortColumns="False"
CanUserAddRows="False"
CanUserDeleteRows="False"
IsReadOnly="False"
IsSynchronizedWithCurrentItem="True"
IsTabStop="True"
IsTextSearchEnabled="True"
>
<DataGrid.Resources>
<SolidColorBrush x:Uid="SolidColorBrush_1"
x:Key="{x:Static SystemColors.ControlBrushKey}"
Color="{x:Static SystemColors.HighlightColor}" />
</DataGrid.Resources>
<DataGrid.Columns>
<DataGridTemplateColumn x:Uid="Comlumn1"
x:Name="Comlumn1"
Header="SomeHeader"
Width="auto">
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate x:Uid="DataTemplate_1">
<ComboBox x:Uid="ComboBox_7"
ItemsSource="{Binding DataContext.Attributes,Source={StaticResource ProxyElement}}"
SelectedItem="{Binding Attribute, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}"
DisplayMemberPath="DESCRIPTION"
IsEditable="False"
IsTextSearchEnabled="False"
Margin="0"
Padding="0" />
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate x:Uid="DataTemplate_2">
<TextBlock x:Uid="TextBlock_15"
Text="{Binding Attribute, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}"
ToolTip="{Binding (Validation.Errors)[0].ErrorContent, RelativeSource={x:Static RelativeSource.Self}}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTextColumn x:Uid="DataGridTextColumn_2"
Header="Value"
Width="auto"
Binding="{Binding VALUE, ValidatesOnDataErrors=True}">
<DataGridTextColumn.ElementStyle>
<Style x:Uid="Style_4"
TargetType="{x:Type TextBlock}">
<Setter x:Uid="Setter_4"
Property="DataGridCell.ToolTip"
Value="{Binding (Validation.Errors)[0].ErrorContent, RelativeSource={x:Static RelativeSource.Self}}" />
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
<DataGridTextColumn x:Uid="DataGridTextColumn_3"
Header="Unit"
Width="auto"
Binding="{Binding UNIT, Mode=OneWay, UpdateSourceTrigger=PropertyChanged, NotifyOnSourceUpdated=True}"
IsReadOnly="True" />
<DataGridTextColumn x:Uid="DataGridTextColumn_4"
Header="Remark"
Width="auto"
Binding="{Binding REMARK}" />
</DataGrid.Columns>
</DataGrid>
我要绑定到DataGrid Validation.Errors的按钮:
<Button x:Uid="Button_1"
Content=" + "
Command="{Binding AddItemCommand}"
CommandParameter="{Binding (Validation.HasError), ElementName=SomeDataGrid}" />
答案 0 :(得分:7)
好的,我终于解决了!来自here的以下方法确实有效,但只有 后,包含我的数据网格的窗口完全加载(例如,在Window / Usercontrol Loaded EventHandler中):
public bool IsValid(DependencyObject parent)
{
if (Validation.GetHasError(parent))
return false;
// Validate all the bindings on the children
for (int i = 0; i != VisualTreeHelper.GetChildrenCount(parent); ++i)
{
DependencyObject child = VisualTreeHelper.GetChild(parent, i);
if (!IsValid(child)) { return false; }
}
return true;
}