📄 frmcodedemos.designer.cs
字号:
namespace Chapter08
{
partial class frmCodeDemos
{
/// <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()
{
this.dgvContacts = new System.Windows.Forms.DataGridView();
this.btnLoadNormal = new System.Windows.Forms.Button();
this.btnLoadAsync = new System.Windows.Forms.Button();
this.btnBulkCopy = new System.Windows.Forms.Button();
this.btnXML = new System.Windows.Forms.Button();
this.btnUDT = new System.Windows.Forms.Button();
this.btnNotifications = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgvContacts)).BeginInit();
this.SuspendLayout();
//
// dgvContacts
//
this.dgvContacts.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvContacts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvContacts.Location = new System.Drawing.Point(13, 13);
this.dgvContacts.Name = "dgvContacts";
this.dgvContacts.Size = new System.Drawing.Size(502, 340);
this.dgvContacts.TabIndex = 0;
//
// btnLoadNormal
//
this.btnLoadNormal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnLoadNormal.Location = new System.Drawing.Point(35, 376);
this.btnLoadNormal.Name = "btnLoadNormal";
this.btnLoadNormal.Size = new System.Drawing.Size(75, 23);
this.btnLoadNormal.TabIndex = 1;
this.btnLoadNormal.Text = "&Normal Load";
this.btnLoadNormal.UseVisualStyleBackColor = true;
this.btnLoadNormal.Click += new System.EventHandler(this.btnLoadNormal_Click);
//
// btnLoadAsync
//
this.btnLoadAsync.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnLoadAsync.Location = new System.Drawing.Point(197, 376);
this.btnLoadAsync.Name = "btnLoadAsync";
this.btnLoadAsync.Size = new System.Drawing.Size(75, 23);
this.btnLoadAsync.TabIndex = 2;
this.btnLoadAsync.Text = "&Async Load";
this.btnLoadAsync.UseVisualStyleBackColor = true;
this.btnLoadAsync.Click += new System.EventHandler(this.btnLoadAsync_Click);
//
// btnBulkCopy
//
this.btnBulkCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnBulkCopy.Location = new System.Drawing.Point(278, 376);
this.btnBulkCopy.Name = "btnBulkCopy";
this.btnBulkCopy.Size = new System.Drawing.Size(75, 23);
this.btnBulkCopy.TabIndex = 3;
this.btnBulkCopy.Text = "&Bulk Copy";
this.btnBulkCopy.UseVisualStyleBackColor = true;
this.btnBulkCopy.Click += new System.EventHandler(this.btnBulkCopy_Click);
//
// btnXML
//
this.btnXML.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnXML.Location = new System.Drawing.Point(359, 376);
this.btnXML.Name = "btnXML";
this.btnXML.Size = new System.Drawing.Size(75, 23);
this.btnXML.TabIndex = 4;
this.btnXML.Text = "&XML";
this.btnXML.UseVisualStyleBackColor = true;
this.btnXML.Click += new System.EventHandler(this.btnXML_Click);
//
// btnUDT
//
this.btnUDT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnUDT.Location = new System.Drawing.Point(440, 376);
this.btnUDT.Name = "btnUDT";
this.btnUDT.Size = new System.Drawing.Size(75, 23);
this.btnUDT.TabIndex = 5;
this.btnUDT.Text = "&UDT";
this.btnUDT.UseVisualStyleBackColor = true;
this.btnUDT.Click += new System.EventHandler(this.btnUDT_Click);
//
// btnNotifications
//
this.btnNotifications.Location = new System.Drawing.Point(116, 376);
this.btnNotifications.Name = "btnNotifications";
this.btnNotifications.Size = new System.Drawing.Size(75, 23);
this.btnNotifications.TabIndex = 6;
this.btnNotifications.Text = "&Notifications";
this.btnNotifications.UseVisualStyleBackColor = true;
this.btnNotifications.Click += new System.EventHandler(this.btnNotifications_Click);
//
// frmCodeDemos
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(527, 411);
this.Controls.Add(this.btnNotifications);
this.Controls.Add(this.btnUDT);
this.Controls.Add(this.btnXML);
this.Controls.Add(this.btnBulkCopy);
this.Controls.Add(this.btnLoadAsync);
this.Controls.Add(this.btnLoadNormal);
this.Controls.Add(this.dgvContacts);
this.Name = "frmCodeDemos";
this.Text = "Code Demos";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmBindingTest_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.dgvContacts)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgvContacts;
private System.Windows.Forms.Button btnLoadNormal;
private System.Windows.Forms.Button btnLoadAsync;
private System.Windows.Forms.Button btnBulkCopy;
private System.Windows.Forms.Button btnXML;
private System.Windows.Forms.Button btnUDT;
private System.Windows.Forms.Button btnNotifications;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -