- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果 Datagrid/DataGridCells 中有 ValidationErrors,我在获取信息时会遇到一些麻烦。
我要做的是通过 禁用按钮命令 (CanExecute) 基于是否存在验证错误。因此,我将 DataGrid 的 Validation.HasError 绑定(bind)到按钮上的 CommandParameter。
验证通过 实现IDataErrorInfo 在 查看型号 并且工作得很好。任何包含错误值的 DataGridCell 都会获得一个红色边框和一个描述错误的工具提示。
我只是无法开始工作是绑定(bind)那个按钮的命令参数 到 DataGrid 上的 Validation.HasError。如果我调试这个问题,Validation.HasError 总是假的。为什么?我该如何解决?
我几乎尝试了在这里和网络上其他地方找到的所有“解决方案”。到目前为止没有任何效果。
我的 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>
<Button x:Uid="Button_1"
Content=" + "
Command="{Binding AddItemCommand}"
CommandParameter="{Binding (Validation.HasError), ElementName=SomeDataGrid}" />
最佳答案
好的,我终于解决了!以下方法来自 here确实有效,但只有 之后 包含我的 Datagrid 的窗口是 满载 (例如在 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;
}
关于WPF DataGrid Validation.HasError 始终为假 (MVVM),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17951045/
我注意到一些 PHP 框架只使用小写字母 true/false 而其他框架则使用大写字母。 这有什么区别吗?我个人更喜欢小写字母。 最佳答案 没什么区别,有些人认为 FALSE 是常量,因此使用旧的尖
在我看来,以下两种映射方式实际上没有区别。以下是基于 @MapsId javadoc 的示例: // parent entity has simple primary key @Entity publ
我想知道是否有人知道编译器如何解释以下代码: #include using namespace std; int main() { cout << (true && true || false &
我想知道为什么alert(new Boolean(false))打印 false 而不是打印对象,因为 new Boolean 应该返回对象。如果我使用 console.log(new Boolean
即使在 verify=False 时,Python 请求也会给我一个 ssl 握手失败(我知道不使用 SSL 是不可取的)。对于其他具有有效证书的站点,请求按预期工作。我正在使用2.7。 from l
TDPL 描述了 assert(false); 语句的行为。此类断言不会从发布版本中删除(与所有其他断言一样),并且实际上会立即停止程序。问题是为什么?为什么会有如此令人困惑的行为?他们可能会添加 h
如何确定文档是否存在于 Meteor 的集合中? 编辑:新代码。 mongodb 有一个 ProductName 的文档:Apples 输入产品是“苹果” var exists = Products.
我想在 R 中做一些相当复杂的事情,但我不确定从哪里开始。 我有一个看起来像这样的数据框: main_val sub_val bit_one bit_two one a 1
我正在尝试编写一个函数 long(S1,S2) 如果 S1 比 S2 长,则该函数应该为真,否则为假。到目前为止,我所拥有的是以下内容: longer(A,nil). longer(nil,B) :-
我想知道我在这里缺少什么我有一个代码可以检查图像是否基于 Canvas 是透明的。 function Trasparent(url, npc, clb) { var img = new Ima
我想在按下按钮时使其他类框架设置可见(false)。 有一个名为 DisplayScore 的类,该类获取 getContentPane().add(new ScoreInfo());来自 Score
我正在使用 TableLayout 和 TableRow 创建 6/6 网格按钮。 private Button myButton; private static final int
这个问题没有实际用途!我之所以问这个只是因为我很好奇! 在C++中,有一种方法可以通过在某处编写#define true false来将true伪造为false,然后在代码中到处的true都将被视为f
我不久前学习 java,所以也许我有一个愚蠢的问题。 我有一张表,我在其中存储了一些信息。我想在此表中检查一些信息的可用性(这将只有一行),如果是 - 从这一行中获取特定列中的信息,如果没有 - 做另
这是一个 JavaScript 问题... 我正在尝试返回完全不区分大小写的匹配项。例如,如果我在输入框中输入 "yo",我希望它返回 true,这在我当前的方法中是这样做的,但它也会返回 true
我认为,我在 JS 中写了一个直接的 if 语句,但它运行不正确。 function printLetter(LetterId) { var studentflag = $("#IsStude
我如何使用 Javascript 执行以下操作? var object function() { return { object: Return true if object
我试图让导航栏在向上滚动时向下滑动,并在单击#menu-bar 时保持固定。但是当我再次单击同一个按钮时,我不知道如何在自动隐藏时将值改回 false,就在我有两个按钮的时候。非常感谢任何帮助! $(
下面的代码 #include using namespace std; int main(){ char greeting[50] = "goodmorning everyone";
我正在使用数据源将数据填充到我的数据 GridView 中。但是,我正在尝试找到一种方法让用户能够隐藏他不想看到的列。 我可以在程序运行之前隐藏和显示列: [Browsable(false)] pub
我是一名优秀的程序员,十分优秀!