子窗体(Win_Set): MainWindow m; m = (MainWindow)this.Owner; m.showText("获取文件成功\r\n"); 主窗体(MainWindow): Win_Set ws= new Win_Set(); ws.Owner = this; ws.Show(); 要调用的函数: public void sho
制作登录窗体: 制作一个登陆窗体,实现点击按钮关闭此窗体并打开另一个窗体 直接在按钮点击事件中,实例化一个想要打开的窗体 使用show方法打开,并把登陆窗体的visible属性改为false Form1 f1 = new Form1(); f1.Show(); this.Visible = false; 登陆界面 namespace WindowsFormsApplication1 { public partial class Login : Form { public string usern