WPF-based CustomTaskPane (CTP) #504
Unanswered
ricardogerbaudo
asked this question in
Q&A
Replies: 1 comment
|
Hi @ricardogerbaudo - the Office CTP mechanism requires an ActiveX control. My understanding is that WPF has no built-in support for exposing controls as ActiveX controls, while Windows Forms does have such support. The ElementHost control is the bridge that lets the WPF be embedded in a Windows Forms control, and hence exposed as an ActiveX control. So as far as I know, you can't get rid of the extra layer easily. I don't think the ElementHost / WinForms aspect has been a particular source of trouble. I also note there was no answer to the same question on StackOverflow: https://stackoverflow.com/questions/56023503/hosting-wpf-content-directly-in-taskpane |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Quick question: in order to use a WPF UserControl within a CTP, the only way is to embed through a WinForms ElementHost class?
All reactions