fbooksearch.designer.cs
来自「 一个用C#编写的图书管系统」· CS 代码 · 共 321 行 · 第 1/2 页
CS
321 行
this.ColumnName.ReadOnly = true;
//
// ColumnAuthor
//
this.ColumnAuthor.DataPropertyName = "BookAuthor";
this.ColumnAuthor.HeaderText = "作者";
this.ColumnAuthor.Name = "ColumnAuthor";
this.ColumnAuthor.ReadOnly = true;
//
// ColumnCount
//
this.ColumnCount.DataPropertyName = "BookCount";
this.ColumnCount.HeaderText = "字数";
this.ColumnCount.Name = "ColumnCount";
this.ColumnCount.ReadOnly = true;
//
// ColumnPublish
//
this.ColumnPublish.DataPropertyName = "BookPublish";
this.ColumnPublish.HeaderText = "出版社";
this.ColumnPublish.Name = "ColumnPublish";
this.ColumnPublish.ReadOnly = true;
//
// ColumnTime
//
this.ColumnTime.DataPropertyName = "PublishTime";
this.ColumnTime.HeaderText = "出版日期";
this.ColumnTime.Name = "ColumnTime";
this.ColumnTime.ReadOnly = true;
//
// ColumnState
//
this.ColumnState.DataPropertyName = "YNState";
this.ColumnState.HeaderText = "是否在库";
this.ColumnState.Name = "ColumnState";
this.ColumnState.ReadOnly = true;
//
// ColumnDate
//
this.ColumnDate.DataPropertyName = "YNDate";
this.ColumnDate.HeaderText = "是否预订";
this.ColumnDate.Name = "ColumnDate";
this.ColumnDate.ReadOnly = true;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(545, 57);
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(120, 49);
this.textBox2.TabIndex = 19;
this.textBox2.Text = "这是一个模糊检索的系统,查询条件为空表示不限制";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(320, 75);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(65, 12);
this.label9.TabIndex = 22;
this.label9.Text = "查询范围:";
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(468, 73);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(71, 16);
this.radioButton2.TabIndex = 23;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "在馆图书";
this.radioButton2.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(391, 73);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(71, 16);
this.radioButton1.TabIndex = 21;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "全部图书";
this.radioButton1.UseVisualStyleBackColor = true;
//
// comboBox1
//
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
"书编号",
"图书名称",
"出版社",
"ISBN",
"作者"});
this.comboBox1.Location = new System.Drawing.Point(12, 72);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(149, 20);
this.comboBox1.TabIndex = 24;
//
// tbSearch
//
this.tbSearch.Location = new System.Drawing.Point(167, 71);
this.tbSearch.Name = "tbSearch";
this.tbSearch.Size = new System.Drawing.Size(147, 21);
this.tbSearch.TabIndex = 25;
//
// fbooksearch
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(701, 425);
this.Controls.Add(this.tbSearch);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.label9);
this.Controls.Add(this.radioButton2);
this.Controls.Add(this.radioButton1);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.toolStrip1);
this.Name = "fbooksearch";
this.Text = "图书综合查询";
this.Load += new System.EventHandler(this.fbooksearch_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripButton toolStripButton2;
private System.Windows.Forms.ToolStripButton toolStripButton4;
private System.Windows.Forms.ToolStripButton toolStripButton5;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.TextBox tbSearch;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnID;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnISBN;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnAuthor;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnCount;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnPublish;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnTime;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnState;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?