Reputation: 506
I'm creating a custom task SSIS. I use the IDtsTaskUI Interface to define methods and properties called by SSIS Designer.
I want to use a WPF user control to create the UI. But the Getview method of IDtsTaskUI seems not accept WPF user control because it returns ContainerControl type.
Is there a way to use a WPF user control to create my custom task?
Upvotes: 1
Views: 346
Reputation: 2685
since ContainerControl is a control from WinForms I would imagine you could create a WinForms Form and host a WPF control inside of it as shown in this walkthrough.
As a side note: I also image this would create a rather slow user experience becuase you would have to load the WPF stack inside your WinForms based SSIS Designer
Upvotes: 1