I placed a statusStrip control in the mdi main form.
I want to let the controls of the main form display information dynamically when the mdi subform is operated. How to achieve?
Understood, can you tell me how to achieve it in general?
You may get the controls in the parent form in this way:
StatusStrip st = (StatusStrip)this.ParentForm.Controls["Name"];
In this way, you can control its state just like operating the controls in this form.