Silverlight(7) - 2.0图形之Ellipse, Line, Path, Polygon, Polyline, Rectangle
2008-11-14 11:50:42 来源:WEB开发网本文源代码下载地址:
http://flashview.ddvip.com/2008_11/Silverlight.rar
在线DEMO
http://www.cnblogs.com/webabcd/archive/2008/10/09/1307486.html
示例
1、Ellipse.xaml
<UserControl x:Class="Silverlight20.Shape.Ellipse"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<!--椭圆-->
<!--
Width - 椭圆的宽
Height - 椭圆的高
Stroke - 边框
StrokeThickness - 边框尺寸
Fill - 填充
-->
<Ellipse Stroke="Red" Fill="Yellow" StrokeThickness="6" Width="100" Height="50"></Ellipse>
</StackPanel>
</UserControl>
2、Line.xaml
<UserControl x:Class="Silverlight20.Shape.Line"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<!--线-->
<!--
X1 - 起点的 X 坐标
Y1 - 起点的 Y 坐标
X2 - 终点的 X 坐标
Y2 - 终点的 Y 坐标
注:
Line无填充,也就是Line的Fill属性无效
坐标以左上角为原点,原点右侧/下侧为正方向
-->
<Line X1="0" Y1="100" X2="200" Y2="300" Stroke="Black" StrokeThickness="6" />
</StackPanel>
</UserControl>
Tags:Silverlight 图形 Ellipse
编辑录入:爽爽 [复制链接] [打 印]- ››silverlight全屏显示图片
- ››Silverlight MVVM 模式(一) 切近实战
- ››图形化管理MYSQL数据库的工具 SQLyog 8.6.2 发布
- ››Silverlight for Windows Phone 7开发系列(1):...
- ››Silverlight for Windows Phone 7开发系列(2):...
- ››Silverlight for Windows Phone 7开发系列(3):...
- ››Silverlight for Windows Phone 7开发系列(4):...
- ››Silverlight for Symbian
- ››图形超链接类
- ››Silverlight3系列(四)数据绑定 Data Binding 1
- ››silverlight2 游戏 1 你能坚持多少秒
- ››Silverlight开发实践--PicZoomShow
- 中查找“Silverlight(7) - 2.0图形之Ellipse, Line, Path, Polygon, Polyline, Rectangle”更多相关内容
- 中查找“Silverlight(7) - 2.0图形之Ellipse, Line, Path, Polygon, Polyline, Rectangle”更多相关内容
- 上一篇:Silverlight(8) - 2.0图形之基类System.Windows.Shapes.Shape
- 下一篇:Silverlight(6) - 2.0控件之ScrollViewer, Slider, StackPanel, TabControl, TextBlock, TextBox, ToggleButton
更多精彩
赞助商链接