Form1.cs 924 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.Windows.Forms;
  9. namespace TuraevMiroshnichenkoStudents
  10. {
  11. public partial class Form1 : Form
  12. {
  13. public Form1()
  14. {
  15. InitializeComponent();
  16. }
  17. private void button1_Click(object sender, EventArgs e)
  18. {
  19. Form2 f = new Form2();
  20. f.Show();
  21. }
  22. private void button2_Click(object sender, EventArgs e)
  23. {
  24. Form3 f = new Form3();
  25. f.Show();
  26. }
  27. private void button3_Click(object sender, EventArgs e)
  28. {
  29. Form4 f = new Form4();
  30. f.Show();
  31. }
  32. private void button4_Click(object sender, EventArgs e)
  33. {
  34. Form5 f = new Form5();
  35. f.Show();
  36. }
  37. }
  38. }