I'll start out by saying that I'm trying to follow MVVM as strictly as I can, so I'd like to do the following using Binding only.
I have multiple DataGrids showing different ObservableCollections of the same data type. How can I define once which columns, and their Binding paths, will show on all of the DataGrids?
It doesn't appear that I can set a Style for DataGrid.Column. The goal is that all of the DataGrids show the same DataGrid.Column information, but with only having to maintain one copy of it.
Any ideas?