forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparamcompare.Designer.cs
135 lines (129 loc) · 5.62 KB
/
paramcompare.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
namespace MissionPlanner
{
partial class ParamCompare
{
/// <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(ParamCompare));
this.Params = new System.Windows.Forms.DataGridView();
this.Command = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.newvalue = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Use = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.BUT_save = new MissionPlanner.Controls.MyButton();
this.CHK_toggleall = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.Params)).BeginInit();
this.SuspendLayout();
//
// Params
//
this.Params.AllowUserToAddRows = false;
this.Params.AllowUserToDeleteRows = false;
this.Params.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.Params.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Command,
this.Value,
this.newvalue,
this.Use});
this.Params.Location = new System.Drawing.Point(12, 12);
this.Params.Name = "Params";
this.Params.RowHeadersVisible = false;
this.Params.Size = new System.Drawing.Size(428, 467);
this.Params.TabIndex = 0;
//
// Command
//
this.Command.HeaderText = "Command";
this.Command.Name = "Command";
this.Command.ReadOnly = true;
//
// Value
//
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
this.Value.ReadOnly = true;
//
// newvalue
//
this.newvalue.HeaderText = "New Value";
this.newvalue.Name = "newvalue";
this.newvalue.ReadOnly = true;
//
// Use
//
this.Use.FillWeight = 30F;
this.Use.HeaderText = "Use";
this.Use.Name = "Use";
this.Use.Width = 50;
//
// BUT_save
//
this.BUT_save.Location = new System.Drawing.Point(185, 485);
this.BUT_save.Name = "BUT_save";
this.BUT_save.Size = new System.Drawing.Size(75, 23);
this.BUT_save.TabIndex = 1;
this.BUT_save.Text = "Continue";
this.BUT_save.UseVisualStyleBackColor = true;
this.BUT_save.Click += new System.EventHandler(this.BUT_save_Click);
//
// CHK_toggleall
//
this.CHK_toggleall.AutoSize = true;
this.CHK_toggleall.Checked = true;
this.CHK_toggleall.CheckState = System.Windows.Forms.CheckState.Checked;
this.CHK_toggleall.Location = new System.Drawing.Point(320, 489);
this.CHK_toggleall.Name = "CHK_toggleall";
this.CHK_toggleall.Size = new System.Drawing.Size(120, 17);
this.CHK_toggleall.TabIndex = 2;
this.CHK_toggleall.Text = "Check/Uncheck All";
this.CHK_toggleall.UseVisualStyleBackColor = true;
this.CHK_toggleall.CheckedChanged += new System.EventHandler(this.CHK_toggleall_CheckedChanged);
//
// ParamCompare
//
this.AcceptButton = this.BUT_save;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(457, 516);
this.Controls.Add(this.CHK_toggleall);
this.Controls.Add(this.BUT_save);
this.Controls.Add(this.Params);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ParamCompare";
this.Text = "ParamCompare";
((System.ComponentModel.ISupportInitialize)(this.Params)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView Params;
private Controls.MyButton BUT_save;
private System.Windows.Forms.DataGridViewTextBoxColumn Command;
private System.Windows.Forms.DataGridViewTextBoxColumn Value;
private System.Windows.Forms.DataGridViewTextBoxColumn newvalue;
private System.Windows.Forms.DataGridViewCheckBoxColumn Use;
private System.Windows.Forms.CheckBox CHK_toggleall;
}
}