Skip to content

Instantly share code, notes, and snippets.

@SajjadArifGul
Created October 8, 2015 17:25
Show Gist options
  • Save SajjadArifGul/b0261fe46dc9901e729f to your computer and use it in GitHub Desktop.
Save SajjadArifGul/b0261fe46dc9901e729f to your computer and use it in GitHub Desktop.
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
Form1 frm1;
public Form2(Form1 parent)
{
InitializeComponent();
frm1 = parent;
}
private void button1_Click(object sender, EventArgs e)
{
frm1.Visible = false;
}
private void button2_Click(object sender, EventArgs e)
{
frm1.Visible = true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment