绑定 WPF Datagrid 列的 Visibility 属性?我的错在哪里?

发布于 12-07 20:17 字数 665 浏览 0 评论 0原文

在设置 WPF DataGrid 列的循环中,我想使用以下代码将列可见性绑定到“VisibilityList”中的成员“i”:

var bindingColumnVisibilty = new Binding(string.Format("VisibilityList[{0}]", i));
BindingOperations.SetBinding(customBoundColumn, DataGridColumn.VisibilityProperty, bindingColumnVisibilty);

我在循环开始之前设置了 DataContext:

TestControlDataGrid.TestDataGrid.DataContext = dataGridSource;

dataGridSource 类包含:

public List<Visibility> VisibilityList;

这确实似乎不起作用。我是否正确设置了 DataContext 和绑定?在此循环之后我使用以下内容设置 ItemsSource 是否重要?

TestDataGrid.ItemsSource = dataGridSource.DataList;

In a loop which sets up my WPF DataGrid columns, I want to bind the column visibility to member 'i' in my 'VisibilityList' with the following code:

var bindingColumnVisibilty = new Binding(string.Format("VisibilityList[{0}]", i));
BindingOperations.SetBinding(customBoundColumn, DataGridColumn.VisibilityProperty, bindingColumnVisibilty);

I have set the DataContext before the loop begins:

TestControlDataGrid.TestDataGrid.DataContext = dataGridSource;

The dataGridSource class contains:

public List<Visibility> VisibilityList;

This does not appear to work. Have I set up my DataContext and binding correctly? Does it matter that after this loop I set the ItemsSource with the following?

TestDataGrid.ItemsSource = dataGridSource.DataList;

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

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

发布评论

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

评论(2

半步萧音过轻尘2024-12-14 20:17:03

您将 VisabilityList 格式化为字符串。您需要将其保留为“可见性”。

You format the VisabilityList to string. You need to leave it as Visibility.

ま柒月2024-12-14 20:17:03

好的,事实证明 DataGridColumn 不会从 DataGrid 继承 DataContext,因为它不在逻辑(或可视)树中,所以这就是我的绑定不起作用的原因。

显示了一种解决方法 这里

Ok, it turns out that DataGridColumn does not inherit the DataContext from the DataGrid since it is not in the logical (or visual) tree, so that's why my binding doesn't work.

One workaround is shown here

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