📄 form1.designer.cs
字号:
namespace DataConnection
{
partial class Form1
{
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.txtUrl = new System.Windows.Forms.TextBox();
this.btnMap = new System.Windows.Forms.Button();
this.lbDests = new System.Windows.Forms.ListBox();
this.txtStatus = new System.Windows.Forms.TextBox();
this.btnStatus = new System.Windows.Forms.Button();
this.btnConnect = new System.Windows.Forms.Button();
this.btnRelease = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtUrl
//
this.txtUrl.Location = new System.Drawing.Point(3, 3);
this.txtUrl.Name = "txtUrl";
this.txtUrl.Size = new System.Drawing.Size(186, 21);
this.txtUrl.TabIndex = 0;
this.txtUrl.Text = "http://www.microsoft.com";
//
// btnMap
//
this.btnMap.Location = new System.Drawing.Point(195, 4);
this.btnMap.Name = "btnMap";
this.btnMap.Size = new System.Drawing.Size(42, 20);
this.btnMap.TabIndex = 1;
this.btnMap.Text = "Map";
this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
//
// lbDests
//
this.lbDests.Location = new System.Drawing.Point(3, 30);
this.lbDests.Name = "lbDests";
this.lbDests.Size = new System.Drawing.Size(234, 100);
this.lbDests.TabIndex = 2;
//
// txtStatus
//
this.txtStatus.Location = new System.Drawing.Point(81, 135);
this.txtStatus.Name = "txtStatus";
this.txtStatus.Size = new System.Drawing.Size(156, 21);
this.txtStatus.TabIndex = 3;
//
// btnStatus
//
this.btnStatus.Location = new System.Drawing.Point(3, 136);
this.btnStatus.Name = "btnStatus";
this.btnStatus.Size = new System.Drawing.Size(72, 20);
this.btnStatus.TabIndex = 4;
this.btnStatus.Text = "Status";
this.btnStatus.Click += new System.EventHandler(this.btnStatus_Click);
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(3, 162);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(115, 20);
this.btnConnect.TabIndex = 5;
this.btnConnect.Text = "Connect";
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// btnRelease
//
this.btnRelease.Location = new System.Drawing.Point(124, 162);
this.btnRelease.Name = "btnRelease";
this.btnRelease.Size = new System.Drawing.Size(113, 20);
this.btnRelease.TabIndex = 6;
this.btnRelease.Text = "Release";
this.btnRelease.Click += new System.EventHandler(this.btnRelease_Click);
//
// Form1
//
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.btnRelease);
this.Controls.Add(this.btnConnect);
this.Controls.Add(this.btnStatus);
this.Controls.Add(this.txtStatus);
this.Controls.Add(this.lbDests);
this.Controls.Add(this.btnMap);
this.Controls.Add(this.txtUrl);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtUrl;
private System.Windows.Forms.Button btnMap;
private System.Windows.Forms.ListBox lbDests;
private System.Windows.Forms.TextBox txtStatus;
private System.Windows.Forms.Button btnStatus;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.Button btnRelease;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -