Hello I'm kind of new to C# and I'm trying to get one form to talk to another form in the same namespace. So the button the first button is on form1 and it opens up form2 then I want the user to click a button in form2 to make a button in form1 visible that was previously invisible. This is what I have for button 1 on form1.
Form2 MainWindow = new Form2();
MainWindow.Show();
The is what I have for the button on form2.
Form1.button2.Visible = true;