Skip to content

Instantly share code, notes, and snippets.

@longtth
Last active December 28, 2017 09:46
Show Gist options
  • Save longtth/5c721ef8fb80c8ad9a9192e904c0b306 to your computer and use it in GitHub Desktop.
Save longtth/5c721ef8fb80c8ad9a9192e904c0b306 to your computer and use it in GitHub Desktop.
using System;
using System.Windows.Forms;
using Project1;
namespace MainForm
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void btnProject1_Click(object sender, EventArgs e)
{
Form1 f = new Form1();
f.Show();
this.Hide();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment