Hi ! I have a design question:
If you had to make a WPF Combobox with search support, (= combobox that shows a popup with some Buttons, Search TextBox, List.. etc the selected item feed to the default's ComboBox TextBox.) What would you do?
- Write a custom control (diretly inheriting from
System.Windows.Control) - Write a custom control inheritnig from
Selector/ComboBox - Make a
UserControl - Use a default ComboBox with a 'special Template' (
CotnrolTemplate/Style?) extended to search functionality - Use a default ComboBox with style and attached
EventHandlers..
Thank you guys !