gpt4 book ai didi

wpf - WPF矩形绘制边框

转载 作者:行者123 更新时间:2023-12-03 13:31:57 25 4
gpt4 key购买 nike

我需要在网格单元格中绘制虚线边框。我用Rectangle弄清楚了,但是我只需要显示矩形的底边框而没有左,右或顶!

    Rectangle r = new Rectangle();
r.StrokeThickness = 1;
r.Stroke = Brushes.Black;
r.StrokeDashArray = new DoubleCollection() { 5 };
r.StrokeDashCap = PenLineCap.Flat;


谢谢!!

最佳答案

如果将“高度”设置为1,然后将其垂直对齐到底部,则看起来可以使用“矩形”来完成此操作,如下所示:

<Rectangle Height="1" Stroke="Red" StrokeDashArray="1 2" VerticalAlignment="Bottom" />

关于wpf - WPF矩形绘制边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6782905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com