WPF 动态 DataTemplate:GridView CellTemplate 不为 null,但 VisualTree 属性为 null

发布于 2024-07-24 06:58:57 字数 491 浏览 9 评论 0原文

我试图在运行时动态设置 ListView.GridView 的 CellTemplate 的 DataTemplate 。 问题是当我这样做时,什么也没有发生。 我检查了 CellTemplate,它不为空,但它的 VisualTree 属性为空。 有什么建议么?

GridViewColumn gvc = new GridViewColumn
    {
        Header = col.Label ?? col.Name,
        DisplayMemberBinding = binding                        
    };

DataTemplate cellTemplate = FindDataTemplate(listView, col.CellTemplate);
if (cellTemplate != null)
    gvc.CellTemplate = cellTemplate;

gridView.Columns.Add(gvc);

I am trying to set the DataTemplate of my ListView.GridView's CellTemplate dynamically at runtime.
The problem is when I do this, nothing happens. I checked the CellTemplate and it's not null but its VisualTree property is null.
Any suggestions?

GridViewColumn gvc = new GridViewColumn
    {
        Header = col.Label ?? col.Name,
        DisplayMemberBinding = binding                        
    };

DataTemplate cellTemplate = FindDataTemplate(listView, col.CellTemplate);
if (cellTemplate != null)
    gvc.CellTemplate = cellTemplate;

gridView.Columns.Add(gvc);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝海 2024-07-31 06:58:57

显然,当您设置 DisplayMemberBinding 时,CellTemplate 将被忽略。 所以使用CellTemplate时,不要设置DisplayMemberBinding

http://krishnabhargav.blogspot.com/2009/06/gridviewcolumn -celltemplate-does-not.html

Apparently, when you set the DisplayMemberBinding, the CellTemplate is ignored. So when using CellTemplate, do not set DisplayMemberBinding.

http://krishnabhargav.blogspot.com/2009/06/gridviewcolumn-celltemplate-does-not.html

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