获取所需的DataGrid行

时间:2019-04-28 18:21:45

标签: c# wpf datagrid

我在项目中使用DataGrid。除了其中之一是组合框之外,所有列都是文本块

private void LevelsBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        ComboBox comboBox = (ComboBox)sender;
        ComboBoxItem selectedItem = (ComboBoxItem)comboBox.SelectedItem;
        string x = selectedItem.Content.ToString();
    }

x是组合框的值。现在,我需要在原始位置选择组合框的值。

0 个答案:

没有答案