0

I´m trying to get the exact shape or path from the following image.

I was using Visual Studio but it still makes me difficult to write point by point.

I guess there´s another way or software to draw this better, and a little hand about how would be those points in xaml.

Thanks in advance!

enter image description here

4

1 回答 1

1

为了回答你问题的第一部分,这里有一个例子(你可以使用 Stroke & Fill Color 显然得到你想要的。)

WPF 示例:

<Path StrokeThickness="1.0" Stroke="#fffbaf3f" StrokeMiterLimit="1.0" Fill="#fff7931d" Data="F1 M 0.500,0.500 L 0.500,30.500 L 23.340,30.500 L 29.750,40.000 L 36.750,30.500 L 120.500,30.500 L 120.500,0.500 L 0.500,0.500 Z"/>

至于您问题的第二部分,我个人主要使用 Adob​​e Illustrator 和 Mike Swanson 制作的 XAML Exporter 插件(http://www.mikeswanson.com/XAMLExport

或者,我也经常将 Microsoft Expression Blend 用于各种相关的事情。希望这可以帮助。

于 2012-07-11T01:08:50.640 回答