Exemplo n.º 1
0
 public static void FormatButtonTimKiem(PhieuQuanLyBandedChange frm)
 {
     FormatButtonTimKiem(frm.barButtonItemSearch);
 }
Exemplo n.º 2
0
 public static void AddRefresh(PhieuQuanLyBandedChange frm)
 {
     AddRefresh(frm.barManager1, frm.MainBar, frm.PLLoadFilterPart);
 }
Exemplo n.º 3
0
 public static BarButtonItem AddXemTatCa(PhieuQuanLyBandedChange frm)
 {
     return AddXemTatCa(frm.barManager1,
                        frm.MainBar, frm.barButtonItemSearch, frm.popupControlContainerFilter,
                        frm.barCheckItemFilter,
                        frm.gridViewMaster, frm.UpdateRow(), frm.ASCSortClause, frm.DESCSortClause,
                        frm.GroupByClause);
 }
Exemplo n.º 4
0
 public static BarButtonItem InitPrintGrid(PhieuQuanLyBandedChange frm, bool isLandscape)
 {
     return InitPrintGrid(frm.barManager1, frm.MainBar, frm.gridViewMaster, frm.barButtonItemPrint, isLandscape);
 }
Exemplo n.º 5
0
 public PhieuQuanLyBandedFix(PhieuQuanLyBandedChange phieuQL)
 {
     this.that = phieuQL;
     if ((phieuQL as IDuyetSupport) != null) this.DuyetSupport = true;
     HamDung();
 }
Exemplo n.º 6
0
        public PhieuQuanLyBandedFix(PhieuQuanLyBandedChange phieuQL, string dataSetID, string query)
        {
            this.that = phieuQL;
            if ((phieuQL as IDuyetSupport) != null) this.DuyetSupport = true;
            if (dataSetID == null)
                this.dataSetID = that.GetType().FullName + that.gridViewMaster._GetPLGUI();
            else
                this.dataSetID = dataSetID + that.gridViewMaster._GetPLGUI();
            this.saveQuery = query;

            HamDung();
        }
Exemplo n.º 7
0
 public PhieuQuanLyBandedFix(PhieuQuanLyBandedChange phieuQL, string query)
     : this(phieuQL, null, query)
 {
 }