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?