Osnovnaya.cs 798 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 _1Browyshka1
  11. {
  12. public partial class Osnovnaya : Form
  13. {
  14. public Osnovnaya()
  15. {
  16. InitializeComponent();
  17. }
  18. private void Admin_Click(object sender, EventArgs e)
  19. {
  20. Admin ad = new Admin();
  21. ad.Show();
  22. }
  23. private void Klient_Click(object sender, EventArgs e)
  24. {
  25. Tovar tv = new Tovar();
  26. tv.Show();
  27. }
  28. private void Vixod_Click_1(object sender, EventArgs e)
  29. {
  30. this.Close();
  31. }
  32. }
  33. }