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;
}
}
}

  

最新文章

  1. wex5 实战 省市县三级联动与地址薄同步
  2. Orchard分类Taxonomies图文教程
  3. 兼容的firstChild,lastChild,nextSibling,previousSibling写法
  4. DOM应用实例(寻找房祖名)
  5. 工欲善其事必先利其器系列之:在VS里面折叠js代码
  6. java网络编程serversocket
  7. Redis作者谈Redis应用场景(转)
  8. Android sqlite
  9. Hadoop 3、Hadoop 分布式存储系统 HDFS
  10. Python学习之day4
  11. JAVA 新手注意事项
  12. codeforces-1133 (div3)
  13. Lnmp下pureftpd新建FTP账户权限不足解决方法
  14. Hadoop生态圈-单点登录框架之CAS(Central Authentication Service)部署
  15. (二)Makefile——自动编译、清理、安装软件
  16. el标签将时间戳转换为特定格式以及将数值保留特定小数
  17. pytest二:setup和teardown
  18. 2016年3月10日Android实习日记
  19. 安卓程序代写 网上程序代写[原]自定义View
  20. WEB安全第五篇--其他注入的奇技淫巧:XML注入、Xpath注入、Json注入、CRLF注入

热门文章

  1. MVC Router学习
  2. 并发调用get请求
  3. PostgreSQL 非持久化设置(Non-Durable Settings)
  4. JavaScript----插入视频
  5. html 标签自己居中
  6. winform 控件开发1——复合控件
  7. javascript 异常处理和事件处理
  8. 封装mysqli类
  9. Android中实现进入App之后检查网络状态
  10. 夺命雷公狗ThinkPHP项目之----企业网站25之网站前台面包屑导航URL的完善