Form1.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 DB_Velijanskyi_V2
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void Client_Click(object sender, EventArgs e)
  19. {
  20. {
  21. Client cli = new Client();
  22. cli.Show();
  23. this.Hide();
  24. }
  25. }
  26. private void Service_Click(object sender, EventArgs e)
  27. {
  28. Service ser = new Service();
  29. ser.Show();
  30. this.Hide();
  31. }
  32. private void button3_Click(object sender, EventArgs e)
  33. {
  34. Client_server cliser = new Client_server();
  35. cliser.Show();
  36. this.Hide();
  37. }
  38. private void pictureBox1_Click(object sender, EventArgs e)
  39. {
  40. }
  41. }
  42. }