1

Is it possible?

I'd like to use this control inside of a panel in my C# Winforms application. Any suggestions?

Is such a thing possible? I'm using .NET 3.5; thanks!

2 Answers2

3

You're looking for the ElementHost control.
You'll need to make a WPF UserControl that wraps the control, then put it in an ElementHost.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
3

You need to add an ElementHost control to your winforms panel and put the WPF control in there. See here for more details: http://blogs.msdn.com/b/calvin_hsia/archive/2007/12/11/6740119.aspx

Jackson Pope
  • 14,520
  • 6
  • 56
  • 80