添加项目文件。

This commit is contained in:
zhouyunhao
2024-08-13 10:31:46 +08:00
parent 771a9cc09d
commit 6f4c64175d
76 changed files with 19060 additions and 0 deletions

166
C-Windows-1/Config.Designer.cs generated Normal file
View File

@@ -0,0 +1,166 @@
namespace C_Windows_1
{
partial class Config
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Config));
this.label4 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.Use_Set = new System.Windows.Forms.Button();
this.Station = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.CodeLength = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.codelengthcheck = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("宋体", 20F);
this.label4.Location = new System.Drawing.Point(147, 7);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(120, 27);
this.label4.TabIndex = 162;
this.label4.Text = "基本设置";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 11F);
this.label1.Location = new System.Drawing.Point(15, 51);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(384, 15);
this.label1.TabIndex = 161;
this.label1.Text = "说明若不设置则站号默认为01条形码长度默认为13";
//
// Use_Set
//
this.Use_Set.Location = new System.Drawing.Point(152, 206);
this.Use_Set.Name = "Use_Set";
this.Use_Set.Size = new System.Drawing.Size(103, 43);
this.Use_Set.TabIndex = 160;
this.Use_Set.Text = "应用设置";
this.Use_Set.UseVisualStyleBackColor = true;
this.Use_Set.Click += new System.EventHandler(this.Use_Set_Click);
//
// Station
//
this.Station.FormattingEnabled = true;
this.Station.Items.AddRange(new object[] {
"01",
"02",
"03",
"04",
"05",
"06",
"07",
"08",
"09",
"10"});
this.Station.Location = new System.Drawing.Point(130, 102);
this.Station.Margin = new System.Windows.Forms.Padding(4);
this.Station.Name = "Station";
this.Station.Size = new System.Drawing.Size(99, 24);
this.Station.TabIndex = 156;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(127, 82);
this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(104, 16);
this.label8.TabIndex = 157;
this.label8.Text = "modbus从站号";
//
// CodeLength
//
this.CodeLength.Location = new System.Drawing.Point(130, 157);
this.CodeLength.Margin = new System.Windows.Forms.Padding(4);
this.CodeLength.Name = "CodeLength";
this.CodeLength.Size = new System.Drawing.Size(157, 26);
this.CodeLength.TabIndex = 158;
//
// label19
//
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(127, 137);
this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(88, 16);
this.label19.TabIndex = 159;
this.label19.Text = "条形码长度";
//
// codelengthcheck
//
this.codelengthcheck.AutoSize = true;
this.codelengthcheck.Location = new System.Drawing.Point(294, 159);
this.codelengthcheck.Name = "codelengthcheck";
this.codelengthcheck.Size = new System.Drawing.Size(91, 20);
this.codelengthcheck.TabIndex = 163;
this.codelengthcheck.Text = "长度检测";
this.codelengthcheck.UseVisualStyleBackColor = true;
//
// Config
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(415, 264);
this.Controls.Add(this.codelengthcheck);
this.Controls.Add(this.label4);
this.Controls.Add(this.label1);
this.Controls.Add(this.Use_Set);
this.Controls.Add(this.Station);
this.Controls.Add(this.label8);
this.Controls.Add(this.CodeLength);
this.Controls.Add(this.label19);
this.Font = new System.Drawing.Font("宋体", 12F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "Config";
this.Text = "Config";
this.Load += new System.EventHandler(this.Config_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button Use_Set;
private System.Windows.Forms.ComboBox Station;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox CodeLength;
private System.Windows.Forms.Label label19;
private System.Windows.Forms.CheckBox codelengthcheck;
}
}