menbegun.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace MarathonSkills2016Le
  11. {
  12. public partial class menbegun : Form
  13. {
  14. public menbegun()
  15. {
  16. InitializeComponent();
  17. }
  18. private void label4_Click(object sender, EventArgs e)
  19. {
  20. Timer timer = new Timer();
  21. timer.Interval = 5000;
  22. timer.Enabled = true;
  23. timer.Tick += new EventHandler(label4_Click);
  24. label4.Text = DateTime.Now.ToShortDateString() + ", " + DateTime.Now.ToLongTimeString();
  25. }
  26. private void button6_Click(object sender, EventArgs e)
  27. {
  28. Main sf = new Main();
  29. sf.Owner = this;
  30. sf.Show();
  31. this.Hide();
  32. }
  33. private void button3_Click(object sender, EventArgs e)
  34. {
  35. login sf = new login();
  36. sf.Owner = this;
  37. sf.Show();
  38. this.Hide();
  39. }
  40. }
  41. }