I've been working with the DataGrid
in WPF with great results. However, it is now giving me unexpected results after some changes.
BEFORE: I had a DataGrid
on a page. The DataContext
was set to a List
object that was created from a class that existed within the same WPF project. The empty row at the bottom of the DataGrid
, to add new records, is visible
AFTER: Same page, same DataGrid
. But now the List object is coming from a Class Library project within the same solution. EXACT same code, but it's now been extracted into a class library. The empty row at the bottom of the datagrid, to add new records is not visible.
WTF?