
Is there a way to get the new row that's usually at the bottom of the WPF Datagrid at the top?
Is there a way to get the new row that's usually at the bottom of the WPF Datagrid at the top?
You would have to use something like described here, which shows:
var view = CollectionView.GetDefaultCollectionView(myList) as IEditableCollectionView;
if (view != null)
view.NewItemPlaceholderPosition = NewItemPlaceholderPosition.AtBeginning;
Please log in to a validated account to post comments.