I have 2 projects, a Winform and WPF. I created a label in Winform, and a ribbon control in WPF. Then I added the ribbon to the winform by adding a reference to WPF and using an elementhost. My goal is to access the label control from the ribbon created in WPF.
The issue is that I can't seem to add a reference back to Winform so I can grab the controls in Winforms from WPF, as this would then create a circular reference. I am not sure how else I can access Winform controls in WPF.
The same question was asked here
But I don't believe this question was answered properly, as the reference only shows the user how to achieve what I've described above. Any help would be appreciated.