forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerminal.Designer.cs
145 lines (139 loc) · 6.6 KB
/
Terminal.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
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
namespace MissionPlanner.GCSViews
{
partial class Terminal
{
/// <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(Terminal));
this.TXT_terminal = new System.Windows.Forms.RichTextBox();
this.BUTsetupshow = new MissionPlanner.Controls.MyButton();
this.BUTradiosetup = new MissionPlanner.Controls.MyButton();
this.BUTtests = new MissionPlanner.Controls.MyButton();
this.Logs = new MissionPlanner.Controls.MyButton();
this.BUT_logbrowse = new MissionPlanner.Controls.MyButton();
this.BUT_ConnectAPM = new MissionPlanner.Controls.MyButton();
this.BUT_disconnect = new MissionPlanner.Controls.MyButton();
this.CMB_boardtype = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// TXT_terminal
//
resources.ApplyResources(this.TXT_terminal, "TXT_terminal");
this.TXT_terminal.AutoWordSelection = true;
this.TXT_terminal.BackColor = System.Drawing.Color.Black;
this.TXT_terminal.ForeColor = System.Drawing.Color.White;
this.TXT_terminal.Name = "TXT_terminal";
this.TXT_terminal.Click += new System.EventHandler(this.TXT_terminal_Click);
this.TXT_terminal.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TXT_terminal_KeyDown);
this.TXT_terminal.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TXT_terminal_KeyPress);
//
// BUTsetupshow
//
resources.ApplyResources(this.BUTsetupshow, "BUTsetupshow");
this.BUTsetupshow.Name = "BUTsetupshow";
this.BUTsetupshow.UseVisualStyleBackColor = true;
this.BUTsetupshow.Click += new System.EventHandler(this.BUTsetupshow_Click);
//
// BUTradiosetup
//
resources.ApplyResources(this.BUTradiosetup, "BUTradiosetup");
this.BUTradiosetup.Name = "BUTradiosetup";
this.BUTradiosetup.UseVisualStyleBackColor = true;
this.BUTradiosetup.Click += new System.EventHandler(this.BUTradiosetup_Click);
//
// BUTtests
//
resources.ApplyResources(this.BUTtests, "BUTtests");
this.BUTtests.Name = "BUTtests";
this.BUTtests.UseVisualStyleBackColor = true;
this.BUTtests.Click += new System.EventHandler(this.BUTtests_Click);
//
// Logs
//
resources.ApplyResources(this.Logs, "Logs");
this.Logs.Name = "Logs";
this.Logs.UseVisualStyleBackColor = true;
this.Logs.Click += new System.EventHandler(this.Logs_Click);
//
// BUT_logbrowse
//
resources.ApplyResources(this.BUT_logbrowse, "BUT_logbrowse");
this.BUT_logbrowse.Name = "BUT_logbrowse";
this.BUT_logbrowse.UseVisualStyleBackColor = true;
this.BUT_logbrowse.Click += new System.EventHandler(this.BUT_logbrowse_Click);
//
// BUT_ConnectAPM
//
resources.ApplyResources(this.BUT_ConnectAPM, "BUT_ConnectAPM");
this.BUT_ConnectAPM.Name = "BUT_ConnectAPM";
this.BUT_ConnectAPM.UseVisualStyleBackColor = true;
this.BUT_ConnectAPM.Click += new System.EventHandler(this.BUT_RebootAPM_Click);
//
// BUT_disconnect
//
resources.ApplyResources(this.BUT_disconnect, "BUT_disconnect");
this.BUT_disconnect.Name = "BUT_disconnect";
this.BUT_disconnect.UseVisualStyleBackColor = true;
this.BUT_disconnect.Click += new System.EventHandler(this.BUT_disconnect_Click);
//
// CMB_boardtype
//
this.CMB_boardtype.FormattingEnabled = true;
this.CMB_boardtype.Items.AddRange(new object[] {
resources.GetString("CMB_boardtype.Items"),
resources.GetString("CMB_boardtype.Items1"),
resources.GetString("CMB_boardtype.Items2")});
resources.ApplyResources(this.CMB_boardtype, "CMB_boardtype");
this.CMB_boardtype.Name = "CMB_boardtype";
//
// Terminal
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.CMB_boardtype);
this.Controls.Add(this.BUT_disconnect);
this.Controls.Add(this.BUT_ConnectAPM);
this.Controls.Add(this.BUT_logbrowse);
this.Controls.Add(this.Logs);
this.Controls.Add(this.BUTtests);
this.Controls.Add(this.BUTradiosetup);
this.Controls.Add(this.BUTsetupshow);
this.Controls.Add(this.TXT_terminal);
this.Name = "Terminal";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Terminal_FormClosing);
this.Load += new System.EventHandler(this.Terminal_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.RichTextBox TXT_terminal;
private Controls.MyButton BUTsetupshow;
private Controls.MyButton BUTradiosetup;
private Controls.MyButton BUTtests;
private Controls.MyButton Logs;
private Controls.MyButton BUT_logbrowse;
private Controls.MyButton BUT_ConnectAPM;
private Controls.MyButton BUT_disconnect;
private System.Windows.Forms.ComboBox CMB_boardtype;
}
}