How do I when the user clicks a cell in the DataGrid, the entire row is selected instead 开发者_JAVA百科of just the cell is selected.
Use following code on datagrid1_CurrentCellChanged
datagrid1.Select(this.datagrid1.CurrentRowIndex);
How do I when the user clicks a cell in the DataGrid, the entire row is selected instead 开发者_JAVA百科of just the cell is selected.
Use following code on datagrid1_CurrentCellChanged
datagrid1.Select(this.datagrid1.CurrentRowIndex);
精彩评论