wpf - DataGrid 编辑模式下的 CellEditingTemplate 问题
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataGridCell 具有 IsEditing 属性,如果将其设置为 true,则单元格将处于编辑模式。因此,在第一列中,将其设置为针对数据网格单元格类型的样式...
让我知道这是否有帮助。
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...
Let me know if this helps.