Just drop a button and a combobox inside a new WPF application
On the button click simply set the focus to the combobox with a comboBox1.Focus() (or anything else possible)
questions :
1- When setting focus from code (with focus()) the combobox never receive the focus. why?
2- When navigating with the Tab key the combobox receive the focus and display a kind of focus selector around the control? is there any way to do the same (a real focus) from code?
Thanks