62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Windows.Forms;
|
|||
|
|
|
|||
|
|
namespace HYJig.Jig
|
|||
|
|
{
|
|||
|
|
public partial class LineJigForm : Form
|
|||
|
|
{
|
|||
|
|
public LineJigForm()
|
|||
|
|
{
|
|||
|
|
this.InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void InitializeComponent()
|
|||
|
|
{
|
|||
|
|
this.button_0 = new Button();
|
|||
|
|
this.textBox_0 = new TextBox();
|
|||
|
|
this.checkBox_0 = new CheckBox();
|
|||
|
|
base.SuspendLayout();
|
|||
|
|
this.button_0.Location = new Point(326, 57);
|
|||
|
|
this.button_0.Name = "button1";
|
|||
|
|
this.button_0.Size = new Size(75, 23);
|
|||
|
|
this.button_0.TabIndex = 0;
|
|||
|
|
this.button_0.Text = "button1";
|
|||
|
|
this.button_0.UseVisualStyleBackColor = true;
|
|||
|
|
this.textBox_0.Location = new Point(13, 13);
|
|||
|
|
this.textBox_0.Name = "textBox1";
|
|||
|
|
this.textBox_0.Size = new Size(198, 25);
|
|||
|
|
this.textBox_0.TabIndex = 1;
|
|||
|
|
this.checkBox_0.AutoSize = true;
|
|||
|
|
this.checkBox_0.Location = new Point(12, 57);
|
|||
|
|
this.checkBox_0.Name = "checkBox1";
|
|||
|
|
this.checkBox_0.Size = new Size(101, 19);
|
|||
|
|
this.checkBox_0.TabIndex = 2;
|
|||
|
|
this.checkBox_0.Text = "checkBox1";
|
|||
|
|
this.checkBox_0.UseVisualStyleBackColor = true;
|
|||
|
|
base.AutoScaleDimensions = new SizeF(8f, 15f);
|
|||
|
|
base.AutoScaleMode = AutoScaleMode.Font;
|
|||
|
|
base.ClientSize = new Size(413, 92);
|
|||
|
|
base.Controls.Add(this.checkBox_0);
|
|||
|
|
base.Controls.Add(this.textBox_0);
|
|||
|
|
base.Controls.Add(this.button_0);
|
|||
|
|
base.FormBorderStyle = FormBorderStyle.FixedSingle;
|
|||
|
|
base.MaximizeBox = false;
|
|||
|
|
base.MinimizeBox = false;
|
|||
|
|
base.Name = "LineJigForm";
|
|||
|
|
base.ShowInTaskbar = false;
|
|||
|
|
base.StartPosition = FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "LineJigForm";
|
|||
|
|
base.ResumeLayout(false);
|
|||
|
|
base.PerformLayout();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private Button button_0;
|
|||
|
|
|
|||
|
|
private TextBox textBox_0;
|
|||
|
|
|
|||
|
|
private CheckBox checkBox_0;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|