gpt4 book ai didi

c# - 如何绘制随 WPF 窗体调整大小的形状?

转载 作者:行者123 更新时间:2023-11-30 20:49:19 24 4
gpt4 key购买 nike

我是 WPF 的新手,想知道使用什么来获得如下图所示的形状: enter image description here

我还想知道这种设计是否可能会遵循表单的尺寸,即,如果调整了表单的大小,设计也会随之调整。

提前谢谢!

Windows 8.1、Visual Studio 2013、C#、WPF 应用程序

最佳答案

要绘制形状,您可以使用 Path .路径可以绘制由其数据属性指定的任何类型的形状。填充和描边定义形状的颜色。

要“遵循窗体的尺寸”,您可以将 Stretch 属性设置为“Uniform”。然后形状将相应地缩放到窗口。

这是一个例子:

<Window x:Class="WpfApplication57.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="600" Width="800">
<Grid>
<Path Data="F1 M 0 0 800 0 800 30 200 30 150 60 0 60 0 0"
Fill="Yellow"
Stretch="Uniform"
Stroke="Black"
StrokeThickness="4"
VerticalAlignment="Top" />
</Grid>
</Window>

快乐编码:-)

最好的问候,卡斯帕·科舍伊

关于c# - 如何绘制随 WPF 窗体调整大小的形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23806789/

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