📄 form1.designer.cs
字号:
namespace TestLineDistance
{
partial class Form1
{
/// <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.x1 = new System.Windows.Forms.TextBox();
this.y1 = new System.Windows.Forms.TextBox();
this.x2 = new System.Windows.Forms.TextBox();
this.y2 = new System.Windows.Forms.TextBox();
this.x3 = new System.Windows.Forms.TextBox();
this.y3 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// x1
//
this.x1.Location = new System.Drawing.Point(422, 30);
this.x1.Name = "x1";
this.x1.Size = new System.Drawing.Size(100, 21);
this.x1.TabIndex = 0;
//
// y1
//
this.y1.Location = new System.Drawing.Point(540, 30);
this.y1.Name = "y1";
this.y1.Size = new System.Drawing.Size(100, 21);
this.y1.TabIndex = 1;
this.y1.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
//
// x2
//
this.x2.Location = new System.Drawing.Point(422, 83);
this.x2.Name = "x2";
this.x2.Size = new System.Drawing.Size(100, 21);
this.x2.TabIndex = 2;
//
// y2
//
this.y2.Location = new System.Drawing.Point(540, 82);
this.y2.Name = "y2";
this.y2.Size = new System.Drawing.Size(100, 21);
this.y2.TabIndex = 3;
this.y2.TextChanged += new System.EventHandler(this.textBox4_TextChanged);
//
// x3
//
this.x3.Location = new System.Drawing.Point(422, 122);
this.x3.Name = "x3";
this.x3.Size = new System.Drawing.Size(100, 21);
this.x3.TabIndex = 4;
this.x3.TextChanged += new System.EventHandler(this.textBox5_TextChanged);
//
// y3
//
this.y3.Location = new System.Drawing.Point(540, 121);
this.y3.Name = "y3";
this.y3.Size = new System.Drawing.Size(100, 21);
this.y3.TabIndex = 5;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(389, 39);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(17, 12);
this.label1.TabIndex = 6;
this.label1.Text = "p1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(389, 91);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(17, 12);
this.label2.TabIndex = 7;
this.label2.Text = "p2";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(389, 131);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(17, 12);
this.label3.TabIndex = 8;
this.label3.Text = "p3";
//
// button1
//
this.button1.Location = new System.Drawing.Point(494, 168);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 9;
this.button1.Text = "计算距离";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(494, 225);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(167, 96);
this.richTextBox1.TabIndex = 10;
this.richTextBox1.Text = "";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(673, 450);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.y3);
this.Controls.Add(this.x3);
this.Controls.Add(this.y2);
this.Controls.Add(this.x2);
this.Controls.Add(this.y1);
this.Controls.Add(this.x1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox x1;
private System.Windows.Forms.TextBox y1;
private System.Windows.Forms.TextBox x2;
private System.Windows.Forms.TextBox y2;
private System.Windows.Forms.TextBox x3;
private System.Windows.Forms.TextBox y3;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.RichTextBox richTextBox1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -