|
|
|
@ -28,156 +28,175 @@ |
|
|
|
/// </summary>
|
|
|
|
private void InitializeComponent() |
|
|
|
{ |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
this.closeBtn = new WinFormControl.NButton(); |
|
|
|
this.taskGrid = new WinFormControl.UDataGridView(); |
|
|
|
this.I_Goods_Name = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_OrderNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_FinishNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_LastNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_OrderWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_FinishWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_LastWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
((System.ComponentModel.ISupportInitialize)(this.taskGrid)).BeginInit(); |
|
|
|
this.SuspendLayout(); |
|
|
|
//
|
|
|
|
// closeBtn
|
|
|
|
//
|
|
|
|
this.closeBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
|
|
this.closeBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(136)))), ((int)(((byte)(255))))); |
|
|
|
this.closeBtn.ClickColor = System.Drawing.Color.YellowGreen; |
|
|
|
this.closeBtn.Font = new System.Drawing.Font("宋体", 15F); |
|
|
|
this.closeBtn.ForeColor = System.Drawing.Color.White; |
|
|
|
this.closeBtn.Location = new System.Drawing.Point(780, 7); |
|
|
|
this.closeBtn.Name = "closeBtn"; |
|
|
|
this.closeBtn.PlaySound = false; |
|
|
|
this.closeBtn.Size = new System.Drawing.Size(90, 45); |
|
|
|
this.closeBtn.SoundType = WinFormControl.SoundType.Click; |
|
|
|
this.closeBtn.TabIndex = 13; |
|
|
|
this.closeBtn.Text = "关闭"; |
|
|
|
this.closeBtn.ToColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(136)))), ((int)(((byte)(255))))); |
|
|
|
this.closeBtn.UseVisualStyleBackColor = false; |
|
|
|
this.closeBtn.Click += new System.EventHandler(this.CloseBtn_Click); |
|
|
|
//
|
|
|
|
// taskGrid
|
|
|
|
//
|
|
|
|
this.taskGrid.AllowUserToAddRows = false; |
|
|
|
this.taskGrid.AllowUserToDeleteRows = false; |
|
|
|
this.taskGrid.AllowUserToResizeColumns = false; |
|
|
|
this.taskGrid.AllowUserToResizeRows = false; |
|
|
|
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235))))); |
|
|
|
this.taskGrid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; |
|
|
|
this.taskGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
|
|
| System.Windows.Forms.AnchorStyles.Left) |
|
|
|
| System.Windows.Forms.AnchorStyles.Right))); |
|
|
|
this.taskGrid.BackgroundColor = System.Drawing.Color.White; |
|
|
|
this.taskGrid.BorderStyle = System.Windows.Forms.BorderStyle.None; |
|
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
|
|
dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F); |
|
|
|
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; |
|
|
|
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; |
|
|
|
this.taskGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; |
|
|
|
this.taskGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
|
|
|
this.taskGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { |
|
|
|
this.I_Goods_Name, |
|
|
|
this.I_OrderNumber, |
|
|
|
this.I_FinishNumber, |
|
|
|
this.I_LastNumber, |
|
|
|
this.I_OrderWeight, |
|
|
|
this.I_FinishWeight, |
|
|
|
this.I_LastWeight}); |
|
|
|
this.taskGrid.Location = new System.Drawing.Point(12, 58); |
|
|
|
this.taskGrid.MultiSelect = false; |
|
|
|
this.taskGrid.Name = "taskGrid"; |
|
|
|
this.taskGrid.ReadOnly = true; |
|
|
|
this.taskGrid.RowHeadersVisible = false; |
|
|
|
dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); |
|
|
|
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218))))); |
|
|
|
this.taskGrid.RowsDefaultCellStyle = dataGridViewCellStyle4; |
|
|
|
this.taskGrid.RowTemplate.Height = 23; |
|
|
|
this.taskGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; |
|
|
|
this.taskGrid.Size = new System.Drawing.Size(858, 539); |
|
|
|
this.taskGrid.TabIndex = 12; |
|
|
|
//
|
|
|
|
// I_Goods_Name
|
|
|
|
//
|
|
|
|
this.I_Goods_Name.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; |
|
|
|
this.I_Goods_Name.DataPropertyName = "Goods_Name"; |
|
|
|
this.I_Goods_Name.FillWeight = 150F; |
|
|
|
this.I_Goods_Name.HeaderText = "产品名称"; |
|
|
|
this.I_Goods_Name.Name = "I_Goods_Name"; |
|
|
|
this.I_Goods_Name.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_OrderNumber
|
|
|
|
//
|
|
|
|
this.I_OrderNumber.DataPropertyName = "OrderNumber"; |
|
|
|
this.I_OrderNumber.HeaderText = "订货数量"; |
|
|
|
this.I_OrderNumber.Name = "I_OrderNumber"; |
|
|
|
this.I_OrderNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_FinishNumber
|
|
|
|
//
|
|
|
|
this.I_FinishNumber.DataPropertyName = "FinshNumber"; |
|
|
|
this.I_FinishNumber.HeaderText = "完工数量"; |
|
|
|
this.I_FinishNumber.Name = "I_FinishNumber"; |
|
|
|
this.I_FinishNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_LastNumber
|
|
|
|
//
|
|
|
|
this.I_LastNumber.DataPropertyName = "LastNumber"; |
|
|
|
this.I_LastNumber.HeaderText = "剩余数量"; |
|
|
|
this.I_LastNumber.Name = "I_LastNumber"; |
|
|
|
this.I_LastNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_OrderWeight
|
|
|
|
//
|
|
|
|
this.I_OrderWeight.DataPropertyName = "OrderWeight"; |
|
|
|
dataGridViewCellStyle3.Format = "#0.######"; |
|
|
|
this.I_OrderWeight.DefaultCellStyle = dataGridViewCellStyle3; |
|
|
|
this.I_OrderWeight.HeaderText = "订货重量"; |
|
|
|
this.I_OrderWeight.Name = "I_OrderWeight"; |
|
|
|
this.I_OrderWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_FinishWeight
|
|
|
|
//
|
|
|
|
this.I_FinishWeight.HeaderText = "完工重量"; |
|
|
|
this.I_FinishWeight.Name = "I_FinishWeight"; |
|
|
|
this.I_FinishWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_LastWeight
|
|
|
|
//
|
|
|
|
this.I_LastWeight.DataPropertyName = "LastWeight"; |
|
|
|
this.I_LastWeight.HeaderText = "剩余重量"; |
|
|
|
this.I_LastWeight.Name = "I_LastWeight"; |
|
|
|
this.I_LastWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// ViewTaskForm
|
|
|
|
//
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); |
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
|
|
this.ClientSize = new System.Drawing.Size(882, 604); |
|
|
|
this.Controls.Add(this.closeBtn); |
|
|
|
this.Controls.Add(this.taskGrid); |
|
|
|
this.Name = "ViewTaskForm"; |
|
|
|
this.Text = "任务完工情况"; |
|
|
|
((System.ComponentModel.ISupportInitialize)(this.taskGrid)).EndInit(); |
|
|
|
this.ResumeLayout(false); |
|
|
|
|
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
|
|
this.closeBtn = new WinFormControl.NButton(); |
|
|
|
this.taskGrid = new WinFormControl.UDataGridView(); |
|
|
|
this.I_Goods_Name = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_OrderNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_FinishNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_LastNumber = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_OrderWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_FinishWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
this.I_LastWeight = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
|
|
((System.ComponentModel.ISupportInitialize)(this.taskGrid)).BeginInit(); |
|
|
|
this.SuspendLayout(); |
|
|
|
//
|
|
|
|
// closeBtn
|
|
|
|
//
|
|
|
|
this.closeBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
|
|
this.closeBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(136)))), ((int)(((byte)(255))))); |
|
|
|
this.closeBtn.ClickColor = System.Drawing.Color.YellowGreen; |
|
|
|
this.closeBtn.Font = new System.Drawing.Font("宋体", 15F); |
|
|
|
this.closeBtn.ForeColor = System.Drawing.Color.White; |
|
|
|
this.closeBtn.Location = new System.Drawing.Point(1560, 14); |
|
|
|
this.closeBtn.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); |
|
|
|
this.closeBtn.Name = "closeBtn"; |
|
|
|
this.closeBtn.PlaySound = false; |
|
|
|
this.closeBtn.Size = new System.Drawing.Size(180, 90); |
|
|
|
this.closeBtn.SoundType = WinFormControl.SoundType.Click; |
|
|
|
this.closeBtn.TabIndex = 13; |
|
|
|
this.closeBtn.Text = "关闭"; |
|
|
|
this.closeBtn.ToColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(136)))), ((int)(((byte)(255))))); |
|
|
|
this.closeBtn.UseVisualStyleBackColor = false; |
|
|
|
this.closeBtn.Click += new System.EventHandler(this.CloseBtn_Click); |
|
|
|
//
|
|
|
|
// taskGrid
|
|
|
|
//
|
|
|
|
this.taskGrid.AllowUserToAddRows = false; |
|
|
|
this.taskGrid.AllowUserToDeleteRows = false; |
|
|
|
this.taskGrid.AllowUserToResizeColumns = false; |
|
|
|
this.taskGrid.AllowUserToResizeRows = false; |
|
|
|
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235))))); |
|
|
|
this.taskGrid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; |
|
|
|
this.taskGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
|
|
| System.Windows.Forms.AnchorStyles.Left) |
|
|
|
| System.Windows.Forms.AnchorStyles.Right))); |
|
|
|
this.taskGrid.BackgroundColor = System.Drawing.Color.White; |
|
|
|
this.taskGrid.BorderStyle = System.Windows.Forms.BorderStyle.None; |
|
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
|
|
dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F); |
|
|
|
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; |
|
|
|
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; |
|
|
|
this.taskGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; |
|
|
|
this.taskGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
|
|
|
this.taskGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { |
|
|
|
this.I_Goods_Name, |
|
|
|
this.I_OrderNumber, |
|
|
|
this.I_FinishNumber, |
|
|
|
this.I_LastNumber, |
|
|
|
this.I_OrderWeight, |
|
|
|
this.I_FinishWeight, |
|
|
|
this.I_LastWeight}); |
|
|
|
this.taskGrid.Location = new System.Drawing.Point(24, 116); |
|
|
|
this.taskGrid.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); |
|
|
|
this.taskGrid.MultiSelect = false; |
|
|
|
this.taskGrid.Name = "taskGrid"; |
|
|
|
this.taskGrid.ReadOnly = true; |
|
|
|
this.taskGrid.RowHeadersVisible = false; |
|
|
|
dataGridViewCellStyle9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); |
|
|
|
dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218))))); |
|
|
|
this.taskGrid.RowsDefaultCellStyle = dataGridViewCellStyle9; |
|
|
|
this.taskGrid.RowTemplate.Height = 23; |
|
|
|
this.taskGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; |
|
|
|
this.taskGrid.Size = new System.Drawing.Size(1716, 1078); |
|
|
|
this.taskGrid.TabIndex = 12; |
|
|
|
//
|
|
|
|
// I_Goods_Name
|
|
|
|
//
|
|
|
|
this.I_Goods_Name.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; |
|
|
|
this.I_Goods_Name.DataPropertyName = "Goods_Name"; |
|
|
|
this.I_Goods_Name.FillWeight = 150F; |
|
|
|
this.I_Goods_Name.HeaderText = "产品名称"; |
|
|
|
this.I_Goods_Name.Name = "I_Goods_Name"; |
|
|
|
this.I_Goods_Name.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_OrderNumber
|
|
|
|
//
|
|
|
|
this.I_OrderNumber.DataPropertyName = "OrderNumber"; |
|
|
|
dataGridViewCellStyle3.Format = "#0.######"; |
|
|
|
this.I_OrderNumber.DefaultCellStyle = dataGridViewCellStyle3; |
|
|
|
this.I_OrderNumber.HeaderText = "订货数量"; |
|
|
|
this.I_OrderNumber.Name = "I_OrderNumber"; |
|
|
|
this.I_OrderNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_FinishNumber
|
|
|
|
//
|
|
|
|
this.I_FinishNumber.DataPropertyName = "FinishNumber"; |
|
|
|
dataGridViewCellStyle4.Format = "#0.######"; |
|
|
|
this.I_FinishNumber.DefaultCellStyle = dataGridViewCellStyle4; |
|
|
|
this.I_FinishNumber.HeaderText = "完工数量"; |
|
|
|
this.I_FinishNumber.Name = "I_FinishNumber"; |
|
|
|
this.I_FinishNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_LastNumber
|
|
|
|
//
|
|
|
|
this.I_LastNumber.DataPropertyName = "LastNumber"; |
|
|
|
dataGridViewCellStyle5.Format = "#0.######"; |
|
|
|
this.I_LastNumber.DefaultCellStyle = dataGridViewCellStyle5; |
|
|
|
this.I_LastNumber.HeaderText = "剩余数量"; |
|
|
|
this.I_LastNumber.Name = "I_LastNumber"; |
|
|
|
this.I_LastNumber.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_OrderWeight
|
|
|
|
//
|
|
|
|
this.I_OrderWeight.DataPropertyName = "OrderWeight"; |
|
|
|
dataGridViewCellStyle6.Format = "#0.######"; |
|
|
|
this.I_OrderWeight.DefaultCellStyle = dataGridViewCellStyle6; |
|
|
|
this.I_OrderWeight.HeaderText = "订货重量"; |
|
|
|
this.I_OrderWeight.Name = "I_OrderWeight"; |
|
|
|
this.I_OrderWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_FinishWeight
|
|
|
|
//
|
|
|
|
this.I_FinishWeight.DataPropertyName = "FinishWeight"; |
|
|
|
dataGridViewCellStyle7.Format = "#0.######"; |
|
|
|
this.I_FinishWeight.DefaultCellStyle = dataGridViewCellStyle7; |
|
|
|
this.I_FinishWeight.HeaderText = "完工重量"; |
|
|
|
this.I_FinishWeight.Name = "I_FinishWeight"; |
|
|
|
this.I_FinishWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// I_LastWeight
|
|
|
|
//
|
|
|
|
this.I_LastWeight.DataPropertyName = "LastWeight"; |
|
|
|
dataGridViewCellStyle8.Format = "#0.######"; |
|
|
|
this.I_LastWeight.DefaultCellStyle = dataGridViewCellStyle8; |
|
|
|
this.I_LastWeight.HeaderText = "剩余重量"; |
|
|
|
this.I_LastWeight.Name = "I_LastWeight"; |
|
|
|
this.I_LastWeight.ReadOnly = true; |
|
|
|
//
|
|
|
|
// ViewTaskForm
|
|
|
|
//
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F); |
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
|
|
this.ClientSize = new System.Drawing.Size(1764, 1208); |
|
|
|
this.Controls.Add(this.closeBtn); |
|
|
|
this.Controls.Add(this.taskGrid); |
|
|
|
this.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); |
|
|
|
this.Name = "ViewTaskForm"; |
|
|
|
this.Text = "任务完工情况"; |
|
|
|
((System.ComponentModel.ISupportInitialize)(this.taskGrid)).EndInit(); |
|
|
|
this.ResumeLayout(false); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
private WinFormControl.NButton closeBtn; |
|
|
|
private WinFormControl.UDataGridView taskGrid; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_Goods_Name; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_OrderNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_FinishNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_LastNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_OrderWeight; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_FinishWeight; |
|
|
|
private WinFormControl.NButton closeBtn; |
|
|
|
private WinFormControl.UDataGridView taskGrid; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_Goods_Name; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_OrderNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_FinishNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_LastNumber; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_OrderWeight; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_FinishWeight; |
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn I_LastWeight; |
|
|
|
} |
|
|
|
} |