wpf datagrid 怎么获取选中单元格所在行的某列的值

wpf datagrid 如何获取选中单元格所在行的某列的值
问题如题。。就是我编辑某个单元格 然后编辑好了后,再获取编辑单元格所在行的某个列的值。把这2个值合在一起组成一个数组。 大体这样子。有人知道怎么获取值么?

------解决方案--------------------
        private void dataGrid1_SelectedCellsChanged(object sender, SelectedCellsChangedEventArgs e)
        {
            DataGrid dg = sender as DataGrid;
            var cell = dg.CurrentCell;
            DataRowView item = cell.Item as DataRowView;
            if (item != null) {
                this.textBox1.Text = item[cell.Column.DisplayIndex].ToString();
            }
        }


跟这里的要求差不多http://bbs.csdn.net/topics/390617296