如何在wpf标签项行中使用剩余空格

时间:2010-08-07 07:03:13

标签: wpf tabcontrol tabitem

TabControl的上半部分由TabItem控件组成。有没有办法重用剩余空间来放置一些WPF内容?

我想我可以使用具有不同样式的“假”TabItem并将我的东西放在TabItem.Header中,但我希望有更好的方法。

解决方案

基于下面的答案,我通过将TabPanel包装在下面的模板中得到了所需的行为。 StackPanel并在其后添加我的附加内容。

<StackPanel Orientation="Horizontal">
   <TabPanel 
    Grid.Row="0"
    Panel.ZIndex="1" 
    Margin="0,0,4,-1" 
    IsItemsHost="True"
    Background="Transparent" />
    <TextBlock>Foo</TextBlock>
</StackPanel>

2 个答案:

答案 0 :(得分:1)

您可以使用模板并使其做任何您想做的事情,这就是WPF的强大功能。 Here是关于自定义TabControl和TabItem控件的好文章。

&LT;编辑从Switch On The Code文章&gt;

添加TabControl模板的代码
<Style  TargetType="{x:Type TabControl}">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="{x:Type TabControl}">
        <Grid>
          <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
          </Grid.RowDefinitions>
          <TabPanel 
             Grid.Row="0"
             Panel.ZIndex="1" 
             Margin="0,0,4,-1" 
             IsItemsHost="True"
             Background="Transparent" />
          <Border 
             Grid.Row="1"
             BorderBrush="Black" 
             BorderThickness="1" 
             CornerRadius="0, 12, 12, 12" >
            <Border.Background>
              <LinearGradientBrush>
                <GradientStop Color="LightBlue" Offset="0" />
                <GradientStop Color="White" Offset="1" />
              </LinearGradientBrush>
            </Border.Background>
            <ContentPresenter ContentSource="SelectedContent" />
          </Border>
        </Grid>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>

您所要做的就是将您的内容添加到模板中,包含标签项的部分是<TabControl>

答案 1 :(得分:0)

我尝试了另一种方法,即创建另一个与TabControl占用相同空间的网格,即两者都在Grid.Row = 0中。我已将网格高度绑定到第一个标签的高度,因此如果标签更改高度,则其他控件将保持居中。我在窗口上设置了MinWidth,因此控件不会与标签重叠。

将此代码粘贴到新的WPF窗口中......

<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Title="MainWindow" Height="306" Width="490" MinWidth="300">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*" />
        <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <TabControl Grid.Row="0" x:Name="tabControl">
        <TabItem x:Name="tabItem" Header="TabItem" Height="50">
            <Grid Background="#FFE5E5E5"/>
        </TabItem>
        <TabItem Header="TabItem">
            <Grid Background="#FFE5E5E5"/>
        </TabItem>
    </TabControl>

    <Grid Grid.Row="0" Height="{Binding ActualHeight, ElementName=tabItem}" 
           VerticalAlignment="Top" Margin="0,2,0,0">
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" 
                    VerticalAlignment="Center" Margin="20,0">
            <TextBlock VerticalAlignment="Center" Margin="10,0" FontSize="16" 
                       Foreground="Red" FontFamily="Calibri">My Text</TextBlock>
            <Button Content="My Button" />
        </StackPanel>
    </Grid>

  </Grid>
</Window>

......你会得到这个:

Adding controls in empty space next to tabcontrol tabs