WPF datagrid仅在双击时才可编辑

时间:2018-11-29 12:37:28

标签: c# wpf wpfdatagrid

我有一个DataGrid,我希望用户能够编辑某些列,但前提是必须先双击该单元格。在他们单击单元格的那一刻,然后开始输入时,它会立即进入编辑模式。

我试图使用MouseDoubleClick事件并禁用只读功能,但是无法在后面的代码中设置此属性。

有任何帮助/其他建议吗?谢谢

1 个答案:

答案 0 :(得分:0)

我通过设置列属性IsReadOnly =“ True”解决了这个问题。

然后将每个单元格挂接到事件MouseDoubleClick中。

<Style TargetType="{x:Type DataGridCell}">
    <EventSetter Event="MouseDoubleClick" Handler="DataGridCell_MouseDoubleClick" />
</Style>

以及背后的代码:

private void DataGridCell_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
    if (sender.GetType() == typeof(DataGridCell))
    {
         DataGridCell cell = sender as DataGridCell;
         cell.IsEditing = true;
    }
}

这似乎忽略了isreadonly属性,双击后可以成功更新该属性。您现在还可以按名称过滤掉某些列,但是我不需要。