0

在我的 WPF 应用程序中,我有一个水平 StackPanel,我试图将其用作工具栏。在这个面板中,我有按钮、组合框和文本框。由于按钮最高,因此 StackPanel 采用它们的高度。组合框和文本框也是如此。但我希望他们保持原样,否则他们看起来很难看。我怎样才能防止它们扩大并填满所有可用空间?我试图将它们的高度设置为 Auto 或明确的大小,但这没有帮助。我还尝试将 StackPanel 替换为 Grid,但这也无济于事。我究竟做错了什么?

      <StackPanel Orientation="Horizontal" Margin="3, 10">
        <ComboBox x:Name="Agencies" DisplayMemberPath="Name" SelectedValuePath="Value" 
                  SelectedItem="{Binding SelectedAgency}"
                  Height="50"  MinWidth="100" Margin="3,0"/>
        <Button x:Name="UploadFile"
            MinWidth="70"
            Margin="2"
            HorizontalAlignment="Center"
            VerticalAlignment="Center" 
            attachProperties:ButtonIcon.Icon="Resources/Images/add.png"
            Content="Upload File"  IsEnabled="{Binding EnrollmentFiles.Any}"                           
            Style="{StaticResource ImageButtonStyle}" />          
         <Button x:Name="EnrollmentDelete"
            MinWidth="70"
            Margin="2"
            HorizontalAlignment="Center"
            VerticalAlignment="Center" 
            attachProperties:ButtonIcon.Icon="Resources/Images/Remove.png"
            Content="Delete Enrollment"  IsEnabled="{Binding EnrollmentFiles.Any}"                           
            Style="{StaticResource ImageButtonStyle}" />

        <TextBox x:Name="WorkSheetName" />
    </StackPanel>
4

1 回答 1

1

你需要VerticalAlignment在你的ComboBoxTextBox上设置类似的东西Center。默认情况下,它设置为Stretch

<TextBox VerticalAlignment="Center" ... />
于 2012-08-02T18:02:49.380 回答