views:

31

answers:

1

I have a Datagrid with a DataGridTextColumn. This is populated by using databinding, and can be edited by users.

Is it possible to add autocomplete to the DataGridTextColumn ?

+1  A: 

Sadly, no. However, if you use a DataGridTemplateColumn - you could use the AutoCompleteBox from the WPF Toolkit in the Template for the Column.

Goblin