namespace OutHouseView { partial class OutHouseFrom { /// /// 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() { 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 System.Windows.Forms.Button(); this.orderGrid = new BWP.WinFormControl.UDataGridView(); this.C_ID = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.C_Order = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.C_LiveColonyHouse_Name = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.C_Number = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.C_Finish = new System.Windows.Forms.DataGridViewButtonColumn(); ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit(); this.SuspendLayout(); // // closeBtn // this.closeBtn.Font = new System.Drawing.Font("宋体", 15F); this.closeBtn.Location = new System.Drawing.Point(905, 12); this.closeBtn.Name = "closeBtn"; this.closeBtn.Size = new System.Drawing.Size(143, 49); this.closeBtn.TabIndex = 1; this.closeBtn.Text = "退出"; this.closeBtn.UseVisualStyleBackColor = true; this.closeBtn.Click += new System.EventHandler(this.closeBtn_Click); // // orderGrid // this.orderGrid.AllowUserToAddRows = false; this.orderGrid.AllowUserToDeleteRows = false; this.orderGrid.AllowUserToResizeColumns = false; this.orderGrid.AllowUserToResizeRows = false; dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235))))); this.orderGrid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; this.orderGrid.BackgroundColor = System.Drawing.Color.White; dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control; dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F); dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText; dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.orderGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; this.orderGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.orderGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.C_ID, this.C_Order, this.C_LiveColonyHouse_Name, this.C_Number, this.C_Finish}); this.orderGrid.Location = new System.Drawing.Point(21, 83); this.orderGrid.MultiSelect = false; this.orderGrid.Name = "orderGrid"; this.orderGrid.ReadOnly = true; this.orderGrid.RowHeadersVisible = false; dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 20F); dataGridViewCellStyle4.ForeColor = System.Drawing.Color.Black; dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(163)))), ((int)(((byte)(218))))); dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.Black; this.orderGrid.RowsDefaultCellStyle = dataGridViewCellStyle4; this.orderGrid.RowTemplate.Height = 80; this.orderGrid.ScrollBars = System.Windows.Forms.ScrollBars.None; this.orderGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.orderGrid.Size = new System.Drawing.Size(1027, 509); this.orderGrid.TabIndex = 2; this.orderGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.orderGrid_CellContentClick); // // C_ID // this.C_ID.DataPropertyName = "ID"; this.C_ID.HeaderText = "ID"; this.C_ID.Name = "C_ID"; this.C_ID.ReadOnly = true; this.C_ID.Visible = false; // // C_Order // this.C_Order.DataPropertyName = "Order"; this.C_Order.HeaderText = "序号"; this.C_Order.Name = "C_Order"; this.C_Order.ReadOnly = true; // // C_LiveColonyHouse_Name // this.C_LiveColonyHouse_Name.DataPropertyName = "LiveColonyHouse_Name"; this.C_LiveColonyHouse_Name.HeaderText = "圈舍"; this.C_LiveColonyHouse_Name.Name = "C_LiveColonyHouse_Name"; this.C_LiveColonyHouse_Name.ReadOnly = true; this.C_LiveColonyHouse_Name.Width = 600; // // C_Number // this.C_Number.DataPropertyName = "Number"; this.C_Number.HeaderText = "头数"; this.C_Number.Name = "C_Number"; this.C_Number.ReadOnly = true; this.C_Number.Width = 150; // // C_Finish // dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; dataGridViewCellStyle3.Padding = new System.Windows.Forms.Padding(10); this.C_Finish.DefaultCellStyle = dataGridViewCellStyle3; this.C_Finish.HeaderText = "完毕"; this.C_Finish.Name = "C_Finish"; this.C_Finish.ReadOnly = true; this.C_Finish.Text = "完毕"; this.C_Finish.UseColumnTextForButtonValue = true; this.C_Finish.Width = 170; // // OutHouseFrom // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1067, 604); this.Controls.Add(this.orderGrid); this.Controls.Add(this.closeBtn); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "OutHouseFrom"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "赶猪进场"; this.Load += new System.EventHandler(this.OutHouseFrom_Load); ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button closeBtn; private BWP.WinFormControl.UDataGridView orderGrid; private System.Windows.Forms.DataGridViewTextBoxColumn C_ID; private System.Windows.Forms.DataGridViewTextBoxColumn C_Order; private System.Windows.Forms.DataGridViewTextBoxColumn C_LiveColonyHouse_Name; private System.Windows.Forms.DataGridViewTextBoxColumn C_Number; private System.Windows.Forms.DataGridViewButtonColumn C_Finish; } }