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 WindowsFormsApp1
- {
- public partial class Registr : Form
- {
- public Registr()
- {
- InitializeComponent();
- }
- private void label1_Click(object sender, EventArgs e)
- {
- }
- private void button1_Click(object sender, EventArgs e)
- {
-
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Form m = new Vhod();
- m.Show();
- this.Hide();
- }
- private void Registrasia_Load(object sender, EventArgs e)
- {
- }
- }
- }
|