WPF Datagrid isReadOnly = True,使复选框列禁用
WPF Datagrid isReadOnly = True,即使我在 DatagridCheckboxColumn 上设置 isReadOnly = false,也会禁用复选框列。
如何启用复选框列?
WPF Datagrid isReadOnly = True, makes the checkboxcolumn disabled even if I set isReadOnly = false on DatagridCheckboxColumn.
How to enable the checkbox column?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 CheckBox 创建自己的 DataGridTemplateColumn,该复选框不会使用 IsReadOnly 属性:
You can create your own DataGridTemplateColumn with a CheckBox which won't use the IsReadOnly property:
您不能设置 DataGrid IsReadOnly,但可以在列中设置。
示例:
您可以为资源中指定的列创建样式,并将 DataGrid 设置为不必继续放入所有列 IsReadOnly
Daniel Freire - 巴西
谷歌上的回复已从葡萄牙语翻译成英语
You can not set the DataGrid IsReadOnly but in columns.
Sample:
You can create a style for columns specified in the resource and set the DataGrid to not have to keep putting in all the columns IsReadOnly
Daniel Freire - Brazil
Response translated from Portuguese into English on google