Hi,
I'm would like to have a control with the ComboBox-like behaviour - means popup to select something from existing items and a host for different editable controls. My first idea was to change the ControlTemplate of the ComboBox. Unfortunatelly the hosted control is of TextBox-type and the ComboBox control needs this element with "PART_ContentHost" name.
I need a solution were different (own) controls like "DateTimePicker" or "GPSCoordinatePicker" could be placed in the host control.
The popup will be bound the the list of possible values for each of these controls (e.g. like '#12/22/13 12:33:03#). If the user select something in the popup the hosted control will parse th string to get the own value. If the popup is empty the user has to define the first value using the standard functionality of the hosted control. LostFocus event should get the actual value of the hosted control and add to the popup StringCollection.
Any help or comments are appreciated!
CQ54