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?