Hi, all any time in this post would be
I am actually new with this. Here is my template column
<data:DataGridTemplateColumn Header="destination">
<data:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ComboBox x:Name="cbo" DisplayMemberPath="Name" ItemsSource="{Binding Country}"/>
</DataTemplate>
</data:DataGridTemplateColumn.CellTemplate>
</data:DataGridTemplateColumn>
ok, now i have a datagrid where first column gives ID, and second column is this Combobox [for each row]. Suppose the user choose one of the item in combobox and then select the row in the datagrid, now on selectionChangedEvent in datagrid,
1. how would i actually findout the combobox in the selected row,
so i can get the item selected in combobox. i hope the code solution is simple
private void dataGrid_SelectionChanged(object sender,SelectionChangedEventArgs e)
{
//what is it that i have to do here to get the combo of the selected row
}
I couldnot find any article where they actually find the item selected in combobox when a row is selected in DataGrid.
Thanks. some code base solution would help 
newbiee