是否可以创建一个可以在行级别在复选框和文本块之间切换(动态)的 DataGridTemplateColumn?

发布于 2024-12-02 15:29:50 字数 217 浏览 1 评论 0原文

是否可以创建一个可以同时包含 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 技术交流群。

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

发布评论

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

评论(1

‖放下 2024-12-09 15:29:50

您可以在绑定对象上公开一个属性并相应地链接所有内容:

Property ---+<---> CheckBoxCol
            |
            +----> TemplateCol >> Trigger ----- TextBlock
                                     |
                                     +--------- CheckBox

因此,一列中的复选框会影响所述属性,而其他列的模板包含 DataTriggers ,它检查该属性是 true 还是 false 并显示相应的内容。

You could expose a property on your bound object and link everything accordingly:

Property ---+<---> CheckBoxCol
            |
            +----> TemplateCol >> Trigger ----- TextBlock
                                     |
                                     +--------- CheckBox

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.

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