I have the following window in my application:

The list is declared as: IList <Supplier> _editList ; and the datagrid is entered via: dataGridVendors.ItemsSource = _editList;
The Create button creates a new provider and adds the _editList to the provider. Supplier Provider = New Vendor (); _editList.Add (provider);
Unfortunately ... the new provider does not appear in the datagrid ........ any ideas on how to make the new item?
Regards, Sebastian
source
share