如何让 WPF 的 ClipToBounds 工作?

问题描述 投票:0回答:3

我有一个应用程序,可以在 WPF 中的 Image 对象内显示图像。该图像包含在一个控件中,其 xaml 如下所示:

<UserControl x:Class="MyProgram.NativeImageDisplay"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="UserControl_Loaded">
    <Canvas Name="border" Background="Black" >
        <Image Name="image" StretchDirection="Both" Stretch="Uniform" ClipToBounds="True"
                SnapsToDevicePixels="True" RenderOptions.BitmapScalingMode="HighQuality"></Image>
    </Canvas>
</UserControl>

其中两个控件包含在窗口的网格中,如下所示:

    <Grid  Grid.Row="2" Name="DisplayCanvas">
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>
        <l:NativeImageDisplay x:Name="imageDisplay2" Grid.Column="1" ClipToBounds="True"/>
        <l:NativeImageDisplay x:Name="imageDisplay" Grid.Column="0" ClipToBounds="True"/>           
    </Grid>

我在这里称剪辑为真。

用户可以使用鼠标上的滚动按钮放大图像,最终调用图像上的 ScaleTransform:

    private void image_MouseWheel(object sender, MouseWheelEventArgs e)
    {
        if (!thumbnail)
        {
            TransformGroup transformGroup = (TransformGroup)border.RenderTransform;
            ScaleTransform transform = (ScaleTransform)transformGroup.Children[0];

            double oldScaleX = transform.ScaleX;
            double oldScaleY = transform.ScaleY;

            double zoom = e.Delta;
            transform.ScaleX += zoom / 10000;
            transform.ScaleY += zoom / 10000;
            if (transform.ScaleX > maxZoom || transform.ScaleY > maxZoom)
            {
                transform.ScaleX = maxZoom;
                transform.ScaleY = maxZoom;
            }
            if (transform.ScaleX < minZoom || transform.ScaleY < minZoom)
            {
                transform.ScaleX = minZoom;
                transform.ScaleY = minZoom;
            }
            Point thePoint = e.GetPosition(border);
            transform.CenterY = 0;
            transform.CenterX = 0;

            foreach (UIElement child in border.Children)
            {
                if (child is Anchor)
                {
                    TransformGroup group = (TransformGroup)child.RenderTransform;
                    ScaleTransform t = (ScaleTransform)group.Children[0];
                    t.ScaleX *= oldScaleX / transform.ScaleX;
                    t.ScaleY *= oldScaleY / transform.ScaleY;
                }
            }
        }
    }

一旦调用缩放变换,图像就不再包含在其画布或网格选择的边界中。本质上,ClipToBounds 被忽略。我怎样才能让这个转换关注ClipToBounds?

wpf cliptobounds
3个回答
22
投票

Canvas 的独特之处在于它并不像其他元素那样真正参与布局系统。它基本上充当具有固定位置子项的无限大小空间,因此通常完全忽略裁剪。如果没有看到更多代码,我无法确定,但如果您想将裁剪应用到缩放后的对象,将缩放移动到不同的元素可能会达到您想要的效果。最简单的方法是在画布周围包裹一个边框,然后对其应用 ScaleTransform。边框应该为您提供更好的剪切行为。

<Border x:Name="border" Background="Black" ClipToBounds="True">
    <Canvas x:Name="imageHost">
    ...
    </Canvas>
</Border>

0
投票

以上评论帮助了我。将一个画布嵌套在另一个画布中,将

ClipToBounds="True"
添加到父级并将嵌套的高度和宽度分别绑定到父级属性。
这种方式消除了对父级执行转换的需要。

<Canvas ClipToBounds="True" Name="Outer">
     <Canvas x:Name="Inner" 
         Height="{Binding ActualHeight, ElementName=Outer, Mode=OneWay}"
         Width="{Binding ActualWidth, ElementName=Outer, Mode=OneWay}" />
</Canvas>

0
投票

three
方法可以做到这一点。我已经在 StackOverflow 上用示例详细解释了它。

© www.soinside.com 2019 - 2024. All rights reserved.