Browse Source

添加窗体

章政 8 years ago
parent
commit
5669bbc730

+ 1 - 0
UAS-MES/FunctionCode/Warehouse/Warehouse_FinishedProductOut.Designer.cs

@@ -131,6 +131,7 @@
             this.ProdDetail.TabIndex = 214;
             this.ProdDetail.Text = "产品明细";
             this.ProdDetail.UseVisualStyleBackColor = false;
+            this.ProdDetail.Click += new System.EventHandler(this.ProdDetail_Click);
             // 
             // NewProdInOut
             // 

+ 5 - 0
UAS-MES/FunctionCode/Warehouse/Warehouse_FinishedProductOut.cs

@@ -94,5 +94,10 @@ namespace UAS_MES.Warehouse
             BaseUtil.SetFormCenter(newpi);
             newpi.ShowDialog();
         }
+
+        private void ProdDetail_Click(object sender, EventArgs e)
+        {
+
+        }
     }
 }

+ 63 - 0
UAS-MES/FunctionCode/Warehouse/Warehouse_ProdDetail.Designer.cs

@@ -0,0 +1,63 @@
+namespace UAS_MES.Warehouse
+{
+    partial class Warehouse_ProdDetail
+    {
+        /// <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.headBar1 = new UAS_MES.CustomControl.HeadBar();
+            this.SuspendLayout();
+            // 
+            // headBar1
+            // 
+            this.headBar1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
+            this.headBar1.Dock = System.Windows.Forms.DockStyle.Top;
+            this.headBar1.Location = new System.Drawing.Point(0, 0);
+            this.headBar1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+            this.headBar1.Name = "headBar1";
+            this.headBar1.Size = new System.Drawing.Size(404, 40);
+            this.headBar1.TabIndex = 0;
+            this.headBar1.Title = null;
+            // 
+            // Warehouse_ProdDetail
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(404, 253);
+            this.Controls.Add(this.headBar1);
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+            this.Name = "Warehouse_ProdDetail";
+            this.Text = "Warehouse_ProdDetail";
+            this.Load += new System.EventHandler(this.Warehouse_ProdDetail_Load);
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private CustomControl.HeadBar headBar1;
+    }
+}

+ 24 - 0
UAS-MES/FunctionCode/Warehouse/Warehouse_ProdDetail.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace UAS_MES.Warehouse
+{
+    public partial class Warehouse_ProdDetail : Form
+    {
+        public Warehouse_ProdDetail()
+        {
+            InitializeComponent();
+        }
+
+        private void Warehouse_ProdDetail_Load(object sender, EventArgs e)
+        {
+
+        }
+    }
+}