设置ComboBox项目高度

时间:2016-11-29 16:10:39

标签: c# wpf

我正在做一个触摸应用程序,但我的ComboBox的项目非常小。 有没有办法增加它的大小? 我还没有找到任何办法。 感谢。

1 个答案:

答案 0 :(得分:9)

这样做,只需在这些设置器中给它你想要的高度和/或宽度。

 <ComboBox Width="200"
           Height="50"
           ItemsSource="{Binding MyList}">
        <ComboBox.ItemContainerStyle>
            <Style TargetType="ComboBoxItem">
                <Setter Property="Height" Value="50" />
                <Setter Property="Width" Value="50" />
            </Style>
        </ComboBox.ItemContainerStyle>
  </ComboBox>