?? form2.designer.cs
字號:
?namespace 課程設計
{
partial class Form2
{
/// <summary>
/// 必需的設計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.text_X = new System.Windows.Forms.TextBox();
this.text_Y = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// button1
//
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button1.Location = new System.Drawing.Point(229, 14);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 67);
this.button1.TabIndex = 0;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// text_X
//
this.text_X.Location = new System.Drawing.Point(75, 14);
this.text_X.Name = "text_X";
this.text_X.Size = new System.Drawing.Size(100, 21);
this.text_X.TabIndex = 2;
//
// text_Y
//
this.text_Y.Location = new System.Drawing.Point(75, 60);
this.text_Y.Name = "text_Y";
this.text_Y.Size = new System.Drawing.Size(100, 21);
this.text_Y.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(23, 12);
this.label1.TabIndex = 4;
this.label1.Text = "P_X";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(23, 12);
this.label2.TabIndex = 5;
this.label2.Text = "P_Y";
//
// Form2
//
this.ClientSize = new System.Drawing.Size(316, 99);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.text_Y);
this.Controls.Add(this.text_X);
this.Controls.Add(this.button1);
this.Name = "Form2";
this.Text = "平移設置";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox text_Y;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -