1234567891011121314151617181920212223242526272829303132333435 |
- 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 DB_Danilov_V1
- {
- public partial class Menu : Form
- {
- public Menu()
- {
- InitializeComponent();
-
- }
-
- private void Service_button_Click(object sender, EventArgs e)
- {
- Form Form2 = new Form2();
- Form2.Show();
- Hide();
- }
- }
- }
-
|