如何绘制一个具有不同边框的矩形

发布于 2024-11-08 14:09:51 字数 250 浏览 0 评论 0原文

我想要一个在 XAML 中测量 left=50、top=20、rigth=50 和 bottom=10 的矩形,

比如

谢谢类似

更新:

我想创建一个具有该形状的网格,我说网格是因为该控件应该包含其他控件,例如图像,并且该控件应该随着增长或收缩形式。

i want a rectangle with this measures left=50, top=20, rigth=50 and bottom=10 in XAML

Something like

thanksSomething like

UPDATE:

i want to create a Grid with that shape, i said grid because the control should contain other controls like an image and this control should grow or shrink with the form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白日梦 2024-11-15 14:09:51

您显示的形状不是矩形。

您需要一个路径来执行此操作:

<Path Data="M0,0 L20,0 L10,50 L0,50 z"
      Fill="White" 
      Height="50" 
      Stroke="Black"
      Width="20"/>

The Shape you are showing is not a rectangle.

You'll need a Path to do this:

<Path Data="M0,0 L20,0 L10,50 L0,50 z"
      Fill="White" 
      Height="50" 
      Stroke="Black"
      Width="20"/>
嗼ふ静 2024-11-15 14:09:51

您可以使用边框来做到这一点:

<Border BorderBrush="Blue" BorderThickness="50 20 50 10"/>

You can do this with a Border:

<Border BorderBrush="Blue" BorderThickness="50 20 50 10"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文