Example #1
0
 private void btnEditPORepo_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
 {
     if (APRGridView.GetFocusedRow() is APRs item)
     {
         frmAddEditAPR frm = new frmAddEditAPR(MethodType.Edit, item);
         frm.ShowDialog();
         Init();
     }
 }
Example #2
0
        private void btnNew_Click(object sender, EventArgs e)
        {
            frmAddEditAPR frm = new frmAddEditAPR(MethodType.Add, new APRs()
            {
                PRId = this.pr.Id
            });

            frm.ShowDialog();
            Init();
        }