namespace BooksManageSystem { partial class FrmAddNewBook { /// /// 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddNewBook)); this.btn_OK = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.txt_Bookname = new System.Windows.Forms.TextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.cb_IsStuBook = new System.Windows.Forms.CheckBox(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.txt_Count = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.txt_orderPrice = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.txt_Price = new System.Windows.Forms.TextBox(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // btn_OK // this.btn_OK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btn_OK.Location = new System.Drawing.Point(341, 118); this.btn_OK.Name = "btn_OK"; this.btn_OK.Size = new System.Drawing.Size(86, 32); this.btn_OK.TabIndex = 0; this.btn_OK.Text = "确认"; this.btn_OK.UseVisualStyleBackColor = true; this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(31, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(35, 17); this.label1.TabIndex = 1; this.label1.Text = "书名:"; // // txt_Bookname // this.txt_Bookname.Location = new System.Drawing.Point(72, 21); this.txt_Bookname.Name = "txt_Bookname"; this.txt_Bookname.Size = new System.Drawing.Size(212, 23); this.txt_Bookname.TabIndex = 2; // // groupBox1 // this.groupBox1.Controls.Add(this.cb_IsStuBook); this.groupBox1.Controls.Add(this.label5); this.groupBox1.Controls.Add(this.label4); this.groupBox1.Controls.Add(this.txt_Count); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.txt_orderPrice); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.txt_Price); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.btn_OK); this.groupBox1.Controls.Add(this.txt_Bookname); this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(433, 156); this.groupBox1.TabIndex = 3; this.groupBox1.TabStop = false; this.groupBox1.Text = "书籍信息"; // // cb_IsStuBook // this.cb_IsStuBook.AutoSize = true; this.cb_IsStuBook.Location = new System.Drawing.Point(72, 124); this.cb_IsStuBook.Name = "cb_IsStuBook"; this.cb_IsStuBook.Size = new System.Drawing.Size(75, 21); this.cb_IsStuBook.TabIndex = 10; this.cb_IsStuBook.Text = "学生用书"; this.cb_IsStuBook.UseVisualStyleBackColor = true; // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(7, 124); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(0, 17); this.label5.TabIndex = 9; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(31, 99); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(35, 17); this.label4.TabIndex = 7; this.label4.Text = "数量:"; // // txt_Count // this.txt_Count.Location = new System.Drawing.Point(72, 96); this.txt_Count.Name = "txt_Count"; this.txt_Count.Size = new System.Drawing.Size(69, 23); this.txt_Count.TabIndex = 8; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(19, 74); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(47, 17); this.label3.TabIndex = 5; this.label3.Text = "购书价:"; // // txt_orderPrice // this.txt_orderPrice.Location = new System.Drawing.Point(72, 71); this.txt_orderPrice.Name = "txt_orderPrice"; this.txt_orderPrice.Size = new System.Drawing.Size(69, 23); this.txt_orderPrice.TabIndex = 6; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(31, 49); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(35, 17); this.label2.TabIndex = 3; this.label2.Text = "定价:"; // // txt_Price // this.txt_Price.Location = new System.Drawing.Point(72, 46); this.txt_Price.Name = "txt_Price"; this.txt_Price.Size = new System.Drawing.Size(69, 23); this.txt_Price.TabIndex = 4; // // FrmAddNewBook // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(457, 181); this.Controls.Add(this.groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FrmAddNewBook"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "添加新书"; this.Load += new System.EventHandler(this.FrmAddNewBook_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button btn_OK; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txt_Bookname; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label4; private System.Windows.Forms.TextBox txt_Count; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox txt_orderPrice; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txt_Price; private System.Windows.Forms.Label label5; private System.Windows.Forms.CheckBox cb_IsStuBook; } }