hello Experts
i m using Wpf data Grid When Ever it to be loaded it is to be Come With A blank Defaul Row. there is no such property like windows grid to disable it..how can i disable it
than ks in advance shashank
hello Experts
i m using Wpf data Grid When Ever it to be loaded it is to be Come With A blank Defaul Row. there is no such property like windows grid to disable it..how can i disable it
than ks in advance shashank
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" />