没有简单的方法可以做到这一点。
问题是你有一个 WPF 模板,无论你在它后面放什么数据,它都是一样的。因此,创建了模板的一个副本,并且每当 WPFListViewModel
在您的 UI 树中遇到 a 时,它都会使用该模板来绘制它。该控件的未绑定到 DataContext 的属性将在更改 DataSource 之间保持其状态。
您可以使用x:Shared="False"
(此处为示例),但这会在 WPF 请求时创建模板的新副本,包括切换选项卡时。
当 [x:Shared
设置为 false 时,修改 Windows Presentation Foundation (WPF) 资源检索行为,以便对资源的请求将为每个请求创建一个新实例,而不是为所有请求共享同一个实例。
您真正需要的是为TabControl.Items
每个项目生成一个新的控件副本,但是当您使用该ItemsSource
属性时不会发生这种情况(这是设计使然)。
一种可行的替代方法是创建一个自定义的 DependencyProperty,它绑定到您的项目集合,并为集合中的每个项目生成TabItem
和UserControl
对象。此自定义 DP 还需要处理集合更改事件,以确保 TabItems 与您的集合保持同步。
这是我正在玩的一个。它适用于简单的情况,例如绑定到 ObservableCollection,以及添加/删除项目。
public class TabControlHelpers
{
// Custom DependencyProperty for a CachedItemsSource
public static readonly DependencyProperty CachedItemsSourceProperty =
DependencyProperty.RegisterAttached("CachedItemsSource", typeof(IList), typeof(TabControlHelpers), new PropertyMetadata(null, CachedItemsSource_Changed));
// Get
public static IList GetCachedItemsSource(DependencyObject obj)
{
if (obj == null)
return null;
return obj.GetValue(CachedItemsSourceProperty) as IList;
}
// Set
public static void SetCachedItemsSource(DependencyObject obj, IEnumerable value)
{
if (obj != null)
obj.SetValue(CachedItemsSourceProperty, value);
}
// Change Event
public static void CachedItemsSource_Changed(
DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
if (!(obj is TabControl))
return;
var changeAction = new NotifyCollectionChangedEventHandler(
(o, args) =>
{
var tabControl = obj as TabControl;
if (tabControl != null)
UpdateTabItems(tabControl);
});
// if the bound property is an ObservableCollection, attach change events
INotifyCollectionChanged newValue = e.NewValue as INotifyCollectionChanged;
INotifyCollectionChanged oldValue = e.OldValue as INotifyCollectionChanged;
if (oldValue != null)
newValue.CollectionChanged -= changeAction;
if (newValue != null)
newValue.CollectionChanged += changeAction;
UpdateTabItems(obj as TabControl);
}
static void UpdateTabItems(TabControl tc)
{
if (tc == null)
return;
IList itemsSource = GetCachedItemsSource(tc);
if (itemsSource == null || itemsSource.Count == null)
{
if (tc.Items.Count > 0)
tc.Items.Clear();
return;
}
// loop through items source and make sure datacontext is correct for each one
for(int i = 0; i < itemsSource.Count; i++)
{
if (tc.Items.Count <= i)
{
TabItem t = new TabItem();
t.DataContext = itemsSource[i];
t.Content = new UserControl1(); // Should be Dynamic...
tc.Items.Add(t);
continue;
}
TabItem current = tc.Items[i] as TabItem;
if (current == null)
continue;
if (current.DataContext == itemsSource[i])
continue;
current.DataContext = itemsSource[i];
}
// loop backwards and cleanup extra tabs
for (int i = tc.Items.Count; i > itemsSource.Count; i--)
{
tc.Items.RemoveAt(i - 1);
}
}
}
它像这样从 XAML 中使用:
<TabControl local:TabControlHelpers.CachedItemsSource="{Binding Values}">
<TabControl.Resources>
<Style TargetType="{x:Type TabItem}">
<Setter Property="Header" Value="{Binding SomeString}" />
</Style>
</TabControl.Resources>
</TabControl>
有几点需要注意:
TabItem.Header
未设置,因此您必须为其设置绑定TabControl.Resources
- DependencyProperty 实现当前对新 UserControl 的创建进行硬编码。可能希望以其他方式执行此操作,例如尝试使用模板属性或不同的 DP 来告诉它要创建什么 UserControl
- 可能需要更多测试...不确定是否存在由于更改处理程序等导致的内存泄漏问题