[Solved] How to use multiple fonts for each combobox item in WPF?
You can implement this easily by using data binding with item template inside comboBox as following: First of all you need to create item template for your ComboBox, which can be done in many ways, Iam going to use the simplest way as following: <ComboBox Width=”200″ Height=”35″ VerticalContentAlignment=”Center” ItemsSource=”{Binding Items}”> <ComboBox.ItemTemplate> <DataTemplate DataType=”{x:Type local:ItemViewModel}”> <StackPanel … Read more