基本信息
源码名称:WPF 画图示例 以及多个图形重复利用示例源码下载
源码大小:0.29M
文件格式:.zip
开发语言:C#
更新时间:2013-10-03
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Drawing Shapes 绘制各种图形示例
Drawing Shapes 绘制各种图形示例
<!--
// Copyright © Microsoft Corporation. All Rights Reserved.
// This code released under the terms of the
// Microsoft Public License (MS-PL, http://opensource.org/licenses/ms-pl.html.)
-->
<Window x:Class="DrawingWithShapeElements.SampleViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Drawing with Shapes">
<DockPanel>
<DockPanel.Background>
<ImageBrush ImageSource="sampleImages\rippled_metal_smaller.png" Stretch="None"
TileMode="Tile" Opacity="0.1" />
</DockPanel.Background>
<TabControl Background="White">
<TabItem Header="Ellipse">
<Frame Background="White" Source="EllipseExample.xaml" />
</TabItem>
<TabItem Header="FillRule">
<Frame Background="White" Source="FillRuleExample.xaml" />
</TabItem>
<TabItem Header="Line Caps and Line Joins">
<Frame Background="White" Source="LineCapsAndJoinsExample.xaml" />
</TabItem>
<TabItem Header="Line">
<Frame Background="White" Source="LineExample.xaml" />
</TabItem>
<TabItem Header="MiterLimit">
<Frame Background="White" Source="MiterLimitExample.xaml" />
</TabItem>
<TabItem Header="Path">
<Frame Background="White" Source="PathExample.xaml" />
</TabItem>
<TabItem Header="Polygon">
<Frame Background="White" Source="PolygonExample.xaml" />
</TabItem>
<TabItem Header="Polyline">
<Frame Background="White" Source="PolylineExample.xaml" />
</TabItem>
<TabItem Header="Rectangle">
<Frame Background="White" Source="RectangleExample.xaml" />
</TabItem>
<TabItem Header="Shape Types">
<Frame Background="White" Source="ShapeTypes.xaml" />
</TabItem>
<TabItem Header="Stretch">
<Frame Background="White" Source="StretchExample.xaml" />
</TabItem>
</TabControl>
</DockPanel>
</Window>