You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

231 lines
8.4 KiB

3 years ago

namespace EC.AutoWeightServer.UI
{
partial class FrmBill
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBill));
this.dataGridView = new System.Windows.Forms.DataGridView();
this.SerialNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SiteName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SupplierName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.MaterialNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.LicensePlate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TrailerPlate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DriverName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Driver2Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.BillWeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.InWeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OutWeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.NetWeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.InStartTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OutStartTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.State = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.SuspendLayout();
//
// dataGridView
//
this.dataGridView.AllowUserToAddRows = false;
this.dataGridView.AllowUserToDeleteRows = false;
this.dataGridView.AllowUserToResizeColumns = false;
this.dataGridView.AllowUserToResizeRows = false;
this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.SerialNumber,
this.SiteName,
this.SupplierName,
this.MaterialNo,
this.LicensePlate,
this.TrailerPlate,
this.DriverName,
this.Driver2Name,
this.BillWeight,
this.InWeight,
this.OutWeight,
this.NetWeight,
this.InStartTime,
this.OutStartTime,
this.State});
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView.Location = new System.Drawing.Point(0, 0);
this.dataGridView.Name = "dataGridView";
this.dataGridView.ReadOnly = true;
this.dataGridView.RowHeadersWidth = 47;
this.dataGridView.RowTemplate.Height = 23;
2 years ago
this.dataGridView.Size = new System.Drawing.Size(1334, 461);
3 years ago
this.dataGridView.TabIndex = 0;
this.dataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellContentClick);
//
// SerialNumber
//
this.SerialNumber.HeaderText = "运单号";
this.SerialNumber.MinimumWidth = 6;
this.SerialNumber.Name = "SerialNumber";
this.SerialNumber.ReadOnly = true;
//
// SiteName
//
this.SiteName.HeaderText = "场地";
this.SiteName.MinimumWidth = 6;
this.SiteName.Name = "SiteName";
this.SiteName.ReadOnly = true;
//
// SupplierName
//
this.SupplierName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.SupplierName.HeaderText = "供应商";
this.SupplierName.MinimumWidth = 6;
this.SupplierName.Name = "SupplierName";
this.SupplierName.ReadOnly = true;
2 years ago
this.SupplierName.Width = 66;
3 years ago
//
// MaterialNo
//
this.MaterialNo.HeaderText = "料号";
this.MaterialNo.MinimumWidth = 6;
this.MaterialNo.Name = "MaterialNo";
this.MaterialNo.ReadOnly = true;
//
// LicensePlate
//
this.LicensePlate.HeaderText = "运输车";
this.LicensePlate.MinimumWidth = 6;
this.LicensePlate.Name = "LicensePlate";
this.LicensePlate.ReadOnly = true;
//
// TrailerPlate
//
this.TrailerPlate.HeaderText = "挂车";
this.TrailerPlate.MinimumWidth = 6;
this.TrailerPlate.Name = "TrailerPlate";
this.TrailerPlate.ReadOnly = true;
//
// DriverName
//
this.DriverName.HeaderText = "运输员";
this.DriverName.MinimumWidth = 6;
this.DriverName.Name = "DriverName";
this.DriverName.ReadOnly = true;
//
// Driver2Name
//
this.Driver2Name.HeaderText = "押运员";
this.Driver2Name.MinimumWidth = 6;
this.Driver2Name.Name = "Driver2Name";
this.Driver2Name.ReadOnly = true;
//
// BillWeight
//
this.BillWeight.HeaderText = "运单重量";
this.BillWeight.MinimumWidth = 6;
this.BillWeight.Name = "BillWeight";
this.BillWeight.ReadOnly = true;
//
// InWeight
//
this.InWeight.HeaderText = "入场重量";
this.InWeight.MinimumWidth = 6;
this.InWeight.Name = "InWeight";
this.InWeight.ReadOnly = true;
//
// OutWeight
//
this.OutWeight.HeaderText = "出场重量";
this.OutWeight.MinimumWidth = 6;
this.OutWeight.Name = "OutWeight";
this.OutWeight.ReadOnly = true;
//
// NetWeight
//
this.NetWeight.HeaderText = "实际重量";
this.NetWeight.MinimumWidth = 6;
this.NetWeight.Name = "NetWeight";
this.NetWeight.ReadOnly = true;
//
// InStartTime
//
this.InStartTime.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.InStartTime.HeaderText = "入场时间";
this.InStartTime.MinimumWidth = 6;
this.InStartTime.Name = "InStartTime";
this.InStartTime.ReadOnly = true;
2 years ago
this.InStartTime.Width = 78;
3 years ago
//
// OutStartTime
//
this.OutStartTime.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.OutStartTime.HeaderText = "出场时间";
this.OutStartTime.MinimumWidth = 6;
this.OutStartTime.Name = "OutStartTime";
this.OutStartTime.ReadOnly = true;
2 years ago
this.OutStartTime.Width = 78;
3 years ago
//
// State
//
this.State.HeaderText = "状态";
this.State.MinimumWidth = 6;
this.State.Name = "State";
this.State.ReadOnly = true;
//
// FrmBill
//
2 years ago
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
3 years ago
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2 years ago
this.ClientSize = new System.Drawing.Size(1334, 461);
3 years ago
this.Controls.Add(this.dataGridView);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
2 years ago
this.MinimizeBox = false;
3 years ago
this.Name = "FrmBill";
this.Text = "当日运单";
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridView;
private System.Windows.Forms.DataGridViewTextBoxColumn SerialNumber;
private System.Windows.Forms.DataGridViewTextBoxColumn SiteName;
private System.Windows.Forms.DataGridViewTextBoxColumn SupplierName;
private System.Windows.Forms.DataGridViewTextBoxColumn MaterialNo;
private System.Windows.Forms.DataGridViewTextBoxColumn LicensePlate;
private System.Windows.Forms.DataGridViewTextBoxColumn TrailerPlate;
private System.Windows.Forms.DataGridViewTextBoxColumn DriverName;
private System.Windows.Forms.DataGridViewTextBoxColumn Driver2Name;
private System.Windows.Forms.DataGridViewTextBoxColumn BillWeight;
private System.Windows.Forms.DataGridViewTextBoxColumn InWeight;
private System.Windows.Forms.DataGridViewTextBoxColumn OutWeight;
private System.Windows.Forms.DataGridViewTextBoxColumn NetWeight;
private System.Windows.Forms.DataGridViewTextBoxColumn InStartTime;
private System.Windows.Forms.DataGridViewTextBoxColumn OutStartTime;
private System.Windows.Forms.DataGridViewTextBoxColumn State;
}
}