📄 产品信息.designer.cs
字号:
namespace BookStore.Forms
{
partial class ProductsInfo
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.dg_ProductsInfo = new System.Windows.Forms.DataGrid();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cbo_DetailCategory = new System.Windows.Forms.ComboBox();
this.label11 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.cbo_Category = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dg_ProductsInfo)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// dg_ProductsInfo
//
this.dg_ProductsInfo.AlternatingBackColor = System.Drawing.Color.WhiteSmoke;
this.dg_ProductsInfo.BackColor = System.Drawing.Color.Gainsboro;
this.dg_ProductsInfo.BackgroundColor = System.Drawing.Color.DarkGray;
this.dg_ProductsInfo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.dg_ProductsInfo.CaptionBackColor = System.Drawing.Color.DarkKhaki;
this.dg_ProductsInfo.CaptionFont = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
this.dg_ProductsInfo.CaptionForeColor = System.Drawing.Color.Black;
this.dg_ProductsInfo.DataMember = "";
this.dg_ProductsInfo.FlatMode = true;
this.dg_ProductsInfo.Font = new System.Drawing.Font("Times New Roman", 9F);
this.dg_ProductsInfo.ForeColor = System.Drawing.Color.Black;
this.dg_ProductsInfo.GridLineColor = System.Drawing.Color.Silver;
this.dg_ProductsInfo.HeaderBackColor = System.Drawing.Color.Black;
this.dg_ProductsInfo.HeaderFont = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
this.dg_ProductsInfo.HeaderForeColor = System.Drawing.Color.White;
this.dg_ProductsInfo.LinkColor = System.Drawing.Color.DarkSlateBlue;
this.dg_ProductsInfo.Location = new System.Drawing.Point(12, 102);
this.dg_ProductsInfo.Name = "dg_ProductsInfo";
this.dg_ProductsInfo.ParentRowsBackColor = System.Drawing.Color.LightGray;
this.dg_ProductsInfo.ParentRowsForeColor = System.Drawing.Color.Black;
this.dg_ProductsInfo.SelectionBackColor = System.Drawing.Color.Firebrick;
this.dg_ProductsInfo.SelectionForeColor = System.Drawing.Color.White;
this.dg_ProductsInfo.Size = new System.Drawing.Size(810, 254);
this.dg_ProductsInfo.TabIndex = 0;
this.dg_ProductsInfo.DoubleClick += new System.EventHandler(this.dg_ProductsInfo_DoubleClick);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Controls.Add(this.cbo_DetailCategory);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.label11);
this.groupBox1.Controls.Add(this.cbo_Category);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(810, 54);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
//
// cbo_DetailCategory
//
this.cbo_DetailCategory.FormattingEnabled = true;
this.cbo_DetailCategory.Location = new System.Drawing.Point(287, 22);
this.cbo_DetailCategory.Name = "cbo_DetailCategory";
this.cbo_DetailCategory.Size = new System.Drawing.Size(121, 20);
this.cbo_DetailCategory.TabIndex = 33;
this.cbo_DetailCategory.SelectedIndexChanged += new System.EventHandler(this.cboDetailCategory_SelectedIndexChanged);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(204, 25);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(77, 12);
this.label11.TabIndex = 32;
this.label11.Text = "图书小分类:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 31;
this.label1.Text = "图书类别:";
//
// cbo_Category
//
this.cbo_Category.DisplayMember = "CategoryID";
this.cbo_Category.FormattingEnabled = true;
this.cbo_Category.Location = new System.Drawing.Point(77, 22);
this.cbo_Category.Name = "cbo_Category";
this.cbo_Category.Size = new System.Drawing.Size(121, 20);
this.cbo_Category.TabIndex = 30;
this.cbo_Category.ValueMember = "CategoryID";
this.cbo_Category.SelectedIndexChanged += new System.EventHandler(this.cboCategory_SelectedIndexChanged);
//
// button1
//
this.button1.Location = new System.Drawing.Point(427, 20);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(37, 23);
this.button1.TabIndex = 34;
this.button1.Text = "显示";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// ProductsInfo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(834, 392);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.dg_ProductsInfo);
this.Name = "ProductsInfo";
this.Text = "产品信息";
this.Load += new System.EventHandler(this.ProductsInfo_Load);
((System.ComponentModel.ISupportInitialize)(this.dg_ProductsInfo)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGrid dg_ProductsInfo;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox cbo_DetailCategory;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.ComboBox cbo_Category;
private System.Windows.Forms.Button button1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -