WPF datagridtextcolumn - 始终显示文本框
默认情况下,WPF 数据网格文本显示为标签,并在单击时进入编辑状态。有没有办法修改列,使文本框始终可见(而不是依赖于单击事件)? 提前致谢, 太平绅士
By default the WPF datagridtext appears as a label and enters an edit state upon clicking. Is there a way to modify the column so that the textbox is always visible (instead of depending on the click event)?
Thanks in advance,
JP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我根据您在评论中的澄清更新了我的答案。您可以自己为单元格设置模板。下面是年龄列使用文本块的示例。
XAML:
隐藏代码:
I updated my answer based on your clarification in your comment. You can set the template yourself for cells. Below is a sample where the age column uses textblocks.
XAML:
Code behind: