Maybe the obvious answer is that I need to use a UserControl but I’d like to know if this is possible.
I want to customize a ComboBox to display an additional button. I’ve been able to create a template that renders the button next to the built-in drop down button. Now, how can I wire the Click event or access any of its properties (for example IsEnabled).
You don’t need a UserControl, but you do have to inherit from ComboBox to extend it. You would write something like this: