I am using a WPFData Grid. Whenever it is loaded there is a
blank defaultrow. How can I disable the default row from appearing like you
can in the WindowsForms grid.
This 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" />
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
This 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" />