<ComboBox Height="25" ItemTemplate="{StaticResource CBItem}"/>
Or better, also create a style:
<Style x:Key="cmbStyle" TargetType="ComboBox"> <Setter Property="ItemTemplate" Value="{StaticResource CBItem}" /> <Setter Property="Height" Value="25"/> </Style>
and then:
<ComboBox Style="{StaticResource cmbStyle}"/>
Or, if all Comboboxes on the page should have this style:
<Style TargetType="ComboBox"> <Setter Property="ItemTemplate" Value="{StaticResource CBItem}" /> <Setter Property="Height" Value="25"/> </Style>
and then:
<ComboBox />
source share