是否可以创建一个可以在行级别在复选框和文本块之间切换(动态)的 DataGridTemplateColumn?
是否可以创建一个可以同时包含 TextBlock 和 Checkbox 的 DataGridColumn。举例来说,我定义了一个包含 7 列的 Datagrid,其中一列是 dataGrid 上的 DataGridCheckBoxColumn,其他列有 TextBlock。然后,当我检查一行中的复选框时,我希望 TextBlocks 中该行上的所有单元格都成为复选框,而其余行保持不受影响(我使用的是 VS2008)。
Is it possible to create a DataGridColumn that can contain both TextBlock and Checkbox. Let's say for example that I have defined a Datagrid with 7 Columns one of which is a DataGridCheckBoxColumn on the dataGrid and the others have TextBlocks. Then when I check the checkbox in a row I want all the cells on that row from TextBlocks to become Checkboxes while the rest rows remain unaffected (I am using VS2008).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在绑定对象上公开一个属性并相应地链接所有内容:
因此,一列中的复选框会影响所述属性,而其他列的模板包含
DataTriggers
,它检查该属性是 true 还是 false 并显示相应的内容。You could expose a property on your bound object and link everything accordingly:
So the Checkbox in one column affects said property and the templates of the other columns contain
DataTriggers
which check is the property is true or false and show the according content.