c# - Attach wpf view dll to existing wpf exe -
i have wpf executable , wish make provisions it, later, outside might modify or add window or page using dll totally separate solution.
for short, wish make wpf windows or pages pluggable. how do this?
prism's support modular, on-demand-loading of modules , other parts of application, in it's core.
you can use mef framework make pluggable modules (windows , pages), it's integrated prism.
you can find examples , more information in following resources:
http://www.codeproject.com/articles/188054/an-introduction-to-managed-extensibility-framework
http://www.codeproject.com/articles/37579/managed-extensibility-framework-part-2
http://www.codeproject.com/articles/432069/simple-mef-application-for-beginners
http://www.codeproject.com/articles/232868/mef-features-with-examples
Comments
Post a Comment