gpt4 book ai didi

reactiveui - 使用 ReactiveUI 中的代码隐藏在 ListBox 中绑定(bind)数据

转载 作者:行者123 更新时间:2023-12-01 00:58:37 25 4
gpt4 key购买 nike

我有 WPF 列表框:

<ListBox Name="FileDownloads" SelectionMode="Extended">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Name="Url" Text="{Binding Url}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

我喜欢使用后面的代码按名称绑定(bind) ListBox 的能力: this.OneWayBind(ViewModel, vm => vm.DownloadManager.FileDownloads, v => v.FileDownloads.ItemsSource);在代码隐藏中绑定(bind)有助于重构。

有没有办法使用代码隐藏在列表框中绑定(bind) Url texbox?

最佳答案

Is there any way to bind Url textbox inside the listbox using code-behind?



现在不行。您可以像现在一样使用 XAML 绑定(bind),也可以将数据模板放在 UserControls 中。

这种稍微麻烦的方法的一个安慰是,如果您注册数据模板 UserControls 并实现 IViewFor<TViewModel>在他们:
Splat.Locator.CurrentMutable.Register(typeof(MyView), typeof(IViewFor<MyViewModel>));

然后,您可以将 ListBox 简单地编写为:
<ListBox Name="FileDownloads" SelectionMode="Extended" />

此行将自动为您连接一个 DataTemplate:
this.OneWayBind(ViewModel, vm => vm.DownloadManager.FileDownloads, v => v.FileDownloads.ItemsSource);

关于reactiveui - 使用 ReactiveUI 中的代码隐藏在 ListBox 中绑定(bind)数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25466260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com