日期:2014-05-18  浏览次数:20689 次

close 在那个类中
close在那个类中啊 。我要关闭窗口,用那个类去实例化
 在调用close关闭窗口

------解决方案--------------------
C# code
 //只要你关闭的对象包含Close方法
                Form2 f2 = new Form2();
                f2.Close();//该Close继承自ContainerControl重的Close

------解决方案--------------------
this.Close();
------解决方案--------------------
探讨

C# code
//只要你关闭的对象包含Close方法
Form2 f2 = new Form2();
f2.Close();//该Close继承自ContainerControl重的Close

------解决方案--------------------
探讨
C# code
//只要你关闭的对象包含Close方法
Form2 f2 = new Form2();
f2.Close();//该Close继承自ContainerControl重的Close

------解决方案--------------------
Form类就有Close方法,
------解决方案--------------------
Form类