我在解决方案中有 2 个项目,我的主要项目是项目 1,在项目 1 主表单加载事件中,我从项目 2 运行表单,我的问题是如何在项目 2 的表单关闭后显示项目 1 的表单?
//Here is the form from project 2 will run on project 1 mains form load
pp2.FormLoader frmLdr = new pp2.FormLoader();
frmLdr.MdiParent = this;
frmLdr.Show();
//the form from project 2 will automatically closes after a couple of seconds, after that this form should be automatically show. How can I possibly do this? Thanks!
FormProcess frmSvrProc = new FormProcess();
frmSvrProc.MdiParent = this;
frmSvrProc.Show();