我在 wpf 应用程序中有大约 20 个按钮。现在,当窗口大小很小时,一切看起来都很好,但是每当我最大化窗口大小时。窗口大小会增加,但它们都保持在它们的位置上,看起来很尴尬。
<Window x:Class="LINQ.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Linq Queries" Height="350" Width="525">
<Grid Margin="0,29,0,0">
<DataGrid x:Name="grid" AutoGenerateColumns="True" Margin="0,55,0,0"/>
<Button Content="Query1" HorizontalAlignment="Left" Margin="10,-27,0,0" VerticalAlignment="Top" Width="51" Click="Button_Click_1"/>