From 19bf97fd8ec4f435e9111d72969c4ebf00d97991 Mon Sep 17 00:00:00 2001
From: C3032 <1057644574@qq.com>
Date: 星期五, 20 三月 2026 11:10:02 +0800
Subject: [PATCH] 读码器功能集成完成
---
LB_VisionControl/ScriptEditControl/ClassFileList.Designer.cs | 76 +++++++++++++++++++-------------------
1 files changed, 38 insertions(+), 38 deletions(-)
diff --git a/LB_VisionControl/ScriptEditControl/ClassFileList.Designer.cs b/LB_VisionControl/ScriptEditControl/ClassFileList.Designer.cs
index df4b91b..e5a591f 100644
--- a/LB_VisionControl/ScriptEditControl/ClassFileList.Designer.cs
+++ b/LB_VisionControl/ScriptEditControl/ClassFileList.Designer.cs
@@ -28,53 +28,53 @@
/// </summary>
private void InitializeComponent()
{
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
+ listBox1 = new ListBox();
+ textBox1 = new TextBox();
+ SuspendLayout();
//
// listBox1
//
- this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.listBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(17)))), ((int)(((byte)(18)))));
- this.listBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listBox1.Font = new System.Drawing.Font("寰蒋闆呴粦", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.listBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- this.listBox1.FormattingEnabled = true;
- this.listBox1.ItemHeight = 17;
- this.listBox1.Location = new System.Drawing.Point(0, 14);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(483, 85);
- this.listBox1.TabIndex = 0;
- this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
- this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
+ listBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
+ listBox1.BackColor = Color.FromArgb(30, 17, 18);
+ listBox1.BorderStyle = BorderStyle.None;
+ listBox1.Font = new Font("寰蒋闆呴粦", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);
+ listBox1.ForeColor = Color.FromArgb(255, 255, 128);
+ listBox1.FormattingEnabled = true;
+ listBox1.ItemHeight = 17;
+ listBox1.Location = new Point(0, 20);
+ listBox1.Margin = new Padding(4, 4, 4, 4);
+ listBox1.Name = "listBox1";
+ listBox1.Size = new Size(564, 119);
+ listBox1.TabIndex = 0;
+ listBox1.SelectedIndexChanged += listBox1_SelectedIndexChanged;
+ listBox1.DoubleClick += listBox1_DoubleClick;
//
// textBox1
//
- this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(17)))), ((int)(((byte)(18)))));
- this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.textBox1.Font = new System.Drawing.Font("寰蒋闆呴粦", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.textBox1.ForeColor = System.Drawing.Color.Green;
- this.textBox1.Location = new System.Drawing.Point(0, 100);
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(483, 105);
- this.textBox1.TabIndex = 1;
- this.textBox1.Text = "鏂囦欢绯荤粺";
+ textBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
+ textBox1.BackColor = Color.FromArgb(30, 17, 18);
+ textBox1.BorderStyle = BorderStyle.FixedSingle;
+ textBox1.Font = new Font("寰蒋闆呴粦", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);
+ textBox1.ForeColor = Color.Green;
+ textBox1.Location = new Point(0, 142);
+ textBox1.Margin = new Padding(4, 4, 4, 4);
+ textBox1.Multiline = true;
+ textBox1.Name = "textBox1";
+ textBox1.Size = new Size(563, 148);
+ textBox1.TabIndex = 1;
+ textBox1.Text = "鏂囦欢绯荤粺";
//
// ClassFileList
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.listBox1);
- this.Name = "ClassFileList";
- this.Size = new System.Drawing.Size(483, 208);
- this.ResumeLayout(false);
- this.PerformLayout();
+ AutoScaleDimensions = new SizeF(96F, 96F);
+ AutoScaleMode = AutoScaleMode.Dpi;
+ Controls.Add(textBox1);
+ Controls.Add(listBox1);
+ Margin = new Padding(4, 4, 4, 4);
+ Name = "ClassFileList";
+ Size = new Size(564, 295);
+ ResumeLayout(false);
+ PerformLayout();
}
--
Gitblit v1.9.3