WPF系列十一:图形控件RectangleGeometry

简介

RectangleGeometry 是 WPF (Windows Presentation Foundation) 中用于定义矩形几何形状的一个几何对象。RectangleGeometry 通常与 Path 控件一起使用来绘制矩形,并且可以用来创建具有圆角的矩形。

  • 定义矩形RectangleGeometry 主要用于描述一个矩形区域,可以通过设置矩形的位置和尺寸来定义。
  • 参与绘制 :虽然 RectangleGeometry 本身不直接绘制任何内容,但它作为 Path 元素的数据源,允许你通过 Path 来绘制矩形。
  • 支持圆角 :可以通过设置 RadiusXRadiusY 属性来创建带有圆角的矩形。

属性

  • Rect :指定矩形的位置(左上角坐标)和大小(宽度和高度)。这个属性接受一个 Rect 结构体,该结构体定义了矩形的边界框。
  • RadiusX 和 RadiusY :这两个属性分别指定了矩形四个角的水平半径和垂直半径。当它们被设置为非零值时,矩形的角落会被圆滑处理。RadiusXRadiusY 的最大值分别是矩形宽度的一半和高度的一半。如果设定了这些值,则矩形将拥有圆角。
  • Transform :允许对 RectangleGeometry 应用变换,如旋转、缩放、平移等。这使得你可以轻松地调整矩形的位置或改变其外观而不必修改原始几何数据。
    • TranslateTransform:用于移动(平移)对象。
    • ScaleTransform:用于缩放对象。
    • RotateTransform:用于旋转对象。
    • SkewTransform:用于倾斜对象。
    • MatrixTransform:使用矩阵来定义更复杂的变换。
    • **TransformGroup:**组合变换。

示例

绘制一个带圆角的矩形

代码:

cs 复制代码
<Window x:Class="WPFDemo.Line.Views.RectangleGeometryWindow"
        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"
        xmlns:local="clr-namespace:WPFDemo.Line.Views"
        mc:Ignorable="d"
        Title="RectangleGeometryWindow" Height="450" Width="800">
    <Grid>
        <!--定义一个带圆角的矩形-->
        <Path Stroke="Red" StrokeThickness="2" Fill="Yellow">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20"/>
            </Path.Data>
        </Path>
    </Grid>
</Window>

效果:

平移变换(TranslateTransform)

代码:

cs 复制代码
<Window x:Class="WPFDemo.Line.Views.RectangleGeometryWindow1"
        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"
        xmlns:local="clr-namespace:WPFDemo.Line.Views"
        mc:Ignorable="d"
        Title="RectangleGeometryWindow1" Height="450" Width="800">
    <Grid>
        <!--定义一个带圆角的矩形-->
        <Path Stroke="Red" StrokeThickness="2" Fill="Yellow">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20"/>
            </Path.Data>
        </Path>

        <!--平移变换-->
        <Path Stroke="Blue" StrokeThickness="2" Fill="Green">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20">
                    <RectangleGeometry.Transform>
                        <TranslateTransform X="100" Y="0"/>
                    </RectangleGeometry.Transform>
                </RectangleGeometry>
            </Path.Data>
        </Path>
    </Grid>
</Window>

效果:

旋转变换(ScaleTransform)

代码:

cs 复制代码
<Window x:Class="WPFDemo.Line.Views.RectangleGeometryWindow2"
        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"
        xmlns:local="clr-namespace:WPFDemo.Line.Views"
        mc:Ignorable="d"
        Title="RectangleGeometryWindow2" Height="450" Width="800">
    <Grid>
        <!--定义一个带圆角的矩形-->
        <Path Stroke="Red" StrokeThickness="2" Fill="Yellow">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20"/>
            </Path.Data>
        </Path>

        <!--旋转变换-->
        <Path Stroke="Blue" StrokeThickness="2" Fill="Green">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20">
                    <RectangleGeometry.Transform>
                        <RotateTransform CenterX="300" CenterY="100" Angle="90"/>
                    </RectangleGeometry.Transform>
                </RectangleGeometry>
            </Path.Data>
        </Path>
    </Grid>
</Window>

效果:

缩放变换(RotateTransform)

代码:

cs 复制代码
<Window x:Class="WPFDemo.Line.Views.RectangleGeometryWindow3"
        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"
        xmlns:local="clr-namespace:WPFDemo.Line.Views"
        mc:Ignorable="d"
        Title="RectangleGeometryWindow3" Height="450" Width="800">
    <Grid>
        <!--定义一个带圆角的矩形-->
        <Path Stroke="Red" StrokeThickness="2" Fill="Yellow">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20"/>
            </Path.Data>
        </Path>

        <!--缩放变换-->
        <Path Stroke="Blue" StrokeThickness="2" Fill="Green">
            <Path.Data>
                <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20">
                    <RectangleGeometry.Transform>
                        <ScaleTransform ScaleX="0.8" ScaleY="0.8" />
                    </RectangleGeometry.Transform>
                </RectangleGeometry>
            </Path.Data>
        </Path>
    </Grid>
</Window>

效果:

组合变换(TransformGroup)

代码:

cs 复制代码
<Window x:Class="WPFDemo.Line.Views.RectangleGeometryWindow4"
        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"
        xmlns:local="clr-namespace:WPFDemo.Line.Views"
        mc:Ignorable="d"
        Title="RectangleGeometryWindow4" Height="450" Width="800">
    <Grid>
        <Grid>
            <!--定义一个带圆角的矩形-->
            <Path Stroke="Red" StrokeThickness="2" Fill="Yellow">
                <Path.Data>
                    <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20"/>
                </Path.Data>
            </Path>

            <!--组合变换-->
            <Path Stroke="Blue" StrokeThickness="2" Fill="Green">
                <Path.Data>
                    <RectangleGeometry Rect="300,150,200,100" RadiusX="20"  RadiusY="20">
                        <RectangleGeometry.Transform>
                            <TransformGroup>
                                <TranslateTransform X="100" Y="0"/>
                                <RotateTransform CenterX="300" CenterY="100" Angle="90"/>
                                <ScaleTransform ScaleX="0.8" ScaleY="0.8" />
                            </TransformGroup>
                        </RectangleGeometry.Transform>
                    </RectangleGeometry>
                </Path.Data>
            </Path>
        </Grid>
    </Grid>
</Window>

效果:

相关推荐
hqwest10 小时前
C#WPF实战出真汁06--【系统设置】--餐桌类型设置
c#·.net·wpf·布局·分页·命令·viewmodel
Vae_Mars12 小时前
WPF中使用InputBindings进行快捷键绑定
wpf
hqwest15 小时前
C#WPF实战出真汁05--左侧导航
开发语言·c#·wpf·主界面·窗体设计·视图viewmodel
hqwest21 小时前
C#WPF实战出真汁01--项目介绍
开发语言·c#·wpf
wuty0071 天前
WPF 实现支持动态调整高度的文本显示控件
wpf·scrollviewer·extentheight·自动高度控件·动态调整高度
范纹杉想快点毕业4 天前
C 语言主控开发与显控开发能力体系及技术栈详解,STM32、QT、嵌入式、边缘系统显示
stm32·单片机·tcp/ip·microsoft·fpga开发·51单片机·wpf
weixin_447103585 天前
WPF之绑定!
c#·wpf
DataIntel5 天前
wpf问题记录
wpf
蓝点lilac6 天前
C# WPF 内置解码器实现 GIF 动图控件
c#·.net·wpf·图像
@Jackasher6 天前
Redis如何实现一个分布式锁?
redis·分布式·wpf