添加项目文件。

This commit is contained in:
GG Z
2026-02-23 14:58:05 +08:00
parent ce96926220
commit 771d780d6c
342 changed files with 33470 additions and 0 deletions

17
HYJigPro/Jig/LineJigForm.Designer.cs generated Normal file
View File

@@ -0,0 +1,17 @@
namespace HYJig.Jig
{
public partial class LineJigForm : global::System.Windows.Forms.Form
{
protected override void Dispose(bool disposing)
{
if (disposing && this.icontainer_0 != null)
{
this.icontainer_0.Dispose();
}
base.Dispose(disposing);
}
private global::System.ComponentModel.IContainer icontainer_0 = null;
private System.Windows.Forms.Button button1;
}
}

View File

@@ -0,0 +1,61 @@
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;
}
}