private void btnShowWind_Click(object sender, EventArgs e) { this.pnlQtWind.Width = 450; this.pnlQtWind.Height = 300; QtDllInvoke.showWind(this.pnlQtWind.Handle); }
private void Form1_FormClosed(object sender, FormClosedEventArgs e) { QtDllInvoke.destoryWin(); }
private void btnShowQtCtrl_Click(object sender, EventArgs e) { this.pnlQtCtrl.Width = 300; this.pnlQtCtrl.Height = 300; QtDllInvoke.showDialog(this.pnlQtCtrl.Handle); }