📄 form1.designer.cs
字号:
namespace DownloadFile
{
partial class Form1
{
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.txtUrl = new System.Windows.Forms.TextBox();
this.btnGet = new System.Windows.Forms.Button();
this.dataGrid1 = new System.Windows.Forms.DataGrid();
this.btnHead = 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(195, 21);
this.txtUrl.TabIndex = 0;
//
// btnGet
//
this.btnGet.Location = new System.Drawing.Point(204, 4);
this.btnGet.Name = "btnGet";
this.btnGet.Size = new System.Drawing.Size(36, 20);
this.btnGet.TabIndex = 1;
this.btnGet.Text = "Get";
this.btnGet.Click += new System.EventHandler(this.btnGet_Click);
//
// dataGrid1
//
this.dataGrid1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
this.dataGrid1.Location = new System.Drawing.Point(3, 55);
this.dataGrid1.Name = "dataGrid1";
this.dataGrid1.Size = new System.Drawing.Size(237, 200);
this.dataGrid1.TabIndex = 2;
//
// btnHead
//
this.btnHead.Location = new System.Drawing.Point(3, 30);
this.btnHead.Name = "btnHead";
this.btnHead.Size = new System.Drawing.Size(72, 20);
this.btnHead.TabIndex = 3;
this.btnHead.Text = "Head";
this.btnHead.Click += new System.EventHandler(this.btnHead_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.btnHead);
this.Controls.Add(this.dataGrid1);
this.Controls.Add(this.btnGet);
this.Controls.Add(this.txtUrl);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Download";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MainMenu mainMenu1;
private System.Windows.Forms.TextBox txtUrl;
private System.Windows.Forms.Button btnGet;
private System.Windows.Forms.DataGrid dataGrid1;
private System.Windows.Forms.Button btnHead;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -