-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMirror_MIDI.Designer.cs
More file actions
171 lines (167 loc) · 6.13 KB
/
Copy pathMirror_MIDI.Designer.cs
File metadata and controls
171 lines (167 loc) · 6.13 KB
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
namespace Mirror_MIDI
{
partial class Form1
{
/// <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(Form1));
label1 = new Label();
Start = new Button();
Stop = new Button();
label2 = new Label();
DHD_Status = new TextBox();
Device1 = new ComboBox();
Device2 = new ComboBox();
DHD_Enabled = new CheckBox();
DHD_Device = new ComboBox();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
label1.Location = new Point(190, 13);
label1.Name = "label1";
label1.Size = new Size(78, 31);
label1.TabIndex = 1;
label1.Text = "Mirror";
//
// Start
//
Start.Location = new Point(452, 10);
Start.Name = "Start";
Start.Size = new Size(94, 35);
Start.TabIndex = 3;
Start.Text = "Start";
Start.UseVisualStyleBackColor = true;
Start.Click += Start_Click;
//
// Stop
//
Stop.Location = new Point(452, 51);
Stop.Name = "Stop";
Stop.Size = new Size(94, 35);
Stop.TabIndex = 4;
Stop.Text = "Stop";
Stop.UseVisualStyleBackColor = true;
Stop.Click += Stop_Click;
//
// label2
//
label2.AutoSize = true;
label2.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
label2.Location = new Point(12, 55);
label2.Name = "label2";
label2.Size = new Size(138, 31);
label2.TabIndex = 5;
label2.Text = "Radio Assist";
//
// DHD_Status
//
DHD_Status.BackColor = Color.Firebrick;
DHD_Status.BorderStyle = BorderStyle.FixedSingle;
DHD_Status.Enabled = false;
DHD_Status.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
DHD_Status.Location = new Point(12, 139);
DHD_Status.Name = "DHD_Status";
DHD_Status.ReadOnly = true;
DHD_Status.Size = new Size(172, 38);
DHD_Status.TabIndex = 6;
DHD_Status.Text = " Not Connected";
DHD_Status.Visible = false;
//
// Device1
//
Device1.AllowDrop = true;
Device1.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
Device1.FormattingEnabled = true;
Device1.Location = new Point(12, 10);
Device1.Name = "Device1";
Device1.Size = new Size(172, 39);
Device1.TabIndex = 7;
//
// Device2
//
Device2.AllowDrop = true;
Device2.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
Device2.FormattingEnabled = true;
Device2.Location = new Point(274, 10);
Device2.Name = "Device2";
Device2.Size = new Size(172, 39);
Device2.TabIndex = 8;
//
// DHD_Enabled
//
DHD_Enabled.AutoSize = true;
DHD_Enabled.Location = new Point(156, 67);
DHD_Enabled.Name = "DHD_Enabled";
DHD_Enabled.Size = new Size(18, 17);
DHD_Enabled.TabIndex = 9;
DHD_Enabled.UseVisualStyleBackColor = true;
DHD_Enabled.CheckedChanged += DHD_Enabled_CheckedChanged;
//
// DHD_Device
//
DHD_Device.AllowDrop = true;
DHD_Device.Font = new Font("Segoe UI", 13.8F, FontStyle.Regular, GraphicsUnit.Point, 0);
DHD_Device.FormattingEnabled = true;
DHD_Device.Location = new Point(12, 94);
DHD_Device.Name = "DHD_Device";
DHD_Device.Size = new Size(172, 39);
DHD_Device.TabIndex = 10;
DHD_Device.Visible = false;
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = SystemColors.AppWorkspace;
ClientSize = new Size(570, 194);
Controls.Add(DHD_Device);
Controls.Add(DHD_Enabled);
Controls.Add(Device2);
Controls.Add(Device1);
Controls.Add(DHD_Status);
Controls.Add(label2);
Controls.Add(Stop);
Controls.Add(Start);
Controls.Add(label1);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "Form1";
Text = "Mirror MIDI";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Button Start;
private Button Stop;
private Label label2;
private TextBox DHD_Status;
private ComboBox Device1;
private ComboBox Device2;
private CheckBox DHD_Enabled;
private ComboBox DHD_Device;
}
}