博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF Path和图形
阅读量:5300 次
发布时间:2019-06-14

本文共 828 字,大约阅读时间需要 2 分钟。

<Window x:Class="GeometryDemo.MainWindow"

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="876.866" Width="686.194">
<Window.Resources>
<GeometryGroup x:Key="Geometry">
<EllipseGeometry Center="100,100" RadiusX="50" RadiusY="20"></EllipseGeometry>
<RectangleGeometry Rect="100,100 120,120" ></RectangleGeometry>
</GeometryGroup>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Path Stroke="Green" Fill="Yellow" Data="{StaticResource Geometry}">
</Path>
<Path Grid.Row="1" Stroke="Green" Fill="Red" Data="{StaticResource Geometry}">

</Path>

</Grid>

</Window>

转载于:https://www.cnblogs.com/dxmfans/p/9605893.html

你可能感兴趣的文章
Node 中异常收集与监控
查看>>
二丶Python字符串1
查看>>
七丶Python字典
查看>>
一丶Python简介
查看>>
Excel-信息函数&数组公式
查看>>
Excel-基本操作
查看>>
面对问题,如何去分析?(分析套路)
查看>>
Excel-逻辑函数
查看>>
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
BZOJ1208[HNOI2004]宠物收养场——treap
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
艰难中前行
查看>>
[pytorch学习]1.pytorch ubuntu安装
查看>>
阿里云CentOS 安装配置ASPNET Core
查看>>
repeater 分页显示数据
查看>>
HDU-3666 THE MATRIX PROBLEM
查看>>
鼠标悬停放大图片 - 漂亮
查看>>
【转载】博士后了
查看>>