c#窗体传志
2024-08-25 14:28:12
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 WindowsFormsApplication1
{
public delegate void ces(string a);
public partial class Form2 : Form
{
ces bbb;
public Form2(ces aax)
{
bbb = aax;
InitializeComponent();
} private void button1_Click(object sender, EventArgs e)
{
bbb(this.textBox1.Text);
}
}
}
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
private string text; public Form1()
{
InitializeComponent(); } public Form1(string text)
{
// TODO: Complete member initialization
this.text = text;
} private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2(setmsg);
f.ShowDialog(); } private void Form1_Load(object sender, EventArgs e)
{ }
public void setmsg(string msg)
{
this.label1.Text = msg;
}
}
}
最新文章
- wex5 实战 省市县三级联动与地址薄同步
- Orchard分类Taxonomies图文教程
- 兼容的firstChild,lastChild,nextSibling,previousSibling写法
- DOM应用实例(寻找房祖名)
- 工欲善其事必先利其器系列之:在VS里面折叠js代码
- java网络编程serversocket
- Redis作者谈Redis应用场景(转)
- Android sqlite
- Hadoop 3、Hadoop 分布式存储系统 HDFS
- Python学习之day4
- JAVA 新手注意事项
- codeforces-1133 (div3)
- Lnmp下pureftpd新建FTP账户权限不足解决方法
- Hadoop生态圈-单点登录框架之CAS(Central Authentication Service)部署
- (二)Makefile——自动编译、清理、安装软件
- el标签将时间戳转换为特定格式以及将数值保留特定小数
- pytest二:setup和teardown
- 2016年3月10日Android实习日记
- 安卓程序代写 网上程序代写[原]自定义View
- WEB安全第五篇--其他注入的奇技淫巧:XML注入、Xpath注入、Json注入、CRLF注入