3

我有一个选项卡控件绑定到动态选项卡的 observablecollection,如下所示:

<TabControl ItemsSource="{Binding AllTabs}" SelectedIndex="{Binding SelectedItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
        <TabControl.ItemTemplate>
            <DataTemplate>
                   <!--.............. -->
            </DataTemplate>
        </TabControl.ItemTemplate>

        <TabControl.ContentTemplate>
            <DataTemplate DataType="{x:Type vm:TabViewModel}">
                <c:MyTabItem/>
            </DataTemplate>
        </TabControl.ContentTemplate>
    </TabControl>

因此,选项卡标题和内容是动态定义的,并随着可观察集合的变化而分配。现在,我想隐藏一些选项卡而不删除它们在后面的集合中 - 以便在选项卡重新打开时保留数据。

理想情况下,每个聊天选项卡视图模型都有一个默认设置为 true 的 IsVisible 属性。但是,为了使选项卡项折叠,我应该在哪里绑定这样的属性?

4

3 回答 3

6

如果您可以修改您的vm:TabViewModelI 应该将您的 IsVisible 更改为 Visibility 属性并使用以下 ContentTemplate:

<TabControl.ContentTemplate>
    <DataTemplate DataType="{x:Type vm:TabViewModel}">
        <c:MyTabItem Visibility={Binding Visibility}/>
    </DataTemplate>
</TabControl.ContentTemplate>

否则,您可以使用转换器将布尔 IsVisible 更改为 Visibility 枚举:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Data;
using System.Windows;

namespace Something.Converters
{
    [ValueConversion(typeof(bool), typeof(Visibility))]
    public class BoolToVisibilityConverter : IValueConverter
    {

        #region IValueConverter Members
        /// <summary>
        /// Converts a value.
        /// </summary>
        /// <param name="value">The value produced by the binding source.</param>
        /// <param name="targetType">The type of the binding target property.</param>
        /// <param name="parameter">The converter parameter to use.</param>
        /// <param name="culture">The culture to use in the converter.</param>
        /// <returns>
        /// A converted value. If the method returns null, the valid null value is used.
        /// </returns>
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value is bool && targetType == typeof(Visibility))
            {
                bool val = (bool)value;
                if (val)
                    return Visibility.Visible;
                else
                    if (parameter != null && parameter is Visibility )
                        return parameter;
                    else
                        return Visibility.Collapsed;
            }
            throw new ArgumentException("Invalid argument/return type. Expected argument: bool and return type: Visibility");
        }

        /// <summary>
        /// Converts a value.
        /// </summary>
        /// <param name="value">The value that is produced by the binding target.</param>
        /// <param name="targetType">The type to convert to.</param>
        /// <param name="parameter">The converter parameter to use.</param>
        /// <param name="culture">The culture to use in the converter.</param>
        /// <returns>
        /// A converted value. If the method returns null, the valid null value is used.
        /// </returns>
        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value is Visibility && targetType == typeof(bool))
            {
                Visibility val = (Visibility)value;
                if (val == Visibility.Visible)
                    return true;
                else
                    return false;
            }
            throw new ArgumentException("Invalid argument/return type. Expected argument: Visibility and return type: bool");
        }
        #endregion
    }
}

在您的 xaml 中包含命名空间(您的根元素,在此示例中为 Window):

<Window xmlns:converters="clr-namespace:Something.Converters"
.../>

在您的资源中:

<Window.Resources>
    <converters:BoolToVisibilityConverter x:Key="boolToVisibilityConverter"/>
</Window.Resources>

最后是绑定:

<TabControl.ContentTemplate>
    <DataTemplate DataType="{x:Type vm:TabViewModel}">
        <c:MyTabItem Visibility={Binding IsVisible, Converter={StaticResource boolToVisibilityConverter}, ConverterParameter=Visibility.Collapsed}/>
    </DataTemplate>
</TabControl.ContentTemplate>

我想就是这样:)

编辑:Ow 并将 ConverterParameter 更改为 Visibility.Collapsed 为 Visibility.Hidden 以隐藏 ;)

于 2009-08-27T13:16:46.553 回答
6

在这个答案的帮助下得到了正确的答案

<TabControl.ItemContainerStyle>
  <Style TargetType="{x:Type TabItem}">
    <Setter Property="Visibility" Value="{Binding IsVisible, Converter={StaticResource boolToVisibilityConverter}"/>
  </Style>
</TabControl.ItemContainerStyle>

使用 System.Windows.Controls.BooleanToVisibilityConverter 将 bool 转换为 Visibilty。

Scott 使用 CollectionView 的建议也很有希望。

于 2009-11-11T10:01:27.030 回答
1

我建议使用CollectionView。这有点像一个集合的抽象视图,您可以在其中看到它的过滤部分。通过绑定到 CollectionView 而不是集合本身,您应该只能看到您想要的那些,并且集合仍然在后台。

于 2009-08-27T12:58:01.580 回答