当前位置: 首页 > article >正文

WPF系列五:图形控件Ellipse

简介

使用 Ellipse 控件绘制椭圆形和圆形。 若要绘制椭圆形,请创建 Ellipse 元素,并指定其 Width 和 Height。 使用其 Fill 属性指定用于绘制椭圆形内部的颜色。 使用其 Stroke 属性指定用于绘制椭圆形轮廓的颜色。 StrokeThickness 属性指定椭圆形轮廓的粗细。

属性

Width: 设置长度

Height: 设置宽度

Fill: 设置内部填充颜色

Storke: 设置边框颜色

StorkeThickness: 设置边框宽度

Demo

代码如下:

<Window x:Class="WPFDemo.Line.Views.EllipseWindow"
        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="EllipseWindow" Height="450" Width="800">
    <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" >
        <Ellipse Width="200" Height="100" Fill="Orange" Stroke="Red" StrokeThickness="2">
        </Ellipse>

        <Ellipse Width="200" Height="200" Fill="Orange" Stroke="Red" StrokeThickness="2" Margin="50"></Ellipse>
    </StackPanel>
</Window>

效果如下:


http://www.kler.cn/a/460360.html

相关文章:

  • ==和===的区别,被坑的一天
  • 数据挖掘——聚类
  • 《计算机组成及汇编语言原理》阅读笔记:p177-p177
  • union的实际使用
  • word运行时错误‘-2147221164(80040154)’ 没有注册类的解决办法
  • 八大排序——直接插入排序
  • log4j2的Strategy、log4j2的DefaultRolloverStrategy、删除过期文件
  • 自己编写甘特图的绘制程序
  • golang 熔断限流降级
  • 商汤C++开发面试题及参考答案
  • 【postgresql 物化视图】自动刷新物化视图2种方法
  • order by语句执行顺序
  • Vue2/Vue3使用DataV
  • .net core 的数据库编程
  • swiftui开发页面加载发送请求初始化@State变量
  • flash-attention保姆级安装教程
  • 脚本方式 迁移 老GITLAB项目到新GITLAB
  • 前端vue+el-input实现输入框中文字高亮标红效果(学习自掘金博主文章)
  • 服务器系统维护与安全配置
  • 黑马商城:MybatisPlus
  • img上的title属性和alt属性的区别是什么?
  • Oracle 数据库 dmp文件从高版本导入低版本的问题处理
  • C++ 环境搭建 - 安装编译器、IDE选择
  • WebRTC音视频通话系统需求(项目预算)
  • ffmpeg 编译+ libx264
  • Golang 的AI 框架库