123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace _1Browyshka1
- {
- public partial class Osnovnaya : Form
- {
- public Osnovnaya()
- {
- InitializeComponent();
- }
- private void Admin_Click(object sender, EventArgs e)
- {
-
- Admin ad = new Admin();
- ad.Show();
- }
- private void Klient_Click(object sender, EventArgs e)
- {
- Tovar tv = new Tovar();
- tv.Show();
-
- }
- private void Vixod_Click_1(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|