12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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 Yslugi_Salona_Krasot
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void b1_Click(object sender, EventArgs e)
- {
- Form2 f2 = new Form2();
- f2.Show();
- this.Hide();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- Form3 f2 = new Form3();
- f2.Show();
- this.Hide();
-
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Form4 f2 = new Form4();
- f2.Show();
- this.Hide();
- }
- }
- }
|