📄 customersinfoform.designer.cs
字号:
this.tsBtnExit.Size = new System.Drawing.Size(35, 33);
this.tsBtnExit.Text = "退出";
this.tsBtnExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsBtnExit.Click += new System.EventHandler(this.tsBtnExit_Click);
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsBntAdd,
this.tsBntUpdate,
this.tsBtnDelete,
this.tsBtnSave,
this.tsBtnCancel,
this.tsBtnExit});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(497, 36);
this.toolStrip1.TabIndex = 15;
this.toolStrip1.Text = "toolStrip1";
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(40, 24);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(59, 12);
this.lblName.TabIndex = 0;
this.lblName.Text = "身份证号:";
//
// txtSearch
//
this.txtSearch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSearch.Location = new System.Drawing.Point(130, 20);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(156, 21);
this.txtSearch.TabIndex = 1;
//
// btnSearch
//
this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnSearch.Location = new System.Drawing.Point(317, 19);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(94, 23);
this.btnSearch.TabIndex = 2;
this.btnSearch.Text = "查询";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.btnSearch);
this.groupBox1.Controls.Add(this.txtSearch);
this.groupBox1.Controls.Add(this.lblName);
this.groupBox1.Location = new System.Drawing.Point(12, 39);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(473, 54);
this.groupBox1.TabIndex = 16;
this.groupBox1.TabStop = false;
//
// dgvCustomersInfo
//
this.dgvCustomersInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvCustomersInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvCustomersInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ID,
this.CName,
this.CPhone,
this.ct});
this.dgvCustomersInfo.Location = new System.Drawing.Point(12, 98);
this.dgvCustomersInfo.Name = "dgvCustomersInfo";
this.dgvCustomersInfo.ReadOnly = true;
this.dgvCustomersInfo.RowTemplate.Height = 23;
this.dgvCustomersInfo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvCustomersInfo.Size = new System.Drawing.Size(473, 163);
this.dgvCustomersInfo.TabIndex = 17;
this.dgvCustomersInfo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvCustomersInfo_CellClick);
//
// ID
//
this.ID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ID.DataPropertyName = "ID";
this.ID.HeaderText = "身份证号";
this.ID.Name = "ID";
this.ID.ReadOnly = true;
//
// CName
//
this.CName.DataPropertyName = "CName";
this.CName.HeaderText = "客户姓名";
this.CName.Name = "CName";
this.CName.ReadOnly = true;
//
// CPhone
//
this.CPhone.DataPropertyName = "CPhone";
this.CPhone.HeaderText = "联系电话";
this.CPhone.Name = "CPhone";
this.CPhone.ReadOnly = true;
//
// ct
//
this.ct.DataPropertyName = "ct";
this.ct.HeaderText = "客户类型";
this.ct.Name = "ct";
this.ct.ReadOnly = true;
//
// panInfo
//
this.panInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panInfo.Controls.Add(this.lblID);
this.panInfo.Controls.Add(this.lblCTypeID);
this.panInfo.Controls.Add(this.lblCName);
this.panInfo.Controls.Add(this.lblCPhone);
this.panInfo.Controls.Add(this.cboCTypeID);
this.panInfo.Controls.Add(this.txtID);
this.panInfo.Controls.Add(this.txtCPhone);
this.panInfo.Controls.Add(this.txtCName);
this.panInfo.Location = new System.Drawing.Point(12, 262);
this.panInfo.Name = "panInfo";
this.panInfo.Size = new System.Drawing.Size(473, 112);
this.panInfo.TabIndex = 18;
//
// CustomersInfoForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(497, 395);
this.Controls.Add(this.panInfo);
this.Controls.Add(this.dgvCustomersInfo);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.toolStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "CustomersInfoForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "[客户信息管理]";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CustomersInfoForm_FormClosing);
this.Load += new System.EventHandler(this.CustomersInfoForm_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvCustomersInfo)).EndInit();
this.panInfo.ResumeLayout(false);
this.panInfo.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblID;
private System.Windows.Forms.Label lblCTypeID;
private System.Windows.Forms.Label lblCName;
private System.Windows.Forms.Label lblCPhone;
private System.Windows.Forms.TextBox txtID;
private System.Windows.Forms.TextBox txtCName;
private System.Windows.Forms.TextBox txtCPhone;
private System.Windows.Forms.ComboBox cboCTypeID;
private System.Windows.Forms.ToolStripButton tsBntAdd;
private System.Windows.Forms.ToolStripButton tsBntUpdate;
private System.Windows.Forms.ToolStripButton tsBtnDelete;
private System.Windows.Forms.ToolStripButton tsBtnSave;
private System.Windows.Forms.ToolStripButton tsBtnCancel;
private System.Windows.Forms.ToolStripButton tsBtnExit;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.TextBox txtSearch;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView dgvCustomersInfo;
private System.Windows.Forms.Panel panInfo;
private System.Windows.Forms.DataGridViewTextBoxColumn ID;
private System.Windows.Forms.DataGridViewTextBoxColumn CName;
private System.Windows.Forms.DataGridViewTextBoxColumn CPhone;
private System.Windows.Forms.DataGridViewTextBoxColumn ct;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -