本帖最后由 陈行 于 2013-10-13 15:34 编辑
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
Form2 f2 = new Form2();//创建另外一个窗体的对象
f2.Str = str;//把要传的值存起来
f2.ShowDialog();//显示窗体
}
---------------------------------------------------------------
public partial class Form2 : Form
{
string str;
public string Str
{
get { return str; }
set { str = value; }
}
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
this.Text = str;//窗体2加载的时候 显示传过来的值 问题 this代表的是本类对象 但是对象是在窗体1创建的 并没有传过来对象 这个属性是怎么传过来的???
}
}
|