I am using a WPF Data Grid. Whenever it is loaded there is a blank default row. How can I disable the default row from appearing like you can in the Windows Forms grid.
How to Remove Default Row In Wpf data Grid
3537
21-Sep-2013
Sumit Kesarwani
23-Sep-2013This is the row for new entries. If you don't want let the user create new entries or if you handle this from code, e.g. with a add-button, disable the CanUserAddRows-option.
<DataGrid CanUserAddRows="False" />