Silverlight(7) - 2.0图形之Ellipse, Line, Path, Polygon, Polyline, Rectangle
2008-11-14 11:50:42 来源:WEB开发网4、Polygon.xaml
<UserControl x:Class="Silverlight20.Shape.Polygon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<!--多边形,闭合图形,起点与终点自动相连-->
<!--
Points - 构造路径所使用的点
空格分隔点坐标,逗号分隔X轴和Y轴坐标
-->
<Polygon Points="0,0 100,0 300,100 200,100 100,200" Stroke="Red" StrokeThickness="6" Fill="Yellow" />
</StackPanel>
</UserControl>
5、Polyline.xaml
<UserControl x:Class="Silverlight20.Shape.Polyline"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<!--非闭合图形,一串连接起来的线,起点与终点不会自动相连-->
<!--
Points - 构造路径所使用的点
空格分隔点坐标,逗号分隔X轴和Y轴坐标
-->
<Polyline Points="0,0 100,0 300,100 200,100 100,200" Stroke="Red" StrokeThickness="6" Fill="Yellow" />
</StackPanel>
</UserControl>
6、Rectangle.xaml
<UserControl x:Class="Silverlight20.Shape.Rectangle"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<!--矩形-->
<!--
RadiusX - 边角圆弧的X轴半径
RadiusY - 边角圆弧的Y轴半径
-->
<Rectangle Width="200" Height="120" Stroke="Black" StrokeThickness="6" RadiusX="10" RadiusY="30" />
</StackPanel>
</UserControl>
OK
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
更多精彩
赞助商链接