Populate an ObservableCollection from a List so it can be set as an ItemSorce for a datagrid control
I have a datagrid where I want to display a list of database locations found on the computer and their owner. I try to to this by setting the ItemSource
of the DataGrid to an ObservableCollection
. I then execute a method that obtains a list of all databases. I then execute another method try and split and build the ObservablCollection
and that is where I seem to get my errors.