一.方法1: 假如有两个窗体,Form_A和Form_B,每个窗体里都有一个按键,Button_A和Button_B,要实现单击Button_A显示窗体B,那么窗体A中Buttom_A的单击事件的程序应该是: private void button_A_Click(object sender, EventArgs e) { Form_B f = new Form_B(); f.Show(); } 如果希望单击窗体B中的按键Button_B,实现改变窗体A的背景色,那么你需要做: 1. Form_