📄 productcategoriesform.designer.cs
字号:
namespace MobileDevelopersHandbook
{
partial class ProductCategoriesForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.newMenuItemMenuItem = new System.Windows.Forms.MenuItem();
this.productCategoryResultSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.productCategoryResultSetDataGrid = new System.Windows.Forms.DataGrid();
this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.newMenuItemMenuItem);
//
// newMenuItemMenuItem
//
this.newMenuItemMenuItem.Text = "New";
this.newMenuItemMenuItem.Click += new System.EventHandler(this.newMenuItemMenuItem_Click);
//
// productCategoryResultSetBindingSource
//
this.productCategoryResultSetBindingSource.DataSource = typeof(MobileDevelopersHandbook.MyResultSetsResultSets.ProductCategoryResultSet);
//
// productCategoryResultSetDataGrid
//
this.productCategoryResultSetDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
this.productCategoryResultSetDataGrid.DataSource = this.productCategoryResultSetBindingSource;
this.productCategoryResultSetDataGrid.Dock = System.Windows.Forms.DockStyle.Fill;
this.productCategoryResultSetDataGrid.Location = new System.Drawing.Point(0, 0);
this.productCategoryResultSetDataGrid.Name = "productCategoryResultSetDataGrid";
this.productCategoryResultSetDataGrid.Size = new System.Drawing.Size(240, 268);
this.productCategoryResultSetDataGrid.TabIndex = 0;
this.productCategoryResultSetDataGrid.TableStyles.Add(this.dataGridTableStyle1);
this.productCategoryResultSetDataGrid.Click += new System.EventHandler(this.productCategoryResultSetDataGrid_Click);
//
// dataGridTableStyle1
//
this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn1);
this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn2);
//
// dataGridTextBoxColumn1
//
this.dataGridTextBoxColumn1.Format = "";
this.dataGridTextBoxColumn1.FormatInfo = null;
this.dataGridTextBoxColumn1.HeaderText = "ID";
this.dataGridTextBoxColumn1.MappingName = "ProductCategoryID";
this.dataGridTextBoxColumn1.Width = 40;
//
// dataGridTextBoxColumn2
//
this.dataGridTextBoxColumn2.Format = "";
this.dataGridTextBoxColumn2.FormatInfo = null;
this.dataGridTextBoxColumn2.HeaderText = "Name";
this.dataGridTextBoxColumn2.MappingName = "Name";
this.dataGridTextBoxColumn2.Width = 160;
//
// ProductCategoriesForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.productCategoryResultSetDataGrid);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "ProductCategoriesForm";
this.Text = "ProductCategoriesForm";
this.Load += new System.EventHandler(this.ProductCategoriesForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem newMenuItemMenuItem;
private System.Windows.Forms.BindingSource productCategoryResultSetBindingSource;
private System.Windows.Forms.DataGrid productCategoryResultSetDataGrid;
private System.Windows.Forms.DataGridTableStyle dataGridTableStyle1;
private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn1;
private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -