我的雇主给了我以下 wpf 布局。它利用了多个嵌套的堆栈面板。我正在尝试将位于堆栈面板内的数据网格与主窗口的四个角相距固定距离。并且每当网格包含由于父窗口大小而隐藏的数据时,它应该显示滚动条,如果不需要,滚动条必须消失。
我将数据网格和堆栈面板的宽度设置为自动,以便它填充宽度并使水平和垂直滚动条按我想要的方式运行。但是网格没有所需的高度。
但是当我尝试将数据网格的高度属性设置为自动时,水平和垂直滚动条都会消失,从而导致隐藏数据。我尝试将数据网格高度属性设置为固定大小并在调整窗口大小时更新它但滚动条仍然隐藏我该如何解决这个问题?
<UserControl x:Class="WpfApplication1.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="441" d:DesignWidth="300">
<Grid>
<StackPanel Margin="0" Name="stackPanel1">
<ListBox Height="100" Name="listBox1" Width="253" />
<Button Content="Button" Height="23" Name="button1" Width="256" Click="button1_Click" />
<StackPanel Name="stackPanel2">
<StackPanel Height="34" Name="stackPanel3" Width="249" />
<DataGrid AutoGenerateColumns="False" Name="dataGrid1" Height="282" />
</StackPanel>
</StackPanel>
</Grid>
</UserControl>
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:WpfApplication1" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="WpfApplication1.MainWindow"
Title="MainWindow" Height="502" Width="525" StateChanged="Window_StateChanged">
<Grid Margin="0">
<my:UserControl1 x:Name="userControl11" Loaded="userControl11_Loaded" />
</Grid>
</Window>