如何使覆盖控制高于所有其他控件?

时间:2011-03-27 17:37:29

标签: wpf xaml controls overlay

我需要让控件显示在所有其他控件上方,因此它会部分覆盖它们。

6 个答案:

答案 0 :(得分:147)

如果您在布局中使用CanvasGrid,请将控件放在较高的ZIndex上。

来自MSDN

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" WindowTitle="ZIndex Sample">
  <Canvas>
    <Rectangle Canvas.ZIndex="3" Width="100" Height="100" Canvas.Top="100" Canvas.Left="100" Fill="blue"/>
    <Rectangle Canvas.ZIndex="1" Width="100" Height="100" Canvas.Top="150" Canvas.Left="150" Fill="yellow"/>
    <Rectangle Canvas.ZIndex="2" Width="100" Height="100" Canvas.Top="200" Canvas.Left="200" Fill="green"/>

    <!-- Reverse the order to illustrate z-index property -->

    <Rectangle Canvas.ZIndex="1" Width="100" Height="100" Canvas.Top="300" Canvas.Left="200" Fill="green"/>
    <Rectangle Canvas.ZIndex="3" Width="100" Height="100" Canvas.Top="350" Canvas.Left="150" Fill="yellow"/>
    <Rectangle Canvas.ZIndex="2" Width="100" Height="100" Canvas.Top="400" Canvas.Left="100" Fill="blue"/>
  </Canvas>
</Page>

如果您未指定ZIndex,则面板的子项将按照指定的顺序呈现(即最后一个在顶部)。

如果您希望执行更复杂的操作,可以查看在Silverlight中如何实现ChildWindow。它覆盖了半透明背景并弹出整个RootVisual

答案 1 :(得分:61)

Robert Rossney有一个很好的解决方案。这是我过去使用的另一种解决方案,它将“叠加”与其他内容区分开来。此解决方案利用附加属性Panel.ZIndex将“叠加”放在其他所有内容之上。您可以在代码中设置“叠加”的可见性,也可以使用DataTrigger

<Grid x:Name="LayoutRoot">

 <Grid x:Name="Overlay" Panel.ZIndex="1000" Visibility="Collapsed">
    <Grid.Background>
      <SolidColorBrush Color="Black" Opacity=".5"/>
    </Grid.Background>

    <!-- Add controls as needed -->
  </Grid>

  <!-- Use whatever layout you need -->
  <ContentControl x:Name="MainContent" />

</Grid>

答案 2 :(得分:38)

网格的同一单元格中的控件从后向前呈现。因此,将一个控件放在另一个控件之上的简单方法是将它放在同一个单元格中。

这是一个有用的示例,它弹出一个面板,在执行长时间运行的任务时(即BusyMessage绑定属性为'n'时,使用忙消息禁用视图中的所有内容(即用户控件) t null):

<Grid>

    <local:MyUserControl DataContext="{Binding}"/>

    <Grid>
        <Grid.Style>
            <Style TargetType="Grid">
                <Setter Property="Visibility"
                        Value="Visible" />
                <Style.Triggers>
                    <DataTrigger Binding="{Binding BusyMessage}"
                                 Value="{x:Null}">
                        <Setter Property="Visibility"
                                Value="Collapsed" />
                    </DataTrigger>

                </Style.Triggers>
            </Style>
        </Grid.Style>
        <Border HorizontalAlignment="Stretch"
                VerticalAlignment="Stretch"
                Background="DarkGray"
                Opacity=".7" />
        <Border HorizontalAlignment="Center"
                VerticalAlignment="Center"
                Background="White"
                Padding="20"
                BorderBrush="Orange"
                BorderThickness="4">
            <TextBlock Text="{Binding BusyMessage}" />
        </Border>
    </Grid>
</Grid>

答案 3 :(得分:17)

将您想要的控件放在xaml代码末尾。即。

<Grid>
  <TabControl ...>
  </TabControl>
  <Button Content="ALways on top of TabControl Button"/>
</Grid>

答案 4 :(得分:12)

这是WPF中Adorners的常见功能。 Adorners通常出现在所有其他控件之上,但提及z-order的其他答案可能更适合您的情况。

答案 5 :(得分:3)

<Canvas Panel.ZIndex="1" HorizontalAlignment="Left" VerticalAlignment="Top" Width="570">
  <!-- YOUR XAML CODE -->
</Canvas>