private void Save_Click(object sender, EventArgs e)
 {
     if (number.Text == string.Empty || textBox2.Text == string.Empty || textBox1.Text == string.Empty)
     {
         MessageBox.Show("Вы ввели не все данные!");
     }
     else
     {
         MessageBox.Show("Товар заказан!");
         this.Hide();
         personRoom.Show();
     }
 }
Esempio n. 2
0
 private void Back_personal_address_Click(object sender, EventArgs e)
 {
     this.Hide();
     personRoom.Show();
 }
Esempio n. 3
0
 private void Personal_entrance_reg_Click(object sender, EventArgs e)
 {
     this.Hide();
     personRoom.Show();
 }