反应式用户界面WPF:列表框项目以正确的视图显示,除非在自定义用户控件内

发布于 2025-01-13 19:46:49 字数 691 浏览 0 评论 0原文

我有一些

public class MyItem : ReactiveUserControl<MyItemViewModel> {...

带有相应 xaml 的视图,下面的调用设置了视图模型来为我查看注册。

Locator.CurrentMutable.RegisterViewsForViewModels(Assembly.GetCallingAssembly());

当我绑定 ListBox 的 ItemsSource 属性时,项目将与注册的视图一起显示。但是,当我定义包含 ListBox

<UserControl x:Class="MyProject.Views.NavItem"
...
    <StackPanel>
...
        <ListBox ItemsSource="{Binding Path=ItemsSource}">
        </ListBox>
    </StackPanel>
</UserControl>

并绑定到其 ItemsSource 的 UserControl 时,项目将使用 .ToString() 显示。

如何使用注册的视图显示我的自定义 UserControl 的列表框项目?

I have some view

public class MyItem : ReactiveUserControl<MyItemViewModel> {...

with some corresponding xaml and the below call sets up the viewmodel to view registration for me

Locator.CurrentMutable.RegisterViewsForViewModels(Assembly.GetCallingAssembly());

When I bind the ItemsSource property of a ListBox, the items are displayed with the registered view. However, when I define a UserControl that includes a ListBox

<UserControl x:Class="MyProject.Views.NavItem"
...
    <StackPanel>
...
        <ListBox ItemsSource="{Binding Path=ItemsSource}">
        </ListBox>
    </StackPanel>
</UserControl>

and bind to its ItemsSource, the items are displayed with .ToString().

How can I get my custom UserControl's ListBox items to display using the registered view?

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

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

发布评论

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

评论(1

时间海 2025-01-20 19:46:49

您需要使用 ReactiveUI 绑定来获取自动视图解析而不是 Xaml 绑定。

You need to use ReactiveUI binding to get automatic view resolution not Xaml binding.

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