处理WPF表项可见性属性

本文关键字:可见性 属性 WPF 处理 | 更新日期: 2023-09-27 18:02:02

我一直在为TabItems阅读Visibility.Collapsed。当Visibility设置为Collapsed时,TabItem头被隐藏,但内容仍然可见。

我也试过下面提到的方法,但是没有运气。

是否有任何方法可以让TabItems内的内容隐藏,并选择可见的选项卡

处理WPF表项可见性属性

你不需要这些。从概念上讲,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},
                                  }
                          };
        }
    }

ViewModel:

    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的问题(在每个选项卡中创建适当的逻辑),并为app.xaml或其他东西中的每个这些派生类中的每个DataTemplate

当你想要从视图中删除一个选项卡项时,你可以操作ViewModel而不是视图。这是WPF解决所有问题的方法。它消除了在代码中操作复杂对象(UI元素)的需要,从而简化了一切。当你设置

TabbedViewModel.SelectedItem.IsVisible = false;,确保你也这样做:

TabbedViewModel.SelectedItem = TabbedViewModel.Items.First(x => x.IsVisible && x.IsEnabled);

这将防止您陷入将不可见的选项卡项作为所选项的情况。

嗨,只是在TabControl中添加和删除TabItems,而不是设置Visibility。还有一个关于打开和关闭可见性的问题,当你滚动或最小化或调整TabControl的大小时,它是例外的。