我想编辑一个 xamdatagrid 所以它看起来像这样
|更新 |
|通过 | 失败 |
| 1 | 0 |
| 0 | 1 |
(我的间距不好,但你明白了)我想在 xamdatagrid 上设置此模板并将其绑定到数据集。这可能吗?如果有可能我在哪里可以找到 c# 中的一个很好的例子?我一直在寻找不好的和不完整的例子。
我想编辑一个 xamdatagrid 所以它看起来像这样
|更新 |
|通过 | 失败 |
| 1 | 0 |
| 0 | 1 |
(我的间距不好,但你明白了)我想在 xamdatagrid 上设置此模板并将其绑定到数据集。这可能吗?如果有可能我在哪里可以找到 c# 中的一个很好的例子?我一直在寻找不好的和不完整的例子。
您需要创建字段LabelPresenterStyle
<Style TargetType="{x:Type igWPF:LabelPresenter}" x:Key="PassedFailedLabelPresenterStyle">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type igWPF:LabelPresenter}">
<TextBlock HorizontalAlignment="Center" Text="passed | failed" VerticalAlignment="Center" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
并像使用它一样
<igWPF:Field Name="Hired" Width="Auto" LabelPresenterStyle="{StaticResource PassedFailedLabelPresenterStyle}">