首页 > 代码库 > WPF Path
WPF Path
在WPF中,自定义控件,经常用到Path.
Path可以绘制多边形、边框、线条、简单的图标等。
1、Xaml中用法:
<Path Stroke="DodgerBlue" StrokeThickness="1" Data="M50,50 L100,200 L200,50 L50,50"></Path>
2、后台中用法:
Path path=new Path(); path.Stroke = Brushes.DodgerBlue; path.StrokeThickness = 1; var aaa = new PathSegmentCollection(); aaa.Add(new LineSegment(new Point(200,20),true)); path.Data=new PathGeometry() { Figures = new PathFigureCollection() { new PathFigure() { IsClosed = true, StartPoint = new Point(10,10), Segments = aaa } } };
WPF Path
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。