How can close this window and open a new window in .net framework compact?

  • Thread starter Thread starter Wang,Zhiqiang
  • Start date Start date
W

Wang,Zhiqiang

as in .net framework ,we can use

new form2().Show();
this.Close();

to close this window and open a new,but it does not work in .net framework
compact
can u offer me a solution?
 
If "this" window is your application main window, closing it will quit the
application. Instead of closing it, why don't you hide it?
 
Back
Top