main.cs 494 B

1234567891011121314151617181920212223
  1. namespace EdgeVoyager
  2. {
  3. public partial class main : Form
  4. {
  5. public main()
  6. {
  7. InitializeComponent();
  8. }
  9. private void main_Shown(object sender, EventArgs e)
  10. {
  11. Form1 form1 = new Form1();
  12. this.Hide();
  13. form1.Show();
  14. }
  15. private void timer1_Tick(object sender, EventArgs e)
  16. {
  17. if(Settings1.Default.windows_num==0)
  18. Environment.Exit(0);
  19. }
  20. }
  21. }