Scrollviewer外部的WPF元素忽略ZIndex

时间:2013-01-10 14:00:01

标签: c# wpf scrollviewer

如果我在WPF滚动查看器的边界之外转换了一个元素,我似乎无法将其呈现在顶部。

考虑以下示例:

<Window x:Class="ScrollViewerContentTransform.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>

         <Grid.RowDefinitions>
             <RowDefinition/>
             <RowDefinition/>
         </Grid.RowDefinitions>

         <Border Grid.Row="0" Background="Blue" Panel.ZIndex="1"/>

         <ScrollViewer Grid.Row="1" Panel.ZIndex="2">
             <Grid>
                 <Border Width="30" Height="30" Background="Red">
                     <Border.RenderTransform>
                         <TranslateTransform Y="-80"/>
                     </Border.RenderTransform>
                 </Border>
             </Grid>
         </ScrollViewer>

    </Grid>
</Window>

即使我设置了zorder,红色边框仍将隐藏在蓝色边框下。

http://imm.io/Sm2Q

如果我用网格替换ScrollViewer,它将根据需要显示。关于如何在使用ScrollViewer时将元素显示在顶部的任何提示?

1 个答案:

答案 0 :(得分:1)

据我所知,使用ScrollViewer时无法删除内容剪辑,因为ScrollViewer控件模板将生成ScrollContentPresenter,而GetLayoutClip依次具有protected override Geometry GetLayoutClip(Size layoutSlotSize) { return new RectangleGeometry(new Rect(base.RenderSize)); } 方法的实现:< / p>

Sealed

此类为{{1}},因此您无法从中派生以覆盖此方法。 因此,请考虑从布局中删除ScrollViewer。