WPF 将 ItemsSource 绑定到静态方法?

发布于 2024-11-06 16:05:30 字数 399 浏览 2 评论 0原文

我在名为“Article”的类中有以下静态方法:

public static ObservableCollection<Article> GetObservableCollection() { ... }

我想将其直接绑定到 ComboBox 的 ItemsSource 属性,但在 XAML 中而不是在代码中,我找不到正确的语法。

我认为它应该看起来像这样(EmacGbscCore 是包含 Article 对象的程序集):

ItemsSource="{Binding Source={x:Static EmacGbscCore:Article.GetObservableCollection}}"

提前感谢您的帮助。

I have the following static method in an class called "Article" :

public static ObservableCollection<Article> GetObservableCollection() { ... }

And I'd like to bind this directly to the ItemsSource property of a ComboBox but in the XAML not in code, I can't find the right syntax.

It should look something like this I think (EmacGbscCore is the assembly containing Article object) :

ItemsSource="{Binding Source={x:Static EmacGbscCore:Article.GetObservableCollection}}"

Thank in advance for your help.

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

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

发布评论

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

评论(1

无名指的心愿 2024-11-13 16:05:30

您需要在资源中声明一个 ObjectDataProvider

<ObjectDataProvider x:Key="data"
                    ObjectType="{x:Type EmacGbscCore:Article}"
                    MethodName="GetObservableCollection" />

并将其用作绑定的源:

ItemsSource"{Binding Source={StaticResource data}}"

You need to declare an ObjectDataProvider in the resources:

<ObjectDataProvider x:Key="data"
                    ObjectType="{x:Type EmacGbscCore:Article}"
                    MethodName="GetObservableCollection" />

And use this as the source of your binding:

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