示例#1
0
 // shows the detailed version of the selected grid row, in edit modus
 // links:
 //  docLink: http://sql2x.org/documentationLink/c778f8fe-1b09-4755-891f-f9d3126d1b85
 private void buttonCrudePassengerEdit_Click(object sender, EventArgs e)
 {
     try {
         var editForm = new CrudePassengerEdit();
         editForm.MdiParent = this.MdiParent;
         editForm.ShowAsEdit((System.Guid)dataGridViewCrudePassenger.CurrentRow.Cells["PassengerId"].Value);
     } catch (Exception ex) {
         if (ex == null)
         {
         }
         else
         {
             System.Diagnostics.Debugger.Break();
         }
     }
 }