We have 2 forms, A and B. And the B form has a Panel in it. (Panel's name C)
I want to change the Color of the Panel in form B by using the form A.
Here's what I've tried:
B cr = new B();
cr.C.BackColor = Color.FromArgb(0, 0, 255);
This code does not give me any errors nor warnings but still does not work.
