📄 form1.designer.cs
字号:
namespace exp7SQL2
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridTextBoxColumn nameDataGridColumnStyleDataGridTextBoxColumn;
System.Windows.Forms.DataGridTextBoxColumn ageDataGridColumnStyleDataGridTextBoxColumn;
System.Windows.Forms.DataGridTextBoxColumn addressDataGridColumnStyleDataGridTextBoxColumn;
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.employeesBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.exp7SQL2DataSet1 = new exp7SQL2.exp7SQL2DataSet1();
this.employeesDataGrid = new System.Windows.Forms.DataGrid();
this.employeesTableStyleDataGridTableStyle = new System.Windows.Forms.DataGridTableStyle();
this.buttonPrevious = new System.Windows.Forms.Button();
this.buttonNext = new System.Windows.Forms.Button();
this.textBoxAge = new System.Windows.Forms.TextBox();
this.buttonByAge = new System.Windows.Forms.Button();
this.employeesTableAdapter = new exp7SQL2.exp7SQL2DataSet1TableAdapters.EmployeesTableAdapter();
this.buttonAdd = new System.Windows.Forms.Button();
this.buttonUpdate = new System.Windows.Forms.Button();
this.textBoxNName = new System.Windows.Forms.TextBox();
this.lableNName = new System.Windows.Forms.Label();
this.labelNAge = new System.Windows.Forms.Label();
this.textBoxNAge = new System.Windows.Forms.TextBox();
this.labelNAddr = new System.Windows.Forms.Label();
this.textBoxNAddr = new System.Windows.Forms.TextBox();
this.labelKName = new System.Windows.Forms.Label();
this.textBoxKName = new System.Windows.Forms.TextBox();
this.buttonByName = new System.Windows.Forms.Button();
this.labelByAge = new System.Windows.Forms.Label();
this.buttonDelete = new System.Windows.Forms.Button();
this.buttonView = new System.Windows.Forms.Button();
this.textBoxAAddr = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.textBoxAAge = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.textBoxAName = new System.Windows.Forms.TextBox();
nameDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
ageDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
addressDataGridColumnStyleDataGridTextBoxColumn = new System.Windows.Forms.DataGridTextBoxColumn();
this.SuspendLayout();
//
// nameDataGridColumnStyleDataGridTextBoxColumn
//
nameDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Name";
nameDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Name";
//
// ageDataGridColumnStyleDataGridTextBoxColumn
//
ageDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Age";
ageDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Age";
//
// addressDataGridColumnStyleDataGridTextBoxColumn
//
addressDataGridColumnStyleDataGridTextBoxColumn.HeaderText = "Address";
addressDataGridColumnStyleDataGridTextBoxColumn.MappingName = "Address";
//
// employeesBindingSource
//
this.employeesBindingSource.DataMember = "Employees";
this.employeesBindingSource.DataSource = this.exp7SQL2DataSet1;
//
// exp7SQL2DataSet1
//
this.exp7SQL2DataSet1.DataSetName = "exp7SQL2DataSet1";
this.exp7SQL2DataSet1.Prefix = "";
this.exp7SQL2DataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// employeesDataGrid
//
this.employeesDataGrid.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
this.employeesDataGrid.DataSource = this.employeesBindingSource;
this.employeesDataGrid.Location = new System.Drawing.Point(16, 34);
this.employeesDataGrid.Name = "employeesDataGrid";
this.employeesDataGrid.Size = new System.Drawing.Size(286, 94);
this.employeesDataGrid.TabIndex = 0;
this.employeesDataGrid.TableStyles.Add(this.employeesTableStyleDataGridTableStyle);
//
// employeesTableStyleDataGridTableStyle
//
this.employeesTableStyleDataGridTableStyle.GridColumnStyles.Add(nameDataGridColumnStyleDataGridTextBoxColumn);
this.employeesTableStyleDataGridTableStyle.GridColumnStyles.Add(ageDataGridColumnStyleDataGridTextBoxColumn);
this.employeesTableStyleDataGridTableStyle.GridColumnStyles.Add(addressDataGridColumnStyleDataGridTextBoxColumn);
this.employeesTableStyleDataGridTableStyle.MappingName = "Employees";
//
// buttonPrevious
//
this.buttonPrevious.Location = new System.Drawing.Point(308, 34);
this.buttonPrevious.Name = "buttonPrevious";
this.buttonPrevious.Size = new System.Drawing.Size(72, 20);
this.buttonPrevious.TabIndex = 1;
this.buttonPrevious.Text = "Previous";
this.buttonPrevious.Click += new System.EventHandler(this.buttonPrevious_Click);
//
// buttonNext
//
this.buttonNext.Location = new System.Drawing.Point(308, 60);
this.buttonNext.Name = "buttonNext";
this.buttonNext.Size = new System.Drawing.Size(72, 20);
this.buttonNext.TabIndex = 2;
this.buttonNext.Text = "Next";
this.buttonNext.Click += new System.EventHandler(this.buttonNext_Click);
//
// textBoxAge
//
this.textBoxAge.Location = new System.Drawing.Point(121, 213);
this.textBoxAge.Name = "textBoxAge";
this.textBoxAge.Size = new System.Drawing.Size(87, 23);
this.textBoxAge.TabIndex = 3;
//
// buttonByAge
//
this.buttonByAge.Location = new System.Drawing.Point(227, 216);
this.buttonByAge.Name = "buttonByAge";
this.buttonByAge.Size = new System.Drawing.Size(72, 20);
this.buttonByAge.TabIndex = 4;
this.buttonByAge.Text = "FillByAge";
this.buttonByAge.Click += new System.EventHandler(this.buttonByAge_Click);
//
// employeesTableAdapter
//
this.employeesTableAdapter.ClearBeforeFill = true;
//
// buttonAdd
//
this.buttonAdd.Location = new System.Drawing.Point(322, 179);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(72, 20);
this.buttonAdd.TabIndex = 5;
this.buttonAdd.Text = "Add";
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// buttonUpdate
//
this.buttonUpdate.Location = new System.Drawing.Point(322, 322);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(72, 20);
this.buttonUpdate.TabIndex = 8;
this.buttonUpdate.Text = "Update";
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
//
// textBoxNName
//
this.textBoxNName.Location = new System.Drawing.Point(121, 284);
this.textBoxNName.Name = "textBoxNName";
this.textBoxNName.Size = new System.Drawing.Size(85, 23);
this.textBoxNName.TabIndex = 10;
//
// lableNName
//
this.lableNName.Location = new System.Drawing.Point(16, 287);
this.lableNName.Name = "lableNName";
this.lableNName.Size = new System.Drawing.Size(76, 20);
this.lableNName.Text = "New Name:";
//
// labelNAge
//
this.labelNAge.Location = new System.Drawing.Point(227, 287);
this.labelNAge.Name = "labelNAge";
this.labelNAge.Size = new System.Drawing.Size(72, 20);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -