|
|||
|
No,
Mirkom.Invist.Client.WpfWindowPresenter is not the solution. How have you bind the data to your grid? Your Collection must be editable. If you bind the result of direct to the result of the loader, the list is not editable. Try to bind your grid to a editable list like List<>. Code:
List<MyEntity> entities = new List<MyEntity>( myLoader.LoadEntities()); myGrid.DataSource = entities;
__________________
Professional .NET development and architecture |
|
|||
|
Hi Mirko,
Thanx for this advice, that works fine! ![]() |