I am developing an application in WPF using the PRISM framework in the modularity concept. So I have different modules each module have one DataGrid view. I need to have one common module that is a common view. That common view contains one Data Grid View. And that should be referred in all modules if need.
Sample Description Picture:
If anyone implemented this concept, please help me to let me know.
[Edit] Here common view is a WPF UserControl. I Have 5 master tables like 1.GroupMaster 2.Categories 3.Location 4.Product 5.Customer.
Each table have a common column field "Name".
So instead of creating DataGrid View control for each form(WPF UserControl), I want to create a WPF UserControl. And view it in another UserControl like GroupMaster or Categories.
When I double click that "Name", that corresponding Model class should be called to edit.
Actually I using Prism Framework with RegionManager to control the WPF UserControl to show it in a MainRegion. But I want to know about the BaseClass Creation and How to pass the Model Class?
Thank you