0

我的雇主给了我以下 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>
4

2 回答 2

3

当您将项目放入垂直StackPanel时,他们喜欢假装它们有无限的垂直空间。切换到在您的 上指定行Grid,并将您DataGrid的行放在这些行之一中。当它在 aGrid中时,它知道它有多少可用空间并且应该适当地显示滚动条。

于 2012-10-31T22:52:06.293 回答
2

我不明白 StackPanel 里面的所有这些 StackPanel 的东西。您应该简单地使用 Grid 进行布局:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="Auto"/>
        <RowDefinition/>
    </Grid.RowDefinitions>
    <ListBox Grid.Row="0" Height="100" Name="listBox1" Width="253" />
    <Button Grid.Row="1" Content="Button" Height="23" Name="button1" Width="256" />
    <StackPanel Grid.Row="2" Height="34" Name="stackPanel3" Width="249" />
    <DataGrid Grid.Row="3" AutoGenerateColumns="False" Name="dataGrid1" />
</Grid>

并且有一个空的 StackPanelstackPanel3作为空间持有者似乎很尴尬。这就是 WPF 元素具有Margin属性的原因。

于 2012-10-31T23:03:16.547 回答