1 namespace Test
 2 {
 3     public partial class FrmMain : Form
 4     {
 5         public FrmMain()
 6         {
 7              InitializeComponent();
 8         }
 9         public DataTable DT;
10         private void button1_Click(object sender, EventArgs e) 
11         { 
12             FrmChild fm = new FrmOptime(this); 
13             fm.Show(); 
14          } 
15         public void BindData(){}
16      }
17 }
主窗体

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
  • 2022-12-23
  • 2021-05-24
  • 2021-05-20
  • 2021-09-01
  • 2021-10-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2021-09-25
  • 2021-09-02
  • 2021-09-11
  • 2021-11-28
相关资源
相似解决方案