namespace ButcherOrder { partial class ButcherOrderForm { /// /// 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(); } 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.label1 = new System.Windows.Forms.Label(); this.syncBtn = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.orderLabel = new System.Windows.Forms.Label(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.existBtn = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.numberInput = new System.Windows.Forms.TextBox(); this.keyPanel = new System.Windows.Forms.FlowLayoutPanel(); this.okBtn = new System.Windows.Forms.Button(); this.updateBtn = new System.Windows.Forms.Button(); this.uDatePicker1 = new BWP.WinFormControl.UDatePicker(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("宋体", 15F); this.label1.Location = new System.Drawing.Point(58, 28); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(109, 20); this.label1.TabIndex = 0; this.label1.Text = "宰杀日期:"; // // syncBtn // this.syncBtn.Font = new System.Drawing.Font("宋体", 15F); this.syncBtn.Location = new System.Drawing.Point(339, 18); this.syncBtn.Name = "syncBtn"; this.syncBtn.Size = new System.Drawing.Size(108, 41); this.syncBtn.TabIndex = 2; this.syncBtn.Text = "同步数据"; this.syncBtn.UseVisualStyleBackColor = true; this.syncBtn.Click += new System.EventHandler(this.syncBtn_Click); // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("宋体", 15F); this.label2.Location = new System.Drawing.Point(466, 28); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(109, 20); this.label2.TabIndex = 3; this.label2.Text = "排宰顺序:"; // // orderLabel // this.orderLabel.AutoSize = true; this.orderLabel.Font = new System.Drawing.Font("宋体", 15F); this.orderLabel.Location = new System.Drawing.Point(564, 28); this.orderLabel.Name = "orderLabel"; this.orderLabel.Size = new System.Drawing.Size(19, 20); this.orderLabel.TabIndex = 4; this.orderLabel.Text = "0"; // // dataGridView1 // this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Location = new System.Drawing.Point(30, 91); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RowTemplate.Height = 23; this.dataGridView1.Size = new System.Drawing.Size(595, 569); this.dataGridView1.TabIndex = 5; // // existBtn // this.existBtn.Font = new System.Drawing.Font("宋体", 15F); this.existBtn.Location = new System.Drawing.Point(900, 18); this.existBtn.Name = "existBtn"; this.existBtn.Size = new System.Drawing.Size(108, 41); this.existBtn.TabIndex = 6; this.existBtn.Text = "退出"; this.existBtn.UseVisualStyleBackColor = true; this.existBtn.Click += new System.EventHandler(this.existBtn_Click); // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("宋体", 15F); this.label3.Location = new System.Drawing.Point(710, 95); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(109, 20); this.label3.TabIndex = 7; this.label3.Text = "烫褪头数:"; // // numberInput // this.numberInput.Font = new System.Drawing.Font("宋体", 15F); this.numberInput.Location = new System.Drawing.Point(821, 92); this.numberInput.Name = "numberInput"; this.numberInput.Size = new System.Drawing.Size(141, 30); this.numberInput.TabIndex = 8; // // keyPanel // this.keyPanel.Location = new System.Drawing.Point(719, 150); this.keyPanel.Name = "keyPanel"; this.keyPanel.Size = new System.Drawing.Size(250, 333); this.keyPanel.TabIndex = 9; // // okBtn // this.okBtn.Font = new System.Drawing.Font("宋体", 15F); this.okBtn.Location = new System.Drawing.Point(715, 509); this.okBtn.Name = "okBtn"; this.okBtn.Size = new System.Drawing.Size(108, 41); this.okBtn.TabIndex = 10; this.okBtn.Text = "确定"; this.okBtn.UseVisualStyleBackColor = true; this.okBtn.Click += new System.EventHandler(this.okBtn_Click); // // updateBtn // this.updateBtn.Font = new System.Drawing.Font("宋体", 15F); this.updateBtn.Location = new System.Drawing.Point(855, 509); this.updateBtn.Name = "updateBtn"; this.updateBtn.Size = new System.Drawing.Size(108, 41); this.updateBtn.TabIndex = 11; this.updateBtn.Text = "更新"; this.updateBtn.UseVisualStyleBackColor = true; this.updateBtn.Click += new System.EventHandler(this.updateBtn_Click); // // uDatePicker1 // this.uDatePicker1.Font = new System.Drawing.Font("宋体", 15F); this.uDatePicker1.Location = new System.Drawing.Point(166, 23); this.uDatePicker1.Name = "uDatePicker1"; this.uDatePicker1.Size = new System.Drawing.Size(150, 30); this.uDatePicker1.TabIndex = 1; this.uDatePicker1.Text = "2017/09/05"; // // ButcherOrderForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1020, 690); this.Controls.Add(this.updateBtn); this.Controls.Add(this.okBtn); this.Controls.Add(this.keyPanel); this.Controls.Add(this.numberInput); this.Controls.Add(this.label3); this.Controls.Add(this.existBtn); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.orderLabel); this.Controls.Add(this.label2); this.Controls.Add(this.syncBtn); this.Controls.Add(this.uDatePicker1); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "ButcherOrderForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "屠宰顺序同步"; ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private BWP.WinFormControl.UDatePicker uDatePicker1; private System.Windows.Forms.Button syncBtn; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label orderLabel; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.Button existBtn; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox numberInput; private System.Windows.Forms.FlowLayoutPanel keyPanel; private System.Windows.Forms.Button okBtn; private System.Windows.Forms.Button updateBtn; } }