How to Get the SelectedValue of Combox inside an DataGridTemplateColumn in wpf Datagrid?
I have am DataGridTemplate Column with an Combox inside it.I want to get the selected value of an combox in开发者_StackOverflow an particular row when they cllick on the save button oputside the DataGrid.
That is not a very good approach since you cannot directly access rows or the controls that visualize them from the selection. I'd suggest you use events to signal that changes should be committed or something similar to that.
精彩评论