-1

我正在开发 WPF 桌面应用程序。MainWindow 是一个最大化的窗口,它有一个带有几个菜单项的菜单。我想在窗口中心的组框中显示几个控件。此组合框包含取决于单击的菜单项的控件。所以组框的大小不应该是静态的。这可能吗?

谢谢

4

1 回答 1

0

尝试像这样定义您的 XAML

<Window x:Class="WpfApplication1.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" WindowState="Maximized">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="auto"/>
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>
    <GroupBox Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center">
        <StackPanel>
            <Button Content="Click"  Height="30" Width="160"/>
            <Button Content="Click"  Height="30" Width="160"/>
            <!--<Button Content="Click"  Height="30" Width="160"/>-->
        </StackPanel>
    </GroupBox>        
    <Grid Grid.Row="1">
        <TextBlock  FontSize="26" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center" Text="MainUserWork Panel"/>
    </Grid>
</Grid>

于 2013-10-30T06:06:29.040 回答