Bob
Bob

Reputation: 861

C# WPF Plugin Architecture

What's the best way to implement a WPF plugin system in which each plugin handles its own window/s?

I understand the basics of the plugin architecture, and have an engine that loads external dlls (plugins), and each plugin implements my plugin interface. Each plugin handles its own logic, but I am not entirely sure how to go about having each plugin have its own window. Any thoughts or comments would help!

Upvotes: 2

Views: 8518

Answers (1)

Davin Tryon
Davin Tryon

Reputation: 67336

MEF can be a good tool for what you describe.

Check out this and this.

Upvotes: 6

Related Questions