XAML 中的 WPF MVVM 用户控件数据绑定不起作用

发布于 2024-11-02 18:25:10 字数 395 浏览 1 评论 0原文

我有一个用户控件,其中数据源是 ObservableCollection。 如果我通过代码设置用户控件实例的数据源,它可以工作

Chapters.DataSource = vm.ChapterList;

但尝试通过 ht xaml 绑定不起作用

<b:ChapterStack x:Name="Chapters" DataSource="{Binding ChapterList}"></b:ChapterStack>

窗口上的其他控件绑定到 VM 并正确显示。

我需要做什么才能让我的用户控件通过 xaml 绑定?

谢谢?

I've got a user control where the DataSource is an ObservableCollection<string>.
If I set the DataSource of an instance of my user control via code it works

Chapters.DataSource = vm.ChapterList;

But trying to bind via ht xaml doesn't work

<b:ChapterStack x:Name="Chapters" DataSource="{Binding ChapterList}"></b:ChapterStack>

Other controls on the window are binding to the VM and displaying properly.

What do I have to do to get my usercontrol to bind via xaml?

thanks?

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

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

发布评论

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

评论(1

自由如风 2024-11-09 18:25:10

确保将 ChapterStack 控件的 DataSource 属性定义为 Dependency Property,否则您将无法绑定它。

Make sure you defined the DataSource property of your ChapterStack control as a Dependency Property, because otherwise, you won't be able to bind it.

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