我需要这种边框(只有红线)。我需要得到完整的左侧和两侧的一半。例如灰色边。
现在我有下一个代码:
hostNetwork: true
我该怎么做?
我只能使用System.Windows.Shapes.Path和c#代码。我没有修改xaml页面。
例如我有这个矩形。
如果我减少上线,那么内部(填充)也会减少。
在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);
感谢。