This question is locked. New answers and comments are not allowed.
I have a problem with set style for RadComboBoxItem. How can I apply a style with fontsize, font family, foreground, so on .. ?
I tried with
It just applies for ItemContainer but not for SelectedItem
Please help me
Thanks
<telerik:RadComboBox Margin="2" x:Name="DistanceComboBox" VerticalAlignment="Center" Width="50" SelectedIndex="0"> <telerik:RadComboBox.Items> <telerik:RadComboBoxItem>5</telerik:RadComboBoxItem> <telerik:RadComboBoxItem>10</telerik:RadComboBoxItem> <telerik:RadComboBoxItem>20</telerik:RadComboBoxItem> <telerik:RadComboBoxItem>30</telerik:RadComboBoxItem> <telerik:RadComboBoxItem>50</telerik:RadComboBoxItem> <telerik:RadComboBoxItem>75</telerik:RadComboBoxItem> </telerik:RadComboBox.Items></telerik:RadComboBox>I tried with
<telerik:RadComboBoxItem Style="{StaticResource MyStyle}">5</telerik:RadComboBoxItem>Please help me
Thanks