1.把一个窗体关闭后想刷新另外一个窗体

   假设为A窗体和B窗体,A窗体的刷新方法为A_Load

   现在要在关闭B窗体后,刷新A窗体。

   在打开B窗体的地方写上

B b=new B();
b.FormClosed += new FormClosedEventHandler(load);
b.Show();

相关文章:

  • 2021-06-24
  • 2021-08-01
  • 2021-07-26
  • 2021-12-03
  • 2021-12-20
  • 2021-07-07
  • 2021-09-13
  • 2021-07-07
猜你喜欢
  • 2022-12-23
  • 2021-12-16
  • 2021-12-04
  • 2021-12-02
  • 2021-11-19
  • 2021-06-26
  • 2021-07-07
相关资源
相似解决方案