In my wpf Application i'm using a combobox. Setting a background Image for that combobox works in Windows 7 but not in Windows 10.
<ComboBox x:Name="MenubarTicketDet" Width="195" ItemsSource="{Binding}" SelectionChanged="_processticketcombobox" Foreground="Transparent" HorizontalAlignment="Center" BorderThickness="0" Height="30" Margin="46,4,16,331" BorderBrush="Transparent" IsHitTestVisible="True">
<ComboBox.Resources>
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}">0</sys:Double>
</ComboBox.Resources>
<!--</ComboBox>-->
<ComboBox.Background>
<ImageBrush ImageSource="Images/Newmenubarimages/list_box.png" Stretch="Uniform"/>
</ComboBox.Background>
<ComboBox.ItemContainerStyle>
<Style TargetType="{x:Type ComboBoxItem}">
<Setter Property="Padding" Value="5"/>
<Setter Property="Width" Value="200"/>
<Setter Property="FontFamily" Value="Courier New"/>
<Setter Property="Foreground" Value="Black"/>
</Style>
</ComboBox.ItemContainerStyle>
</ComboBox>