C#两个窗口间的处理 在线等。。。
点击Form1的button,弹出Form2,当点击Form2的button时,关闭Form2,并希望Form1的几个enable被设置为false的button的ena...
点击Form1的button,弹出Form2,当点击Form2的button时,关闭Form2,并希望Form1的几个enable被设置为false的button的enable属性被转为true,怎么做?
谢谢。。。 展开
谢谢。。。 展开
2个回答
展开全部
比如你要把Form1窗口里的button2和button3的enable属性转为true
首先把Form1窗口生成的button2,button3的(没改前是私有的)
#endregion
public System.Windows.Forms.Button button2;
public System.Windows.Forms.Button button3;
变为public 然后
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
///////////////////////////////窗体1////////////////////
namespace WindowsApplication21
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)//点button1的事件
{
Form2 f2 = new Form2(this);//传递窗体Form1的对象
f2.Show();
}
}
}
----------------------------窗体2-------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication21
{
public partial class Form2 : Form
{
Form1 f1;
public Form2()
{
InitializeComponent();
}
public Form2(Form1 f1)//通过构造函数 接收窗体1的对象
{
InitializeComponent();
this.f1 = f1;
}
private void button1_Click(object sender, EventArgs e)//点击窗体2按钮事件
{
this.Close();
f1.button2.Enabled = true;
f1.button3.Enabled = true;
}
}
}
首先把Form1窗口生成的button2,button3的(没改前是私有的)
#endregion
public System.Windows.Forms.Button button2;
public System.Windows.Forms.Button button3;
变为public 然后
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
///////////////////////////////窗体1////////////////////
namespace WindowsApplication21
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)//点button1的事件
{
Form2 f2 = new Form2(this);//传递窗体Form1的对象
f2.Show();
}
}
}
----------------------------窗体2-------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication21
{
public partial class Form2 : Form
{
Form1 f1;
public Form2()
{
InitializeComponent();
}
public Form2(Form1 f1)//通过构造函数 接收窗体1的对象
{
InitializeComponent();
this.f1 = f1;
}
private void button1_Click(object sender, EventArgs e)//点击窗体2按钮事件
{
this.Close();
f1.button2.Enabled = true;
f1.button3.Enabled = true;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询