0

我正在尝试创建具有以下格式的 WPF 工具包数据网格。我能够在数据网格的 LoadingRow 事件中隐藏列的内容。但最后一列是一个按钮,不知道如何隐藏它的内容。每个名称只应显示一次。关于如何做到这一点的任何建议?

在此处输入图像描述

谢谢DM

4

1 回答 1

0
<DataGridTemplateColumn>
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
        <Button Content="Delete"
               Visibility="{Binding CanDelete, Converter={StaticResource BoolToVisibility}}"/>
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>

CanDelete is a bool property on your Row Binding on your List , change it to true when needed PropertyChanged + Binding will do the rest.

于 2012-04-23T20:52:25.003 回答