123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Perevozki
- {
- public partial class Menu : Form
- {
- public Menu()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- Admin f2 = new Admin();
- f2.ShowDialog();
- }
- private void Menu_Load(object sender, EventArgs e)
- {
-
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Orders f4 = new Orders();
- f4.ShowDialog();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- CreateOrder co = new CreateOrder();
- co.ShowDialog();
- }
- }
- }
|