日期:2014-05-17 浏览次数:20846 次
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 LINQTEST.CSDN.页面传值
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 frm = new Form2();
frm.str1 = this.textBox1.Text;
frm.str2 = this.textBox2.Text;
frm.Show();
}
private void button2_Click(object sender, EventArgs e)
{
Form2 frm = new Form2();
frm.str1 = this.textBox3.Text;
frm.str2 = this.textBox4.Text;
frm.Show();
}
}
}
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 LINQTEST.CSDN.页面传值
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
public string str1;
public string str2;
private void Form2_Load(object sender, EventArgs e)
{
this.textBox1.Text = str1;
this.textBox2.Text = str2;
&