tags:

views:

1828

answers:

2

Basically my problem stems from a desire to have the textbox portion be white, and the drop down to be black. When I set the text to white, the drop down appears as I want it, but the text in the textbox itself is hardly readable. Setting the Foreground to black makes the drop down unreadable.

Is there a good way to handle this? I am still learning WPF.

A: 

Your best bet is to edit a copy of the template of the ComboBox and set the two of them independently.

sixlettervariables
+2  A: 

Edit the ControlTemplate, You will see a TextBlock and another PopUp which again has a set of controls. Have a different ForeGround/Background for this TextBox,

Jobi Joy