C# 打開另一個窗體,(模態對話框) Form1 frm= new Form1(); //創建對象 DialogResult retServer = frm.ShowDialog(); //模式對話框 if (retServer == DialogResult.OK) { InitConnectString(); } else { return; } 另一個窗體的保存按鈕代碼 this.DialogResult = DialogResult.OK;
C# 打開輸文件夾 var path = string.Format(@"{0}\..\..\", Application.StartupPath);//(組合為新的字符串) // path = path + @"Views\" + string.Format(@"{0}\", name);//組合新的路徑 System.Diagnostics.Process.Start("explorer.exe", path);
