C3032
2026-03-20 19bf97fd8ec4f435e9111d72969c4ebf00d97991
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
using ReaLTaiizor.Controls;
using System.Drawing;
using System.Windows.Forms;
 
namespace LB_SmartVision.Forms.Pages.BarcodeReaderPage
{
    partial class CreateBarcodeReaderForm
    {
        /// <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()
        {
            uiComboBoxBrand = new ComboBox();
            uiComboBoxSN = new ComboBox();
            uiLabel1 = new Label();
            uiLabel2 = new Label();
            uiButtonTest = new HopeButton();
            uiButtonCreate = new HopeButton();
            uiButtonCancel = new LostButton();
            SuspendLayout();
            //
            // uiComboBoxBrand
            //
            uiComboBoxBrand.DropDownStyle = ComboBoxStyle.DropDownList;
            uiComboBoxBrand.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiComboBoxBrand.FormattingEnabled = true;
            uiComboBoxBrand.Location = new Point(127, 30);
            uiComboBoxBrand.Name = "uiComboBoxBrand";
            uiComboBoxBrand.Size = new Size(200, 28);
            uiComboBoxBrand.TabIndex = 0;
            uiComboBoxBrand.MouseClick += uiComboBoxBrand_MouseClick;
            uiComboBoxBrand.SelectedIndexChanged += uiComboBoxBrand_SelectedIndexChanged;
            //
            // uiComboBoxSN
            //
            uiComboBoxSN.DropDownStyle = ComboBoxStyle.DropDownList;
            uiComboBoxSN.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiComboBoxSN.FormattingEnabled = true;
            uiComboBoxSN.Location = new Point(127, 80);
            uiComboBoxSN.Name = "uiComboBoxSN";
            uiComboBoxSN.Size = new Size(200, 28);
            uiComboBoxSN.TabIndex = 1;
            uiComboBoxSN.MouseClick += uiComboBoxSN_MouseClick;
            //
            // uiLabel1
            //
            uiLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiLabel1.ForeColor = Color.White;
            uiLabel1.Location = new Point(25, 30);
            uiLabel1.Name = "uiLabel1";
            uiLabel1.Size = new Size(100, 29);
            uiLabel1.TabIndex = 2;
            uiLabel1.Text = "品牌:";
            uiLabel1.TextAlign = ContentAlignment.MiddleRight;
            //
            // uiLabel2
            //
            uiLabel2.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiLabel2.ForeColor = Color.White;
            uiLabel2.Location = new Point(25, 80);
            uiLabel2.Name = "uiLabel2";
            uiLabel2.Size = new Size(100, 29);
            uiLabel2.TabIndex = 3;
            uiLabel2.Text = "序列号:";
            uiLabel2.TextAlign = ContentAlignment.MiddleRight;
            //
            // uiButtonTest
            //
            uiButtonTest.BorderColor = Color.FromArgb(220, 223, 230);
            uiButtonTest.ButtonType = ReaLTaiizor.Util.HopeButtonType.Primary;
            uiButtonTest.Cursor = Cursors.Hand;
            uiButtonTest.DangerColor = Color.FromArgb(245, 108, 108);
            uiButtonTest.DefaultColor = Color.FromArgb(255, 255, 255);
            uiButtonTest.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiButtonTest.HoverTextColor = Color.FromArgb(48, 49, 51);
            uiButtonTest.InfoColor = Color.FromArgb(144, 147, 153);
            uiButtonTest.Location = new Point(350, 52);
            uiButtonTest.MinimumSize = new Size(1, 1);
            uiButtonTest.Name = "uiButtonTest";
            uiButtonTest.PrimaryColor = Color.FromArgb(64, 158, 255);
            uiButtonTest.Size = new Size(100, 35);
            uiButtonTest.SuccessColor = Color.FromArgb(103, 194, 58);
            uiButtonTest.TabIndex = 4;
            uiButtonTest.Text = "测试连接";
            uiButtonTest.TextColor = Color.White;
            uiButtonTest.WarningColor = Color.FromArgb(230, 162, 60);
            uiButtonTest.Click += uiButtonTest_Click;
            //
            // uiButtonCreate
            //
            uiButtonCreate.BorderColor = Color.FromArgb(220, 223, 230);
            uiButtonCreate.ButtonType = ReaLTaiizor.Util.HopeButtonType.Primary;
            uiButtonCreate.Cursor = Cursors.Hand;
            uiButtonCreate.DangerColor = Color.FromArgb(245, 108, 108);
            uiButtonCreate.DefaultColor = Color.FromArgb(255, 255, 255);
            uiButtonCreate.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiButtonCreate.HoverTextColor = Color.FromArgb(48, 49, 51);
            uiButtonCreate.InfoColor = Color.FromArgb(144, 147, 153);
            uiButtonCreate.Location = new Point(127, 140);
            uiButtonCreate.MinimumSize = new Size(1, 1);
            uiButtonCreate.Name = "uiButtonCreate";
            uiButtonCreate.PrimaryColor = Color.FromArgb(0, 150, 136);
            uiButtonCreate.Size = new Size(100, 35);
            uiButtonCreate.SuccessColor = Color.FromArgb(103, 194, 58);
            uiButtonCreate.TabIndex = 5;
            uiButtonCreate.Text = "创建";
            uiButtonCreate.TextColor = Color.White;
            uiButtonCreate.WarningColor = Color.FromArgb(230, 162, 60);
            uiButtonCreate.Click += uiButtonCreate_Click;
            //
            // uiButtonCancel
            //
            uiButtonCancel.BackColor = Color.FromArgb(39, 41, 60);
            uiButtonCancel.Cursor = Cursors.Hand;
            uiButtonCancel.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiButtonCancel.ForeColor = Color.White;
            uiButtonCancel.HoverColor = Color.DodgerBlue;
            uiButtonCancel.Image = null;
            uiButtonCancel.Location = new Point(245, 140);
            uiButtonCancel.MinimumSize = new Size(1, 1);
            uiButtonCancel.Name = "uiButtonCancel";
            uiButtonCancel.Size = new Size(100, 35);
            uiButtonCancel.TabIndex = 6;
            uiButtonCancel.Text = "取消";
            uiButtonCancel.Click += uiButtonCancel_Click;
            //
            // CreateBarcodeReaderForm
            //
            AutoScaleDimensions = new SizeF(7F, 17F);
            AutoScaleMode = AutoScaleMode.Font;
            BackColor = Color.FromArgb(32, 41, 50);
            ClientSize = new Size(484, 211);
            Controls.Add(uiButtonCancel);
            Controls.Add(uiButtonCreate);
            Controls.Add(uiButtonTest);
            Controls.Add(uiLabel2);
            Controls.Add(uiLabel1);
            Controls.Add(uiComboBoxSN);
            Controls.Add(uiComboBoxBrand);
            Name = "CreateBarcodeReaderForm";
            StartPosition = FormStartPosition.CenterParent;
            Text = "添加读码器";
            ResumeLayout(false);
        }
 
        #endregion
 
        private ComboBox uiComboBoxBrand;
        private ComboBox uiComboBoxSN;
        private Label uiLabel1;
        private Label uiLabel2;
        private HopeButton uiButtonTest;
        private HopeButton uiButtonCreate;
        private LostButton uiButtonCancel;
    }
}