using System.Windows.Forms; namespace StandardScene.Chained { partial class DeliveryViewer { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } if (disposing) { strip?.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.currentTaskList = new System.Windows.Forms.ListView(); this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.label2 = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.checkBox2 = new System.Windows.Forms.CheckBox(); this.SuspendLayout(); // // currentTaskList // this.currentTaskList.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.currentTaskList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader8, this.columnHeader1, this.columnHeader4, this.columnHeader5, this.columnHeader9, this.columnHeader6, this.columnHeader2, this.columnHeader7, this.columnHeader3}); this.currentTaskList.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.currentTaskList.FullRowSelect = true; this.currentTaskList.GridLines = true; this.currentTaskList.HideSelection = false; this.currentTaskList.Location = new System.Drawing.Point(38, 62); this.currentTaskList.Name = "currentTaskList"; this.currentTaskList.Size = new System.Drawing.Size(1146, 429); this.currentTaskList.TabIndex = 2; this.currentTaskList.UseCompatibleStateImageBehavior = false; this.currentTaskList.View = System.Windows.Forms.View.Details; this.currentTaskList.VirtualMode = true; this.currentTaskList.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.currentTaskList_RetrieveVirtualItem); this.currentTaskList.SelectedIndexChanged += new System.EventHandler(this.currentTaskList_SelectedIndexChanged); this.currentTaskList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.currentTaskList_MouseClick); // // columnHeader8 // this.columnHeader8.Text = "任务号"; this.columnHeader8.Width = 130; // // columnHeader1 // this.columnHeader1.Text = "小车"; this.columnHeader1.Width = 100; // // columnHeader4 // this.columnHeader4.Text = "取货点"; this.columnHeader4.Width = 130; // // columnHeader5 // this.columnHeader5.Text = "放货点"; this.columnHeader5.Width = 130; // // columnHeader9 // this.columnHeader9.Text = "任务状态"; this.columnHeader9.Width = 100; // // columnHeader6 // this.columnHeader6.Text = "下发时间"; this.columnHeader6.Width = 130; // // columnHeader2 // this.columnHeader2.Text = "执行时间"; this.columnHeader2.Width = 130; // // columnHeader7 // this.columnHeader7.Text = "结束时间"; this.columnHeader7.Width = 130; // // columnHeader3 // this.columnHeader3.Text = "优先级"; this.columnHeader3.Width = 83; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label2.Location = new System.Drawing.Point(33, 7); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(88, 26); this.label2.TabIndex = 3; this.label2.Text = "任务列表"; // // timer1 // this.timer1.Enabled = true; this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Checked = true; this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox1.Location = new System.Drawing.Point(127, 15); this.checkBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(108, 16); this.checkBox1.TabIndex = 4; this.checkBox1.Text = "显示已完成任务"; this.checkBox1.UseVisualStyleBackColor = true; // // checkBox2 // this.checkBox2.AutoSize = true; this.checkBox2.Checked = true; this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox2.Location = new System.Drawing.Point(239, 14); this.checkBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.checkBox2.Name = "checkBox2"; this.checkBox2.Size = new System.Drawing.Size(318, 16); this.checkBox2.TabIndex = 5; this.checkBox2.Text = "显示废止的任务(包括Error、Canceled、Terminated)"; this.checkBox2.UseVisualStyleBackColor = true; // // DeliveryViewer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1199, 551); this.Controls.Add(this.checkBox2); this.Controls.Add(this.checkBox1); this.Controls.Add(this.label2); this.Controls.Add(this.currentTaskList); this.Name = "DeliveryViewer"; this.Text = "DeliveryViewer"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DeliveryViewer_FormClosing); this.Load += new System.EventHandler(this.DeliveryViewer_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label2; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.ColumnHeader columnHeader5; private System.Windows.Forms.ColumnHeader columnHeader6; private System.Windows.Forms.ColumnHeader columnHeader7; private System.Windows.Forms.ColumnHeader columnHeader8; private System.Windows.Forms.Timer timer1; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader9; private System.Windows.Forms.CheckBox checkBox1; private System.Windows.Forms.CheckBox checkBox2; public System.Windows.Forms.ListView currentTaskList; private System.Windows.Forms.ColumnHeader columnHeader3; } }