I want to use the DataGridComboBoxColumn as a autocomplete combobox.
I’ve got it partially working. When the Row is in EditMode I can type text in the ComboBox, also in ViewMode the control returns the text. Only how to get the Label (in template) to EditMode by mouse doubleclick?
Up front, I don’t want to use the DataGridTemplateColumn control because it just doesn’t handle keyboard and mouse entry like the DataGridComboBoxColumn does (tabs, arrows, edit/view mode/ double click etc..).
It looks like:

I fixed it adding a behavior to the
TextBoxto get a link to the parent DataGrid then setting the Row into Edit Mode by callingBeginEdit().The solution I used:
View
Model
ViewModel
Behavior
Helper (to find DataGrid)