博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 两个窗体中相互切换的方法
阅读量:5320 次
发布时间:2019-06-14

本文共 1076 字,大约阅读时间需要 3 分钟。

注意将form2中的botton2的modyfier属性修改为public

form1代码

 
 
using 
System;
using 
System.Collections.Generic;
using 
System.ComponentModel;
using 
System.Data;
using 
System.Drawing;
using 
System.Linq;
using 
System.Text;
using 
System.Windows.Forms;
 
namespace 
test
{
    
public 
partial 
class 
Form1 : Form
    
{
        
Form2 frm = 
new 
Form2();
        
public 
Form1()
        
{
            
InitializeComponent();
        
}
 
        
private 
void 
button1_Click(
object 
sender, EventArgs e)
        
{
            
this
.Hide();          
            
frm.Show();
            
frm.button2.Click +=button2_Click;
        
}
        
private 
void 
button2_Click(
object 
sender, EventArgs e)
        
{
            
MessageBox.Show(
"form1"
);
            
this
.Show();
        
}
 
        
private 
void 
Form1_Load(
object 
sender, EventArgs e)
        
{
 
        
}
    
}
}

form2代码

 
using 
System;
using 
System.Collections.Generic;
using 
System.ComponentModel;
using 
System.Data;
using 
System.Drawing;
using 
System.Linq;
using 
System.Text;
using 
System.Windows.Forms;
 
namespace 
test
{
    
public 
partial 
class 
Form2 : Form
    
{
        
public 
Form2()
        
{
            
InitializeComponent();
        
}
 
        
private 
void 
button2_Click(
object 
sender, EventArgs e)
        
{
            
MessageBox.Show(
"form2"
);
            
this
.Hide();
        
}
 
 
    
}
}

 

 

转载于:https://www.cnblogs.com/swtool/p/3832379.html

你可能感兴趣的文章
servlet
查看>>
SSM集成activiti6.0错误集锦(一)
查看>>
在Javaweb中使用Scala
查看>>
linux下安装python环境
查看>>
pdnovel 看书 读书 听书
查看>>
oracle for loop 代替cursor (转载)
查看>>
Linked List Cycle II
查看>>
工作踩坑记录:JavaScript跳转被缓存
查看>>
个人作业
查看>>
Linux高级运维 第四章 文件的基本管理和XFS文件系统备份恢复
查看>>
读书笔记 - 《智能主义》
查看>>
非接触型手掌静脉识别 PalmSecure™
查看>>
Zookeeper集群模式搭建
查看>>
ASP.Net教程系列:多线程编程实战(二)
查看>>
php代码规范
查看>>
SpringBoot+MyBatis+PageHelper分页无效
查看>>
性能优化和安全
查看>>
Mini ORM PetaPoco
查看>>
天梯 1014 装箱问题
查看>>
Java中的数学计算函数汇总
查看>>