如何在 Silverlight 中从半径和内角绘制圆弧
在 silverlight 3 项目中,我必须以编程方式绘制圆弧,并且我有圆的半径和圆弧的内角。您能指导我一些相关文章吗?
感谢期待!
哈里斯
In a silverlight 3 project I have to draw an arc programatically and I have radius of circle and inner angle of the arc. Could you please direct me to some related articles.
Thanks in anticipation!
Haris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这似乎是一篇关于动态构建弧的好文章 http://codingbandit.com/Blog/blog/dynamically-creating-path-data-in-silverlight-2/
要计算点,请使用以下公式。
你有圆的半径 r 和角度 θ。这应该建立点系列。
This seems to be a good article on building arcs dynamically http://codingbandit.com/Blog/blog/dynamically-creating-path-data-in-silverlight-2/
To calculate the points the following formula is used.
you have the radius of the circle r and also the angle θ. That should build up the point series.
您将需要查看 silverlight 中的路径,特别是 ArcSegments 部分。
ArcSegment 文档
MSDN 路径几何示例
You're going to want to look at Paths in silverlight and specifically at the ArcSegments section.
ArcSegment Documentation
MSDN Path Geometry Samples
使用Expression Blend 4。您可以使用
Arc
。示例:
With Expression Blend 4. You could use
Arc
.Example: