コード例 #1
0
 /// <summary>
 /// Handles the Click event of the btn_ProdCreate control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 /// Erstellt von Veit Berg, am 27.01.16
 private void btn_ProdCreate_Click(object sender, EventArgs e)
 {
     try{
     Product_Create_View ProdCreate = new Product_Create_View(this);
     ProdCreate.Show();
     Hide();
     }
     catch (Exception x)
     {
         MessageBox.Show(x.Message);
     }
 }
コード例 #2
0
 /// <summary>
 /// Handles the Click event of the btn_ProdCreate control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 /// Erstellt von Veit Berg, am 27.01.16
 private void btn_ProdCreate_Click(object sender, EventArgs e)
 {
     try{
         Product_Create_View ProdCreate = new Product_Create_View(this);
         ProdCreate.Show();
         Hide();
     }
     catch (Exception x)
     {
         MessageBox.Show(x.Message);
     }
 }