我在项目中使用DataGrid。除了其中之一是组合框之外,所有列都是文本块
private void LevelsBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
ComboBox comboBox = (ComboBox)sender;
ComboBoxItem selectedItem = (ComboBoxItem)comboBox.SelectedItem;
string x = selectedItem.Content.ToString();
}
x是组合框的值。现在,我需要在原始位置选择组合框的值。