我一直在为Visibility.Collapsed
阅读TabItems
。当Visibility
设置为Collapsed
时,TabItem
标题会被隐藏,但内容仍然可见。
我也尝试了here中提到的以下approch,但没有运气。
有没有办法让TabItems
内的内容隐藏起来,还可以选择可见的标签。
答案 0 :(得分:8)
你不需要任何这些。从概念上讲,TabControl
只是ObservableCollection<ViewModel>
的图形表示,其中每个视图模型都由标签项表示,并且在给定时间只有1 SelectedItem
:
<Window x:Class="WpfApplication4.Window12"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window12" Height="300" Width="300">
<Window.Resources>
<BooleanToVisibilityConverter x:Key="BoolToVisibilityConverter"/>
</Window.Resources>
<TabControl ItemsSource="{Binding Items}" SelectedItem="{Binding SelectedItem}">
<TabControl.ItemContainerStyle>
<Style TargetType="TabItem">
<Setter Property="IsEnabled" Value="{Binding IsEnabled}"/>
<Setter Property="Visibility" Value="{Binding IsVisible, Converter={StaticResource BoolToVisibilityConverter}}"/>
<Setter Property="Header" Value="{Binding Title}"/>
</Style>
</TabControl.ItemContainerStyle>
</TabControl>
</Window>
代码背后:
using System.Windows;
using BaseFramework.MVVM;
using System.Collections.ObjectModel;
namespace WpfApplication4
{
public partial class Window12 : Window
{
public Window12()
{
InitializeComponent();
DataContext = new TabbedViewModel()
{
Items =
{
new TabViewModel() {Title = "Tab #1", IsEnabled = true, IsVisible = true},
new TabViewModel() {Title = "Tab #2", IsEnabled = false, IsVisible = true},
new TabViewModel() {Title = "Tab #3", IsEnabled = true, IsVisible = false},
}
};
}
}
视图模型:
public class TabbedViewModel: ViewModelBase
{
private ObservableCollection<TabViewModel> _items;
public ObservableCollection<TabViewModel> Items
{
get { return _items ?? (_items = new ObservableCollection<TabViewModel>()); }
}
private ViewModelBase _selectedItem;
public ViewModelBase SelectedItem
{
get { return _selectedItem; }
set
{
_selectedItem = value;
NotifyPropertyChange(() => SelectedItem);
}
}
}
public class TabViewModel: ViewModelBase
{
private string _title;
public string Title
{
get { return _title; }
set
{
_title = value;
NotifyPropertyChange(() => Title);
}
}
private bool _isEnabled;
public bool IsEnabled
{
get { return _isEnabled; }
set
{
_isEnabled = value;
NotifyPropertyChange(() => IsEnabled);
}
}
private bool _isVisible;
public bool IsVisible
{
get { return _isVisible; }
set
{
_isVisible = value;
NotifyPropertyChange(() => IsVisible);
}
}
}
}
然后,它只是为每个选项卡继承TabViewModel
(在每个选项卡内部创建适当的逻辑),并为DataTemplate
中的每一个派生类提供正确的app.xaml
{1}}或其他什么。
每当您想要从视图中删除选项卡项时,您可以操纵ViewModel而不是操纵视图。这是针对一切的WPF方法。它通过消除在代码中操作复杂对象(UI元素)的需要简化了一切。每当你设置
TabbedViewModel.SelectedItem.IsVisible = false;
,请确保您也这样做:
TabbedViewModel.SelectedItem = TabbedViewModel.Items.First(x => x.IsVisible && x.IsEnabled);
这样可以防止您使用隐形标签项作为选定项目。
答案 1 :(得分:1)
您只需从TabControl添加和删除TabItems,而不是设置Visibility。打开和关闭“可见性”还有一个问题,当您滚动或最小化或调整TabControl的大小时,它会超出索引范围。