DevApp/Gs.DevApp/DevFrm/Rpt/CK.Designer.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/DevFrm/Rpt/CK.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/DevFrm/Rpt/CK.resx | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.Designer.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.resx | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/Gs.DevApp.csproj | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/Program.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/Properties/licenses.licx | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
DevApp/Gs.DevApp/DevFrm/Rpt/CK.Designer.cs
@@ -46,12 +46,12 @@ this.splitMx1.Location = new System.Drawing.Point(0, 0); this.splitMx1.Name = "splitMx1"; // // splitMx1.splitMx1_Panel1 // splitMx1.Panel1 // this.splitMx1.Panel1.Controls.Add(this.flowLayoutPanel1); this.splitMx1.Panel1.Text = "Panel1"; // // splitMx1.splitMx1_Panel2 // splitMx1.Panel2 // this.splitMx1.Panel2.Text = "Panel2"; this.splitMx1.Size = new System.Drawing.Size(924, 567); @@ -78,6 +78,7 @@ this.simpleButton2.Size = new System.Drawing.Size(145, 128); this.simpleButton2.TabIndex = 1; this.simpleButton2.Text = "æ¡ç åºåæç»è¡¨"; this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click); // // CK // DevApp/Gs.DevApp/DevFrm/Rpt/CK.cs
@@ -1,10 +1,12 @@ using DevExpress.XtraEditors; using Gs.DevApp.ToolBox; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; @@ -17,5 +19,36 @@ { InitializeComponent(); } private void simpleButton2_Click(object sender, EventArgs e) { openFrm("CKTmkc", "Gs.DevApp.DevFrm.CKTmkc"); } /// <summary> /// æå¼çªä½ /// </summary> /// <param name="frmName"></param> /// <param name="asm"></param> private void openFrm(string frmName, string asm) { Form _frm = Application.OpenForms[frmName]; //æ¥æ¾æ¯å¦æå¼è¿çªä½ if ((_frm == null) || (_frm.IsDisposed)) //å¦ææ²¡ææå¼è¿ { var newForm = (Form)Assembly.GetExecutingAssembly() .CreateInstance(asm); if (newForm == null) { MsgHelper.ShowError("è¯·æ£æ¥æ¯å¦å¼éäºè¯¥æ¨¡åï¼"); return; } newForm.Show(); } else { _frm.Activate(); _frm.WindowState = FormWindowState.Normal; } } } } DevApp/Gs.DevApp/DevFrm/Rpt/CK.resx
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,120 @@ <?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> </root> DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.Designer.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,569 @@ /* Create By GS EasyCode */ namespace Gs.DevApp.DevFrm { partial class CKTmkc { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.gv_indepUserCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_stockOrgId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_ownerType = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_ownerId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_depotId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_suppId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_itemId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_lineK3id = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_ebelnK3id = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_billNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_lineNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_suppNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_iqcStatus = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_indepDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_itemType = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_checkDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_depotSectionsCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_depotsCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_quantity = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_lotNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_depotSectionsId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_depotsId = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_itemNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_itemBarcode = new DevExpress.XtraGrid.Columns.GridColumn(); this.gv_guid = new DevExpress.XtraGrid.Columns.GridColumn(); this.toolBarMenu1 = new Gs.DevApp.UserControl.UcToolBarMenu(); this.gcMain1 = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage(); this.pageBar1 = new UserControls.Data.UcPageBar(); ((System.ComponentModel.ISupportInitialize)(this.gcMain1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit(); this.xtraTabControl1.SuspendLayout(); this.xtraTabPage1.SuspendLayout(); this.SuspendLayout(); // // gv_indepUserCode // this.gv_indepUserCode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_indepUserCode.AppearanceCell.Options.UseFont = true; this.gv_indepUserCode.Caption = "å ¥åºäººç¼ç "; this.gv_indepUserCode.FieldName = "indepUserCode"; this.gv_indepUserCode.MinWidth = 50; this.gv_indepUserCode.Name = "gv_indepUserCode"; this.gv_indepUserCode.OptionsColumn.AllowEdit = false; this.gv_indepUserCode.Tag = "query_a.INDEP_USER_CODE"; this.gv_indepUserCode.Visible = true; this.gv_indepUserCode.VisibleIndex = 36; this.gv_indepUserCode.Width = 94; // // gv_stockOrgId // this.gv_stockOrgId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_stockOrgId.AppearanceCell.Options.UseFont = true; this.gv_stockOrgId.Caption = "åºåç»ç»id "; this.gv_stockOrgId.FieldName = "stockOrgId"; this.gv_stockOrgId.MinWidth = 50; this.gv_stockOrgId.Name = "gv_stockOrgId"; this.gv_stockOrgId.OptionsColumn.AllowEdit = false; this.gv_stockOrgId.Tag = "query_a.Stock_Org_Id"; this.gv_stockOrgId.Visible = true; this.gv_stockOrgId.VisibleIndex = 35; this.gv_stockOrgId.Width = 94; // // gv_ownerType // this.gv_ownerType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_ownerType.AppearanceCell.Options.UseFont = true; this.gv_ownerType.Caption = "货主类å(BD_OwnerOrg ç»ç»,BD_Supplier ä¾åºå,BD_Customer 客æ·) "; this.gv_ownerType.FieldName = "ownerType"; this.gv_ownerType.MinWidth = 50; this.gv_ownerType.Name = "gv_ownerType"; this.gv_ownerType.OptionsColumn.AllowEdit = false; this.gv_ownerType.Tag = "query_a.Owner_Type"; this.gv_ownerType.Visible = true; this.gv_ownerType.VisibleIndex = 34; this.gv_ownerType.Width = 94; // // gv_ownerId // this.gv_ownerId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_ownerId.AppearanceCell.Options.UseFont = true; this.gv_ownerId.Caption = "货主id "; this.gv_ownerId.FieldName = "ownerId"; this.gv_ownerId.MinWidth = 50; this.gv_ownerId.Name = "gv_ownerId"; this.gv_ownerId.OptionsColumn.AllowEdit = false; this.gv_ownerId.Tag = "query_a.Owner_Id"; this.gv_ownerId.Visible = true; this.gv_ownerId.VisibleIndex = 33; this.gv_ownerId.Width = 94; // // gv_depotId // this.gv_depotId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_depotId.AppearanceCell.Options.UseFont = true; this.gv_depotId.Caption = "ä»åºID "; this.gv_depotId.FieldName = "depotId"; this.gv_depotId.MinWidth = 50; this.gv_depotId.Name = "gv_depotId"; this.gv_depotId.OptionsColumn.AllowEdit = false; this.gv_depotId.Tag = "query_a.DEPOT_ID"; this.gv_depotId.Visible = true; this.gv_depotId.VisibleIndex = 32; this.gv_depotId.Width = 94; // // gv_suppId // this.gv_suppId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_suppId.AppearanceCell.Options.UseFont = true; this.gv_suppId.Caption = "ä¾åºåid "; this.gv_suppId.FieldName = "suppId"; this.gv_suppId.MinWidth = 50; this.gv_suppId.Name = "gv_suppId"; this.gv_suppId.OptionsColumn.AllowEdit = false; this.gv_suppId.Tag = "query_a.SUPP_ID"; this.gv_suppId.Visible = true; this.gv_suppId.VisibleIndex = 31; this.gv_suppId.Width = 94; // // gv_itemId // this.gv_itemId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_itemId.AppearanceCell.Options.UseFont = true; this.gv_itemId.Caption = "ç©æID "; this.gv_itemId.FieldName = "itemId"; this.gv_itemId.MinWidth = 50; this.gv_itemId.Name = "gv_itemId"; this.gv_itemId.OptionsColumn.AllowEdit = false; this.gv_itemId.Tag = "query_a.ITEM_ID"; this.gv_itemId.Visible = true; this.gv_itemId.VisibleIndex = 30; this.gv_itemId.Width = 94; // // gv_lineK3id // this.gv_lineK3id.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_lineK3id.AppearanceCell.Options.UseFont = true; this.gv_lineK3id.Caption = "è¡K3ID "; this.gv_lineK3id.FieldName = "lineK3id"; this.gv_lineK3id.MinWidth = 50; this.gv_lineK3id.Name = "gv_lineK3id"; this.gv_lineK3id.OptionsColumn.AllowEdit = false; this.gv_lineK3id.Tag = "query_a.LINE_K3ID"; this.gv_lineK3id.Visible = true; this.gv_lineK3id.VisibleIndex = 29; this.gv_lineK3id.Width = 94; // // gv_ebelnK3id // this.gv_ebelnK3id.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_ebelnK3id.AppearanceCell.Options.UseFont = true; this.gv_ebelnK3id.Caption = "K3ID "; this.gv_ebelnK3id.FieldName = "ebelnK3id"; this.gv_ebelnK3id.MinWidth = 50; this.gv_ebelnK3id.Name = "gv_ebelnK3id"; this.gv_ebelnK3id.OptionsColumn.AllowEdit = false; this.gv_ebelnK3id.Tag = "query_a.EBELN_K3ID"; this.gv_ebelnK3id.Visible = true; this.gv_ebelnK3id.VisibleIndex = 28; this.gv_ebelnK3id.Width = 94; // // gv_billNo // this.gv_billNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_billNo.AppearanceCell.Options.UseFont = true; this.gv_billNo.Caption = "åæ®ç¼å· "; this.gv_billNo.FieldName = "billNo"; this.gv_billNo.MinWidth = 50; this.gv_billNo.Name = "gv_billNo"; this.gv_billNo.OptionsColumn.AllowEdit = false; this.gv_billNo.Tag = "query_a.BILL_NO"; this.gv_billNo.Visible = true; this.gv_billNo.VisibleIndex = 27; this.gv_billNo.Width = 94; // // gv_lineNo // this.gv_lineNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_lineNo.AppearanceCell.Options.UseFont = true; this.gv_lineNo.Caption = "è¡å· "; this.gv_lineNo.FieldName = "lineNo"; this.gv_lineNo.MinWidth = 50; this.gv_lineNo.Name = "gv_lineNo"; this.gv_lineNo.OptionsColumn.AllowEdit = false; this.gv_lineNo.Tag = "query_a.LINE_NO"; this.gv_lineNo.Visible = true; this.gv_lineNo.VisibleIndex = 26; this.gv_lineNo.Width = 94; // // gv_suppNo // this.gv_suppNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_suppNo.AppearanceCell.Options.UseFont = true; this.gv_suppNo.Caption = "ä¾åºåç¼ç "; this.gv_suppNo.FieldName = "suppNo"; this.gv_suppNo.MinWidth = 50; this.gv_suppNo.Name = "gv_suppNo"; this.gv_suppNo.OptionsColumn.AllowEdit = false; this.gv_suppNo.Tag = "query_a.SUPP_NO"; this.gv_suppNo.Visible = true; this.gv_suppNo.VisibleIndex = 25; this.gv_suppNo.Width = 94; // // gv_iqcStatus // this.gv_iqcStatus.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_iqcStatus.AppearanceCell.Options.UseFont = true; this.gv_iqcStatus.Caption = "è´¨éç¶æ "; this.gv_iqcStatus.FieldName = "iqcStatus"; this.gv_iqcStatus.MinWidth = 50; this.gv_iqcStatus.Name = "gv_iqcStatus"; this.gv_iqcStatus.OptionsColumn.AllowEdit = false; this.gv_iqcStatus.Tag = "query_a.IQC_STATUS"; this.gv_iqcStatus.Visible = true; this.gv_iqcStatus.VisibleIndex = 17; this.gv_iqcStatus.Width = 94; // // gv_indepDate // this.gv_indepDate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_indepDate.AppearanceCell.Options.UseFont = true; this.gv_indepDate.Caption = "å ¥åºæ¥æ "; this.gv_indepDate.FieldName = "indepDate"; this.gv_indepDate.MinWidth = 50; this.gv_indepDate.Name = "gv_indepDate"; this.gv_indepDate.OptionsColumn.AllowEdit = false; this.gv_indepDate.Tag = "query_a.INDEP_DATE"; this.gv_indepDate.Visible = true; this.gv_indepDate.VisibleIndex = 14; this.gv_indepDate.Width = 94; // // gv_itemType // this.gv_itemType.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_itemType.AppearanceCell.Options.UseFont = true; this.gv_itemType.Caption = "0 ç©æ 1 åæå 2 æå "; this.gv_itemType.FieldName = "itemType"; this.gv_itemType.MinWidth = 50; this.gv_itemType.Name = "gv_itemType"; this.gv_itemType.OptionsColumn.AllowEdit = false; this.gv_itemType.Tag = "query_a.ITEM_TYPE"; this.gv_itemType.Visible = true; this.gv_itemType.VisibleIndex = 13; this.gv_itemType.Width = 94; // // gv_checkDate // this.gv_checkDate.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_checkDate.AppearanceCell.Options.UseFont = true; this.gv_checkDate.Caption = "æ£éªæ¥æ "; this.gv_checkDate.FieldName = "checkDate"; this.gv_checkDate.MinWidth = 50; this.gv_checkDate.Name = "gv_checkDate"; this.gv_checkDate.OptionsColumn.AllowEdit = false; this.gv_checkDate.Tag = "query_a.CHECK_DATE"; this.gv_checkDate.Visible = true; this.gv_checkDate.VisibleIndex = 12; this.gv_checkDate.Width = 94; // // gv_depotSectionsCode // this.gv_depotSectionsCode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_depotSectionsCode.AppearanceCell.Options.UseFont = true; this.gv_depotSectionsCode.Caption = "è´§ä½CODE "; this.gv_depotSectionsCode.FieldName = "depotSectionsCode"; this.gv_depotSectionsCode.MinWidth = 50; this.gv_depotSectionsCode.Name = "gv_depotSectionsCode"; this.gv_depotSectionsCode.OptionsColumn.AllowEdit = false; this.gv_depotSectionsCode.Tag = "query_a.DEPOT_SECTIONS_CODE"; this.gv_depotSectionsCode.Visible = true; this.gv_depotSectionsCode.VisibleIndex = 11; this.gv_depotSectionsCode.Width = 94; // // gv_depotsCode // this.gv_depotsCode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_depotsCode.AppearanceCell.Options.UseFont = true; this.gv_depotsCode.Caption = "ååºCODE "; this.gv_depotsCode.FieldName = "depotsCode"; this.gv_depotsCode.MinWidth = 50; this.gv_depotsCode.Name = "gv_depotsCode"; this.gv_depotsCode.OptionsColumn.AllowEdit = false; this.gv_depotsCode.Tag = "query_a.DEPOTS_CODE"; this.gv_depotsCode.Visible = true; this.gv_depotsCode.VisibleIndex = 10; this.gv_depotsCode.Width = 94; // // gv_quantity // this.gv_quantity.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_quantity.AppearanceCell.Options.UseFont = true; this.gv_quantity.Caption = "æ°é "; this.gv_quantity.FieldName = "quantity"; this.gv_quantity.MinWidth = 50; this.gv_quantity.Name = "gv_quantity"; this.gv_quantity.OptionsColumn.AllowEdit = false; this.gv_quantity.Tag = "query_a.QUANTITY"; this.gv_quantity.Visible = true; this.gv_quantity.VisibleIndex = 6; this.gv_quantity.Width = 94; // // gv_lotNo // this.gv_lotNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_lotNo.AppearanceCell.Options.UseFont = true; this.gv_lotNo.Caption = "åå®¶æ¹æ¬¡ "; this.gv_lotNo.FieldName = "lotNo"; this.gv_lotNo.MinWidth = 50; this.gv_lotNo.Name = "gv_lotNo"; this.gv_lotNo.OptionsColumn.AllowEdit = false; this.gv_lotNo.Tag = "query_a.LOT_NO"; this.gv_lotNo.Visible = true; this.gv_lotNo.VisibleIndex = 5; this.gv_lotNo.Width = 94; // // gv_depotSectionsId // this.gv_depotSectionsId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_depotSectionsId.AppearanceCell.Options.UseFont = true; this.gv_depotSectionsId.Caption = "è´§ä½id "; this.gv_depotSectionsId.FieldName = "depotSectionsId"; this.gv_depotSectionsId.MinWidth = 50; this.gv_depotSectionsId.Name = "gv_depotSectionsId"; this.gv_depotSectionsId.OptionsColumn.AllowEdit = false; this.gv_depotSectionsId.Tag = "query_a.DEPOT_SECTIONS_ID"; this.gv_depotSectionsId.Visible = true; this.gv_depotSectionsId.VisibleIndex = 4; this.gv_depotSectionsId.Width = 94; // // gv_depotsId // this.gv_depotsId.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_depotsId.AppearanceCell.Options.UseFont = true; this.gv_depotsId.Caption = "ååºid(ä¸è¬ä¸åæ°æ®) "; this.gv_depotsId.FieldName = "depotsId"; this.gv_depotsId.MinWidth = 50; this.gv_depotsId.Name = "gv_depotsId"; this.gv_depotsId.OptionsColumn.AllowEdit = false; this.gv_depotsId.Tag = "query_a.DEPOTS_ID"; this.gv_depotsId.Visible = true; this.gv_depotsId.VisibleIndex = 3; this.gv_depotsId.Width = 94; // // gv_itemNo // this.gv_itemNo.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_itemNo.AppearanceCell.Options.UseFont = true; this.gv_itemNo.Caption = "ç©æç¼ç "; this.gv_itemNo.FieldName = "itemNo"; this.gv_itemNo.MinWidth = 50; this.gv_itemNo.Name = "gv_itemNo"; this.gv_itemNo.OptionsColumn.AllowEdit = false; this.gv_itemNo.Tag = "query_a.ITEM_NO"; this.gv_itemNo.Visible = true; this.gv_itemNo.VisibleIndex = 2; this.gv_itemNo.Width = 94; // // gv_itemBarcode // this.gv_itemBarcode.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_itemBarcode.AppearanceCell.Options.UseFont = true; this.gv_itemBarcode.Caption = "ç©ææ¡ç "; this.gv_itemBarcode.FieldName = "itemBarcode"; this.gv_itemBarcode.MinWidth = 50; this.gv_itemBarcode.Name = "gv_itemBarcode"; this.gv_itemBarcode.OptionsColumn.AllowEdit = false; this.gv_itemBarcode.Tag = "query_a.ITEM_BARCODE"; this.gv_itemBarcode.Visible = true; this.gv_itemBarcode.VisibleIndex = 1; this.gv_itemBarcode.Width = 94; // // gv_guid // this.gv_guid.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F); this.gv_guid.AppearanceCell.Options.UseFont = true; this.gv_guid.Caption = "主é®GUID"; this.gv_guid.FieldName = "guid"; this.gv_guid.MinWidth = 50; this.gv_guid.Name = "gv_guid"; this.gv_guid.OptionsColumn.AllowEdit = false; this.gv_guid.Tag = "query_a.guid"; this.gv_guid.Visible = true; this.gv_guid.VisibleIndex = 0; this.gv_guid.Width = 94; // // toolBarMenu1 // this.toolBarMenu1.chkParameter = null; this.toolBarMenu1.currentAction = null; this.toolBarMenu1.defaultActions = "æ¥è¯¢"; this.toolBarMenu1.Dock = System.Windows.Forms.DockStyle.Top; this.toolBarMenu1.guidKey = null; this.toolBarMenu1.isSetBtn = false; this.toolBarMenu1.Location = new System.Drawing.Point(0, 0); this.toolBarMenu1.Name = "toolBarMenu1"; this.toolBarMenu1.rptParameter = null; this.toolBarMenu1.Size = new System.Drawing.Size(1128, 80); this.toolBarMenu1.TabIndex = 0; this.toolBarMenu1.xlsInService = null; this.toolBarMenu1.xlsOutParameter = null; // // gcMain1 // this.gcMain1.Dock = System.Windows.Forms.DockStyle.Fill; this.gcMain1.Font = new System.Drawing.Font("Tahoma", 10F); this.gcMain1.Location = new System.Drawing.Point(0, 0); this.gcMain1.MainView = this.gridView1; this.gcMain1.Name = "gcMain1"; this.gcMain1.Size = new System.Drawing.Size(1126, 531); this.gcMain1.TabIndex = 1; this.gcMain1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F); this.gridView1.Appearance.Row.Options.UseFont = true; this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gv_guid, this.gv_itemBarcode, this.gv_itemNo, this.gv_depotsId, this.gv_depotSectionsId, this.gv_lotNo, this.gv_quantity, this.gv_depotsCode, this.gv_depotSectionsCode, this.gv_checkDate, this.gv_itemType, this.gv_indepDate, this.gv_iqcStatus, this.gv_suppNo, this.gv_lineNo, this.gv_billNo, this.gv_ebelnK3id, this.gv_lineK3id, this.gv_itemId, this.gv_suppId, this.gv_depotId, this.gv_ownerId, this.gv_ownerType, this.gv_stockOrgId, this.gv_indepUserCode}); this.gridView1.GridControl = this.gcMain1; this.gridView1.IndicatorWidth = 50; this.gridView1.Name = "gridView1"; this.gridView1.OptionsFind.ShowSearchNavButtons = false; this.gridView1.OptionsView.ShowAutoFilterRow = true; this.gridView1.OptionsView.ShowGroupPanel = false; // // xtraTabControl1 // this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraTabControl1.Location = new System.Drawing.Point(0, 80); this.xtraTabControl1.Name = "xtraTabControl1"; this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1; this.xtraTabControl1.Size = new System.Drawing.Size(1128, 602); this.xtraTabControl1.TabIndex = 3; this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPage1}); // // xtraTabPage1 // this.xtraTabPage1.Controls.Add(this.gcMain1); this.xtraTabPage1.Controls.Add(this.pageBar1); this.xtraTabPage1.Name = "xtraTabPage1"; this.xtraTabPage1.Size = new System.Drawing.Size(1126, 570); this.xtraTabPage1.Text = "æ°æ®æ¥è¯¢"; // // pageBar1 // this.pageBar1.CurrentPage = 1; this.pageBar1.Dock = System.Windows.Forms.DockStyle.Bottom; this.pageBar1.Location = new System.Drawing.Point(0, 531); this.pageBar1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5); this.pageBar1.Name = "pageBar1"; this.pageBar1.RecordCount = 0; this.pageBar1.Size = new System.Drawing.Size(1126, 39); this.pageBar1.TabIndex = 3; this.pageBar1.TotalPages = 0; // // CKTmkc // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1128, 682); this.Controls.Add(this.xtraTabControl1); this.Controls.Add(this.toolBarMenu1); this.IconOptions.Image = global::Gs.DevApp.Properties.Resources.logo_png_black; this.Name = "CKTmkc"; this.Text = "æ¡ç åºå"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; ((System.ComponentModel.ISupportInitialize)(this.gcMain1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit(); this.xtraTabControl1.ResumeLayout(false); this.xtraTabPage1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private UserControl.UcToolBarMenu toolBarMenu1; private DevExpress.XtraGrid.GridControl gcMain1; private DevExpress.XtraGrid.Views.Grid.GridView gridView1; private DevExpress.XtraTab.XtraTabControl xtraTabControl1; private DevExpress.XtraTab.XtraTabPage xtraTabPage1; private UserControls.Data.UcPageBar pageBar1; private DevExpress.XtraGrid.Columns.GridColumn gv_indepUserCode; private DevExpress.XtraGrid.Columns.GridColumn gv_stockOrgId; private DevExpress.XtraGrid.Columns.GridColumn gv_ownerType; private DevExpress.XtraGrid.Columns.GridColumn gv_ownerId; private DevExpress.XtraGrid.Columns.GridColumn gv_depotId; private DevExpress.XtraGrid.Columns.GridColumn gv_suppId; private DevExpress.XtraGrid.Columns.GridColumn gv_itemId; private DevExpress.XtraGrid.Columns.GridColumn gv_lineK3id; private DevExpress.XtraGrid.Columns.GridColumn gv_ebelnK3id; private DevExpress.XtraGrid.Columns.GridColumn gv_billNo; private DevExpress.XtraGrid.Columns.GridColumn gv_lineNo; private DevExpress.XtraGrid.Columns.GridColumn gv_suppNo; private DevExpress.XtraGrid.Columns.GridColumn gv_iqcStatus; private DevExpress.XtraGrid.Columns.GridColumn gv_indepDate; private DevExpress.XtraGrid.Columns.GridColumn gv_itemType; private DevExpress.XtraGrid.Columns.GridColumn gv_checkDate; private DevExpress.XtraGrid.Columns.GridColumn gv_depotSectionsCode; private DevExpress.XtraGrid.Columns.GridColumn gv_depotsCode; private DevExpress.XtraGrid.Columns.GridColumn gv_quantity; private DevExpress.XtraGrid.Columns.GridColumn gv_lotNo; private DevExpress.XtraGrid.Columns.GridColumn gv_depotSectionsId; private DevExpress.XtraGrid.Columns.GridColumn gv_depotsId; private DevExpress.XtraGrid.Columns.GridColumn gv_itemNo; private DevExpress.XtraGrid.Columns.GridColumn gv_itemBarcode; private DevExpress.XtraGrid.Columns.GridColumn gv_guid; } } DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,130 @@ using Gs.DevApp.Entity; using Gs.DevApp.ToolBox; using Gs.DevApp.UserControl; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data; using System.Threading.Tasks; using System.Windows.Forms; namespace Gs.DevApp.DevFrm { public partial class CKTmkc : DevExpress.XtraEditors.XtraForm { string _webServiceName = "Ck/"; List<FilterEntity> _filterList = new List<FilterEntity>(); public CKTmkc() { InitializeComponent(); this.toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick; this.toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick; this.toolBarMenu1.getXmlConfig(); Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, this, "", "", (value) => { Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0); }); Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) => { }, (value) => { getPageList(this.pageBar1.CurrentPage); }); getPageList(1); pageBar1.PagerEvent += PageBar1_PagerEvent; } private async void GridView1_ColumnFilterChanged(object sender, EventArgs e) { Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); await Task.Delay(100); getPageList(1); } /// <summary> /// å页äºä»¶ /// </summary> /// <param name="curPage"></param> /// <param name="pageSize"></param> private void PageBar1_PagerEvent(int curPage, int pageSize) { getPageList(curPage); } /// <summary> /// æ¥è¯¢äºä»¶ /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void ToolBarMenu1_btnQueryClick(object sender, EventArgs e) { gridView1.ColumnFilterChanged -= GridView1_ColumnFilterChanged; gridView1.ActiveFilter.Clear(); gridView1.ColumnFilterChanged += GridView1_ColumnFilterChanged; var frm = new ShowFilter(gridView1.Columns, _filterList); frm.UpdateParent += Frm_UpdateParent; frm.ShowDialog(); } /// <summary> /// æ¥è¯¢åè° /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Frm_UpdateParent(object sender, UpdateParentEventArgs e) { _filterList = e.FilterList; getPageList(1); } /// <summary> /// å·æ°äºä»¶ /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void ToolBarMenu1_btnLoadClick(object sender, EventArgs e) { getPageList(this.pageBar1.CurrentPage); } /// <summary> /// /// </summary> /// <param name="curPage">第å 页</param> /// <param name="pageSize">æ¯é¡µå æ¡</param> private void getPageList(int curPage) { var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); PageQueryModel pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "a.INDEP_DATE", "asc", "", _sbSqlWhere.ToString()); string json = JsonConvert.SerializeObject(pgq); try { var strReturn = UtilityHelper.HttpPost("", _webServiceName + "GetListPage", json); ReturnModel<PageListModel> dd = UtilityHelper.ReturnToTablePage(strReturn); if (dd.rtnCode > 0) { DataTable dt = dd.rtnData.list; gcMain1.BindingContext = new BindingContext(); gridView1.ColumnFilterChanged -= GridView1_ColumnFilterChanged; if (dt.Rows.Count > 0) { gcMain1.DataSource = dt; gcMain1.ForceInitialize(); gridView1.BestFitColumns(); } else UtilityHelper.SetDefaultTable(gcMain1, gridView1); gridView1.ColumnFilterChanged += GridView1_ColumnFilterChanged; pageBar1.TotalPages = dd.rtnData.pages;//æ»é¡µ pageBar1.CurrentPage = curPage;//å½å页 pageBar1.RecordCount = dd.rtnData.total;//æ»è®°å½æ° } else { ToolBox.MsgHelper.ShowError("æç¤ºï¼" + dd.rtnMsg); } } catch (Exception ex) { ToolBox.MsgHelper.ShowError("æç¤ºï¼" + ex.Message); } } } } DevApp/Gs.DevApp/DevFrm/Rpt/CKTmkc.resx
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,120 @@ <?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> </root> DevApp/Gs.DevApp/Gs.DevApp.csproj
@@ -391,6 +391,12 @@ <Compile Include="DevFrm\Rk\Frm_MesItemQtrkDj.Designer.cs"> <DependentUpon>Frm_MesItemQtrkDj.cs</DependentUpon> </Compile> <Compile Include="DevFrm\Rpt\CKTmkc.cs"> <SubType>Form</SubType> </Compile> <Compile Include="DevFrm\Rpt\CKTmkc.Designer.cs"> <DependentUpon>CKTmkc.cs</DependentUpon> </Compile> <Compile Include="DevFrm\Sales\Frm_SalesDeliverDj.cs"> <SubType>Form</SubType> </Compile> @@ -1147,6 +1153,12 @@ <EmbeddedResource Include="DevFrm\Rk\Frm_MesItemQtrkDj.resx"> <DependentUpon>Frm_MesItemQtrkDj.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="DevFrm\Rpt\CK.resx"> <DependentUpon>CK.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="DevFrm\Rpt\CKTmkc.resx"> <DependentUpon>CKTmkc.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="DevFrm\Sales\Frm_SalesDeliverDj.resx"> <DependentUpon>Frm_SalesDeliverDj.cs</DependentUpon> </EmbeddedResource> @@ -1319,6 +1331,7 @@ <EmbeddedResource Include="DevFrm\XtraForm1.resx"> <DependentUpon>XtraForm1.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="Properties\licenses.licx" /> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> <SubType>Designer</SubType> DevApp/Gs.DevApp/Program.cs
@@ -38,7 +38,7 @@ /// </summary> private static void _startLogin() { //Application.Run(new Gs.DevApp.TestForm.test()); //Application.Run(RibbonForm1()); //return; CefSettings settings = new CefSettings(); settings.Locale = "zh-CN"; DevApp/Gs.DevApp/Properties/licenses.licx
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,5 @@ DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v22.2, Version=22.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v22.2, Version=22.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.XtraEditors.SearchLookUpEdit, DevExpress.XtraGrid.v22.2, Version=22.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v22.2, Version=22.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v22.2, Version=22.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevApp/Gs.DevApp/UserControl/UcToolBarMenu.Designer.cs
@@ -62,9 +62,9 @@ this.btnZhongTai = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnJieAn = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnFjieAn = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnOa = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnLayout = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnHelp = new DevExpress.XtraBars.BarLargeButtonItem(); this.btnOa = new DevExpress.XtraBars.BarLargeButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); @@ -74,6 +74,8 @@ // // barManager1 // this.barManager1.AllowCustomization = false; this.barManager1.AllowMoveBarOnToolbar = false; this.barManager1.AllowShowToolbarsPopup = false; this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.bar2}); @@ -158,6 +160,8 @@ new DevExpress.XtraBars.LinkPersistInfo(this.btnLayout), new DevExpress.XtraBars.LinkPersistInfo(this.btnHelp)}); this.bar2.OptionsBar.AllowQuickCustomization = false; this.bar2.OptionsBar.DrawBorder = false; this.bar2.OptionsBar.DrawDragBorder = false; this.bar2.OptionsBar.MultiLine = true; this.bar2.OptionsBar.UseWholeRow = true; this.bar2.Text = "Main menu"; @@ -448,6 +452,15 @@ this.btnFjieAn.Name = "btnFjieAn"; this.btnFjieAn.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // btnOa // this.btnOa.Caption = "æäº¤OA"; this.btnOa.Id = 54; this.btnOa.ImageOptions.Image = global::Gs.DevApp.Properties.Resources.meeting_16x16; this.btnOa.ImageOptions.LargeImage = global::Gs.DevApp.Properties.Resources.meeting_32x321; this.btnOa.Name = "btnOa"; this.btnOa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // btnLayout // this.btnLayout.Caption = "ä¿åçé¢"; @@ -465,15 +478,6 @@ this.btnHelp.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 10F); this.btnHelp.ItemAppearance.Normal.Options.UseFont = true; this.btnHelp.Name = "btnHelp"; // // btnOa // this.btnOa.Caption = "æäº¤OA"; this.btnOa.Id = 54; this.btnOa.ImageOptions.Image = global::Gs.DevApp.Properties.Resources.meeting_16x16; this.btnOa.ImageOptions.LargeImage = global::Gs.DevApp.Properties.Resources.meeting_32x321; this.btnOa.Name = "btnOa"; this.btnOa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barDockControlTop // DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
@@ -714,6 +714,19 @@ JsonConvert.SerializeObject(_obj)); var dd = UtilityHelper.ReturnToList(strReturn); var dt = dd.rtnData; if (!string.IsNullOrEmpty(defaultActions) && defaultActions.Contains("æ¥è¯¢")) { if (dt == null || dt.Rows.Count <= 0) { dt.Columns.Add("guid", typeof(string)); dt.Columns.Add("name", typeof(string)); } DataRow newRow = dt.NewRow(); newRow["guid"] = Guid.NewGuid().ToString(); newRow["name"] = "æ¥è¯¢"; dt.Rows.Add(newRow); } var _enabledList = new List<string>(); foreach (BarItem item in barManager1.Items) { @@ -1032,6 +1045,8 @@ /// å½åç¶æ /// </summary> public string currentAction { get; set; } public string defaultActions { get; set; } #endregion