System.Windows.Shapes.Path笔划

时间:2018-02-14 13:19:16

标签: c# xaml

我需要这种边框(只有红线)。我需要得到完整的左侧和两侧的一半。例如灰色边。

enter image description here

现在我有下一个代码:

hostNetwork: true

我该怎么做?

我只能使用System.Windows.Shapes.Path和c#代码。我没有修改xaml页面。

例如我有这个矩形。

enter image description here

如果我减少上线,那么内部(填充)也会减少。

svg editor(视图 - >来源...)中编码此矩形:

var f = new System.Windows.Shapes.Path();
f.Height = 40;
f.Width = 60;
f.Stroke = new SolidColorBrush(Colors.Black);
f.Fill = new SolidColorBrush(Colors.Red);

感谢。

0 个答案:

没有答案