📄 customerdialog.designer.cs
字号:
namespace WindowsApplication2
{
partial class CustomerDialog
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomerDialog));
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.AccessibleDescription = null;
this.dataGridView1.AccessibleName = null;
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
resources.ApplyResources(this.dataGridView1, "dataGridView1");
this.dataGridView1.BackgroundImage = null;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.CustomerID,
this.CustomerName});
this.dataGridView1.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.dataGridView1.Font = null;
this.dataGridView1.MultiSelect = false;
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowTemplate.Height = 24;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
//
// button1
//
this.button1.AccessibleDescription = null;
this.button1.AccessibleName = null;
resources.ApplyResources(this.button1, "button1");
this.button1.BackgroundImage = null;
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button1.Font = null;
this.button1.Name = "button1";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.AccessibleDescription = null;
this.button2.AccessibleName = null;
resources.ApplyResources(this.button2, "button2");
this.button2.BackgroundImage = null;
this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.button2.Font = null;
this.button2.Name = "button2";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// CustomerID
//
this.CustomerID.DataPropertyName = "CUSTOMER_ID";
resources.ApplyResources(this.CustomerID, "CustomerID");
this.CustomerID.Name = "CustomerID";
this.CustomerID.ReadOnly = true;
//
// CustomerName
//
this.CustomerName.DataPropertyName = "CUSTOMER_NAME";
resources.ApplyResources(this.CustomerName, "CustomerName");
this.CustomerName.Name = "CustomerName";
this.CustomerName.ReadOnly = true;
//
// CustomerDialog
//
this.AccessibleDescription = null;
this.AccessibleName = null;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = null;
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.dataGridView1);
this.Font = null;
this.Icon = null;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CustomerDialog";
this.ShowInTaskbar = false;
this.Load += new System.EventHandler(this.CustomerDialog_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.DataGridViewTextBoxColumn CustomerID;
private System.Windows.Forms.DataGridViewTextBoxColumn CustomerName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -