我有一个DataTemplate
正在加载一个列表中 ~7000 个项目的列表combobox
。当前ItemsSource
绑定到 的数据上下文中的一个属性DataTemplate
,但这意味着对于DataTemplate
系统的每个实例都加载所有 7k 对象,这大大降低了系统速度。
理想情况下,我希望能够一次加载列表并将其用于所有实例。对我来说显而易见的解决方案是使用该Window.Resources
部分中定义的资源。但是我无法弄清楚这应该如何工作,更重要的是,应该如何通过 MVVM 模式填充该资源。
ItemsSource
为每个DataTemplate
实例加载的当前代码
<DataTemplate>
<ComboBox SelectedItem="{Binding SelectedItem}" ItemsSource="{Binding ItemsSource}" />
</DataTemplate>
尝试解决问题:
<Window.Resources>
<ResourceDictionary>
<sys:Object x:Key="ItemItemsSource" />
</ResourceDictionary>
</Window.Resources>
<DataTemplate>
<ComboBox SelectedItem="{Binding SelectedItem}" ItemsSource="{Binding Source={StaticResource ItemItemsSource}}" />
</DataTemplate>
更新
每个 DataTemplate 都有自己的 DataContext ,这意味着数据模板的每个实例都有自己的ItemsSource
,它将在 DataContext 初始化程序中填充。
更新 2
在我看来,解决这个问题的理想方法是在DataContext
Combobox 绑定的 Window 的 /VM 中拥有一个属性。这可能吗?就像是:
public class WindowsViewModel
{
public List<Object> SharedItemSource { get; set; }
}
<DataTemplate>
<ComboBox SelectedItem="{Binding SelectedItem}" ItemsSource="{Binding <Some Binding To SharedItemSource>}" />
</DataTemplate>