Posted 12 years ago by Mick
Version: 11.2.0554
Avatar

Is there a way to get the new row that's usually at the bottom of the WPF Datagrid at the top?

Comments (1)

Answer - Posted 12 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar

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;


Actipro Software Support

The latest build of this product (v24.1.1) was released 1 month ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.