I just started learning WPF, and I've been trying to add this WPF control to a regular WinForm.
I know I can use Forms.Integration.ElementHost to host WPF controls in a WinForm. But as StatusStrip takes Items and not Controls it's marking the ElementHost as incompatible.
Do I need to replace the entire StatusStrip with WPF ToolBar for this to work?
You can use
ToolStripControlHostto add any control to the strip. For example for an element host which hosts a wpf user control, you can use this code: