-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathGimbalControlSettingsForm.Designer.cs
More file actions
128 lines (122 loc) · 6.5 KB
/
GimbalControlSettingsForm.Designer.cs
File metadata and controls
128 lines (122 loc) · 6.5 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
namespace MissionPlanner.Controls
{
partial class GimbalControlSettingsForm
{
/// <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()
{
this.SettingsPanel = new System.Windows.Forms.Panel();
this.SettingsTablePanel = new System.Windows.Forms.TableLayoutPanel();
this.ButtonsPanel = new System.Windows.Forms.Panel();
this.but_cancel = new MissionPlanner.Controls.MyButton();
this.but_save = new MissionPlanner.Controls.MyButton();
this.SettingsPanel.SuspendLayout();
this.ButtonsPanel.SuspendLayout();
this.SuspendLayout();
//
// SettingsPanel
//
this.SettingsPanel.AutoScroll = true;
this.SettingsPanel.Controls.Add(this.SettingsTablePanel);
this.SettingsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.SettingsPanel.Location = new System.Drawing.Point(0, 0);
this.SettingsPanel.Name = "SettingsPanel";
this.SettingsPanel.Size = new System.Drawing.Size(533, 474);
this.SettingsPanel.TabIndex = 0;
//
// SettingsTablePanel
//
this.SettingsTablePanel.AutoSize = true;
this.SettingsTablePanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.SettingsTablePanel.ColumnCount = 3;
this.SettingsTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.SettingsTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.SettingsTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.SettingsTablePanel.Dock = System.Windows.Forms.DockStyle.Top;
this.SettingsTablePanel.Location = new System.Drawing.Point(0, 0);
this.SettingsTablePanel.Name = "SettingsTablePanel";
this.SettingsTablePanel.RowCount = 6;
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.SettingsTablePanel.Size = new System.Drawing.Size(533, 120);
this.SettingsTablePanel.TabIndex = 0;
//
// ButtonsPanel
//
this.ButtonsPanel.Controls.Add(this.but_cancel);
this.ButtonsPanel.Controls.Add(this.but_save);
this.ButtonsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.ButtonsPanel.Location = new System.Drawing.Point(0, 474);
this.ButtonsPanel.Name = "ButtonsPanel";
this.ButtonsPanel.Size = new System.Drawing.Size(533, 30);
this.ButtonsPanel.TabIndex = 1;
//
// but_cancel
//
this.but_cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.but_cancel.Location = new System.Drawing.Point(455, 4);
this.but_cancel.Name = "but_cancel";
this.but_cancel.Size = new System.Drawing.Size(75, 23);
this.but_cancel.TabIndex = 1;
this.but_cancel.Text = "Cancel";
this.but_cancel.UseVisualStyleBackColor = true;
this.but_cancel.Click += new System.EventHandler(this.but_cancel_Click);
//
// but_save
//
this.but_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.but_save.Location = new System.Drawing.Point(374, 4);
this.but_save.Name = "but_save";
this.but_save.Size = new System.Drawing.Size(75, 23);
this.but_save.TabIndex = 0;
this.but_save.Text = "Save";
this.but_save.UseVisualStyleBackColor = true;
this.but_save.Click += new System.EventHandler(this.but_save_Click);
//
// GimbalControlSettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(533, 504);
this.Controls.Add(this.SettingsPanel);
this.Controls.Add(this.ButtonsPanel);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "GimbalControlSettingsForm";
this.Text = "GimbalVideoControlSettings";
this.SettingsPanel.ResumeLayout(false);
this.SettingsPanel.PerformLayout();
this.ButtonsPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel SettingsPanel;
private System.Windows.Forms.Panel ButtonsPanel;
private MyButton but_cancel;
private MyButton but_save;
private System.Windows.Forms.TableLayoutPanel SettingsTablePanel;
}
}