lu
2025-02-27 88f69448fd3fb65d437c0b258ea93a3055017abd
DevApp/Gs.DevApp/DevFrm/Sales/Frm_SalesOrder.cs
@@ -1,4 +1,5 @@
using DevExpress.RichEdit.Export;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Views.Grid;
using DevExpress.XtraGrid.Views.Grid.ViewInfo;
using Gs.DevApp.Entity;
@@ -10,6 +11,7 @@
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
@@ -19,9 +21,12 @@
    {
        string _webServiceName = "SalesManager/";
        List<FilterEntity> _filterList = new List<FilterEntity>();
        private Gs.DevApp.ToolBox.DragResizeHelp _drapHelp;
        public Frm_SalesOrder()
        {
            InitializeComponent();
            _drapHelp = new DragResizeHelp(this,panel1);
            this.xtraTabControl1.CustomHeaderButtonClick += (s, e) => { _drapHelp.Show(); };
            this.toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick;
            this.toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick;
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1);
@@ -197,5 +202,7 @@
                ToolBox.MsgHelper.Warning("提示:" + ex.Message);
            }
        }
    }
}