I did this
<UserControl.Resources>
<Style x:Key="ComboBoxStyle" TargetType="{x:Type Input:RadComboBox}">
<Setter Property="Width" Value="100"/>
<Setter Property="Margin" Value="5,2"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="IsEditable" Value="False"/>
<Setter Property="IsReadOnly" Value="True"/>
</Style>
</UserControl.Resources>
but the style is not reflectes on the ComboBox. is this not the correct way to style the Combobox???
<UserControl.Resources>
<Style x:Key="ComboBoxStyle" TargetType="{x:Type Input:RadComboBox}">
<Setter Property="Width" Value="100"/>
<Setter Property="Margin" Value="5,2"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="IsEditable" Value="False"/>
<Setter Property="IsReadOnly" Value="True"/>
</Style>
</UserControl.Resources>
but the style is not reflectes on the ComboBox. is this not the correct way to style the Combobox???