Beispiel #1
0
 private void CargarAsiento()
 {
     if (_currentRow != null)
     {
         frmAsiento ofrmAsiento = new frmAsiento(_currentRow["Asiento"].ToString());
         ofrmAsiento.FormClosed += OfrmAsiento_FormClosed;
         ofrmAsiento.ShowDialog();
     }
 }
Beispiel #2
0
 private void GridView_DoubleClick(object sender, EventArgs e)
 {
     if (_currentRow != null && this.gridView.SelectedRowsCount == 1)
     {
         frmAsiento ofrmAsiento = new frmAsiento(_currentRow["Asiento"].ToString());
         ofrmAsiento.FormClosed += OfrmAsiento_FormClosed;
         ofrmAsiento.ShowDialog();
     }
 }
Beispiel #3
0
        private void BtnAgregar_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            frmAsiento ofrmAsiento = new frmAsiento();

            ofrmAsiento.FormClosed += OfrmAsiento_FormClosed;

            if (!ofrmAsiento.IsDisposed)
            {
                ofrmAsiento.ShowDialog();
            }
        }