I have a working Qt widget that I want to show in a .NET application. The application uses WPF, and I want to embed this widget in the user interface.
What is the recommended way to embed a Qt widget in a WPF application? should I use C ++ / CLI and pass HWND to WPF or just use ActiveQt? I am worried about the Qt event mechanism since no one will call QApplication :: exec ()
source
share