Search code examples
wpfdatagridselectioncell

How do I select a single cell in a WPF datagrid?


When I click a cell in a WPF datagrid, the whole row is selected, and when I press Ctrl + C to copy the content, the whole row i copied...

How do I select and copy the content of a single cell?


Solution

  • Use SelectionUnit Property of Datagrid. For example:

    dataGridView1.SelectionUnit = DataGridSelectionUnit.Cell;
    

    Where unit can be Cell, CellOrRowHeader or FullRow.