示例#1
0
        private void BTN_YENI_FATURA_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            EVRAK_GIRIS ftr = new EVRAK_GIRIS(0);

            ftr.ShowDialog();

            if (ftr.SELECT_BUTTON == "OK")
            {
                DATA_LOAD();
            }
        }
示例#2
0
        private void gridCtrl_Masters_DoubleClick(object sender, EventArgs e)
        {
            DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hi =
                gridView_Masters.CalcHitInfo((sender as Control).PointToClient(Control.MousePosition));
            dr = gridView_Masters.GetDataRow(hi.RowHandle);
            if (dr != null)
            {
                EVRAK_GIRIS ftr = new EVRAK_GIRIS((int)dr["ID"]);
                ftr.ShowDialog();

                if (ftr.SELECT_BUTTON == "OK")
                {
                    DATA_LOAD();
                }
            }
        }