您的位置:首页 > 其它

通过事件,在两窗体间传递数据

2014-04-24 21:54 274 查看
通过事件,在两窗体间传递数据。
//---------------------------------------

// form1.cs

//----------------------------------------

using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;
namespace FormConmunicate

{

/// <summary>

/// Form1 的摘要说明。

/// </summary>
public delegate string getText();
public class Form1 : System.Windows.Forms.Form

{

public System.Windows.Forms.TextBox textBox1;

private System.Windows.Forms.Button button1;

/// <summary>

/// 必需的设计器变量。

/// </summary>

private System.ComponentModel.Container components = null;
public Form1()

{

//

// Windows 窗体设计器支持所必需的

//

InitializeComponent();
//

// TODO: 在 InitializeComponent 调用后添加任何构造函数代码

//

}
/// <summary>

/// 清理所有正在使用的资源。

/// </summary>

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null) 

{

components.Dispose();

}

}

base.Dispose( disposing );

}
#region Windows Form Designer generated code

/// <summary>

/// 设计器支持所需的方法 - 不要使用代码编辑器修改

/// 此方法的内容。

/// </summary>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: