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