I\'m constructing a datagrid in Windows Presentation Foundation, and I have a problem. When a user double-clicks on a cell in my datagrid, the cell goes into edit mode. I wa
If you want to disable editing the entire grid, you can set IsReadOnly to true on the grid.
If you want to disable user to add new rows, you set the property CanUserAddRows="False"
Further more you can set IsReadOnly on individual columns to disable editing.