wpf - DataGrid 编辑模式下的 CellEditingTemplate 问题

发布于 2024-11-28 03:42:31 字数 108 浏览 1 评论 0原文

我有一个带有 CellEditingTemplate 的 DataGrid , 加载行时,如何强制 DataGridRow 的第一个单元格进入编辑模式。 我尝试了一些方法,但似乎没有任何效果。 谢谢..

I have a DataGrid with CellEditingTemplate ,
How can i force the first cell of the DataGridRow to enter edit mode when a row is loaded.
I tried a few things but nothing seems to work..
thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女净妖师 2024-12-05 03:42:31

DataGridCell 具有 IsEditing 属性,如果将其设置为 true,则单元格将处于编辑模式。因此,在第一列中,将其设置为针对数据网格单元格类型的样式...

  <DataGridTemplateColumn ...>
     <DataGridTemplateColumn.CellStyle>
         <Style TargetType="{x:Type DataGridCell}">
               <Setter Property="IsEditing" Value="True" />
         </Style>
     </DataGridTemplateColumn.CellStyle>
  </DataGridTemplateColumn>

让我知道这是否有帮助。

DataGridCell has IsEditing property, which if you set to true puts the cell in edit mode. So in the first column put this true in a style targetted to the datagrid cell type...

  <DataGridTemplateColumn ...>
     <DataGridTemplateColumn.CellStyle>
         <Style TargetType="{x:Type DataGridCell}">
               <Setter Property="IsEditing" Value="True" />
         </Style>
     </DataGridTemplateColumn.CellStyle>
  </DataGridTemplateColumn>

Let me know if this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文