1

如何从 WPF 应用程序中的数据网格中获取选定的范围值?

这是我的应用程序的屏幕截图。

到目前为止,这是我的代码:

private void excel_grid_SelectedCellsChanged(object sender, System.Windows.Controls.SelectedCellsChangedEventArgs e)
    {
        System.Windows.Controls.DataGrid dataGrid = sender as System.Windows.Controls.DataGrid;
        IList<System.Windows.Controls.DataGridCellInfo> ne = dataGrid.SelectedCells;

    }
4

0 回答 0