Пример #1
0
 private void TileInCuctomerAddNew_Click(object sender, EventArgs e)
 {
     try
     {
         CustomerUI c = new CustomerUI();
         c.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Пример #2
0
        private void buttonShowUsers_Click(object sender, EventArgs e)
        {
            CustomerUI c = new CustomerUI();

            c.Show();
        }
Пример #3
0
        private void button1_Click(object sender, EventArgs e)
        {
            CustomerUI c = new CustomerUI(int.Parse(WarTextBox1.Text));

            c.Show();
        }