Reputation: 19
I created a C# WPF GUI and compiled it as a library. I have a c++/cli project. I want to use WPF dll in C++application in order to open the WPF window.
How do I do it?
Upvotes: 0
Views: 343
Reputation: 73
Unfortunately, WPF library cannot be used in C++. Either you have to use WinForms or C++ own windows form as library. This link can help you but not sure either it will work or not.
Upvotes: 1