如何选择按钮而不聚焦DataGrid中的项:
我尝试选择垃圾箱图标,但首先在网格上单击“make select”:
第二次单击可以执行删除命令。我尝试如下:
<DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="IsTabStop" Value="False" />
</Style>
</DataGridTemplateColumn.CellStyle>
</DataGridTemplateColumn.CellTemplate>
但是我没有得到想要结果
1条答案
按热度按时间ubof19bj1#
可以将
IsHitTestVisible
属性设置为false以忽略对Cell
的单击。