I'm having a rough time deleting a column of data in my datagrid and having that deletion propagate to my data source. I've implemented the solution for binding data found in this SO thread, and am using this code to delete my column:
vizDataGrid.Columns.Remove(cell.Column);
What's happening is that the UI shows the column being deleted, but when I go add a column, the column I thought I had just deleted appears (or at least the data that was inside that column does). Any help would be greatly appreciated, I've been at this for days (WinForms was so much simpler!). Thanks!