WPF通过不透明蒙板切割显示子控件

WPF通过不透明蒙板切割显示子控件

    • 子控件超出父控件显示区域问题
    • 使用遮罩蒙板去遮罩显示子控件
    • 不透明蒙板 OpacityMask
    • 代码拷贝

子控件超出父控件显示区域问题

在WPF开发过程中,经常会碰到圆角控件,我们一般是通过Border实现,但是如果我们向该控件中放入子控件,同时设置子控件距离左侧和顶部的距离为0,此时子控件会超出父控件的圆角显示范围。
WPF通过不透明蒙板切割显示子控件_第1张图片

使用遮罩蒙板去遮罩显示子控件

最外层还是Border,不过我们在内部添加一个Grid,然后向Grid的蒙板添加一个可视画刷(OpacityMask),
在画刷中再添加一个Border,将外围Border的宽度,高度,圆角,边框粗细与画刷中的Border依次绑定即可.

注意1,不能直接在最外层的Borde添加不透明蒙板,当外层Border有边框时,无法完美处理圆角,这里使用Grid做蒙板
注意2,Grid需要设置背景颜色,透明也可,但不能为默认值{x:Null}
注意3,画刷中Border的Height和Width需要与外围Border的ActualHeight和ActualWidth进行Binding
注意4,该方用于控件的Templete时,运行时wpf会在控制台有binding错误的提示(wpf bug??),此时可以将可视画刷中的Border在后台通过代码重写 OnApplyTemplate()进行Binding

WPF通过不透明蒙板切割显示子控件_第2张图片

不透明蒙板 OpacityMask

蒙板没有具体颜色的区分,蒙板位于控件上层,透明或{x:null}的蒙板代表完全不透明,蒙板的不透明度越低,控件的对应部分的显示越暗淡,还是刚才的遮罩效果,将透明度改为0.1.明显看到子控件非常暗淡。
WPF通过不透明蒙板切割显示子控件_第3张图片

代码拷贝

        <Border Margin="100" Background="Green" BorderBrush="Black" BorderThickness="5" CornerRadius="30">
            
            <Grid Background="Transparent">
                <Grid.OpacityMask>
                    <VisualBrush>
                        <VisualBrush.Visual>
                            
                            <Border Height="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=Border},Path=ActualHeight}" Width="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=Border},Path=ActualWidth}" BorderThickness="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=Border},Path=BorderThickness}" CornerRadius="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=Border},Path=CornerRadius}" Background="Black"/>
                        VisualBrush.Visual>
                    VisualBrush>
                Grid.OpacityMask>
                <Button Width="75" HorizontalAlignment="Left" VerticalAlignment="Top" Background="Yellow" Content="Button" />
            Grid>
        Border>

你可能感兴趣的:(C#,WPF)