Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
807 views

ContextMenu on WindowsFormsHost control

So, I have a WindowsFormsHost control in my WPF app (hosting a Dundas Chart) and I want to put a ContextMenu on it. I can successfully attach a ContextMenu to any normal WPF control, but it's not ...
0
votes
2answers
455 views

Instantiate a Windows Forms control in WPF without default constructor

I am trying to host a custom Windows Forms control in WPF. My custom control does not have a public constructor, and it has a static Create() method which looks something like this: public abstract ...