标签: c# wpf select focus cell
当我点击 datagrid 中的单元格时,我会在其周围出现一个黑框,并在文本后面突出显示蓝色。我怎么能用代码呢?
通过搜索,我得到了这个:
dataGrid.Focus(); dataGrid.CurrentCell = new DataGridCellInfo(dataGrid.Items[2], dataGrid.Columns[3]);
此代码会将黑框移动到第4列和第3行,但我不知道如何突出显示工作。