如何在内容不混乱的情况下最大化 WPF 窗口?
我想将其设计为最大化,并且内容适合我设计的表格?
我阅读了有关使用 * 设置高度和宽度设置的信息,但我不太确定如何应用它,因为我已经尝试过,但它似乎不起作用。
下面答案中的代码有效,但我如何将它用于我自己的应用程序???是什么使按钮和标签等自动调整大小?
您可以通过使用Grid
( msdn )在您的应用程序中实现此功能
这是一个简单的例子:
<Window x:Class="AppMaximize.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="30" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button Content="Row1Col1" />
<Button Content="Row1Col1" Grid.Row="3" Grid.Column="1" />
<Label Background="Red" Grid.Row="1" />
<Label Background="Green" Grid.Row="1" Grid.Column="1" />
<Label Background="Yellow" Grid.Row="2" />
<Label Background="Blue" Grid.Row="2" Grid.Column="1" />
</Grid>
</Window>