private void btnAddParts_Click(object sender, EventArgs e) { this.Hide(); AddPartsPg.getInstance(); }
public static AddPartsPg getInstance() { if (instance == null) { instance = new AddPartsPg(); instance.InitializeComponent(); } instance.Initialize(); instance.Show(); return(instance); }