在 DataGridTextColumn 上设置文本
我正在使用 DataTrigger 将空单元格替换为“-”文本。我的代码:
<DataGridTextColumn Header="Time taken" Binding="{Binding Path=finish}" Width="Auto" x:Name="x">
<DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=finish}" Value="{x:Null}">
<Setter Property="TextBlock.Text" Value="-" />
</DataTrigger>
</Style.Triggers>
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
但我找不到正在设置的文本。我尝试更改 TextBlock 的背景及其工作方式。为什么我无法设置 Text 属性?
I am using a DataTrigger to replace empty cells with '-' text. My code:
<DataGridTextColumn Header="Time taken" Binding="{Binding Path=finish}" Width="Auto" x:Name="x">
<DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=finish}" Value="{x:Null}">
<Setter Property="TextBlock.Text" Value="-" />
</DataTrigger>
</Style.Triggers>
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
But I couldn't find the text being set. I tried changing the background of the TextBlock and its working. Why cant I set the Text property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
列中的 Binding 可能会覆盖
Setter
。但您不需要数据触发器来执行此操作。因为绑定中有一个属性,您可以为此类场景设置。
TargetNullValue 允许您在绑定路径为空的情况下设置一个值。
Binding="{Binding Path=finish, TargetNullValue=无论你想要什么}"
取自:
最简单的方法是什么使用 WPF 数据绑定将 NULL 值显示为“NULL”?
The Binding in the column might be overriding the
Setter
.But you don't need a data trigger to do this. As there is a property in the binding that you can set for these kinds of scenarios.
TargetNullValue allows you to set a value in the case that the bindings path is null.
Binding="{Binding Path=finish, TargetNullValue=Whatever you want}"
Taken From:
What's the simplest way to display NULL values as "NULL" with WPF Data Binding?
命名空间
xmlns:sys="clr-命名空间:系统;程序集=mscorlib"
Namespace
xmlns:sys="clr-namespace:System;assembly=mscorlib"