This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSerialControllerPanel.Designer.cs
96 lines (88 loc) · 3.73 KB
/
SerialControllerPanel.Designer.cs
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
namespace SDRSharp.SerialController
{
partial class SerialControllerPanel
{
/// <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 Component 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(SerialControllerPanel));
this.cbEnable = new System.Windows.Forms.CheckBox();
this.comboPorts = new System.Windows.Forms.ComboBox();
this.btnRefreshPorts = new System.Windows.Forms.Button();
this.lbLog = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// cbEnable
//
this.cbEnable.Location = new System.Drawing.Point(3, 3);
this.cbEnable.Name = "cbEnable";
this.cbEnable.Size = new System.Drawing.Size(74, 22);
this.cbEnable.TabIndex = 1;
this.cbEnable.Text = "Enable";
this.cbEnable.UseVisualStyleBackColor = true;
this.cbEnable.Click += new System.EventHandler(this.CbEnableClick);
this.cbEnable.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CbEnableKeyDown);
//
// comboPorts
//
this.comboPorts.FormattingEnabled = true;
this.comboPorts.Location = new System.Drawing.Point(83, 3);
this.comboPorts.Name = "comboPorts";
this.comboPorts.Size = new System.Drawing.Size(100, 21);
this.comboPorts.TabIndex = 2;
//
// btnRefreshPorts
//
this.btnRefreshPorts.Image = ((System.Drawing.Image)(resources.GetObject("btnRefreshPorts.Image")));
this.btnRefreshPorts.Location = new System.Drawing.Point(188, 2);
this.btnRefreshPorts.Name = "btnRefreshPorts";
this.btnRefreshPorts.Size = new System.Drawing.Size(24, 24);
this.btnRefreshPorts.TabIndex = 3;
this.btnRefreshPorts.UseVisualStyleBackColor = true;
this.btnRefreshPorts.Click += new System.EventHandler(this.BtnRefreshPortsClick);
//
// lbLog
//
this.lbLog.FormattingEnabled = true;
this.lbLog.Location = new System.Drawing.Point(3, 30);
this.lbLog.Name = "lbLog";
this.lbLog.Size = new System.Drawing.Size(215, 69);
this.lbLog.TabIndex = 4;
//
// SerialControllerPanel
//
this.Controls.Add(this.lbLog);
this.Controls.Add(this.btnRefreshPorts);
this.Controls.Add(this.comboPorts);
this.Controls.Add(this.cbEnable);
this.Name = "SerialControllerPanel";
this.Size = new System.Drawing.Size(222, 131);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.CheckBox cbEnable;
private System.Windows.Forms.ComboBox comboPorts;
private System.Windows.Forms.Button btnRefreshPorts;
private System.Windows.Forms.ListBox lbLog;
}
}