diff options
| author | Jacob Palecki <[email protected]> | 2021-04-25 23:05:44 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-25 23:05:44 -0700 |
| commit | 0cf5ce3762926fa556418572e9661d79cbbaa240 (patch) | |
| tree | f5dd9c5c77acf0f4a8d910636660bed93f8fb16b /grapher/Form1.Designer.cs | |
| parent | Fixed layout issues for LUT (diff) | |
| download | rawaccel-0cf5ce3762926fa556418572e9661d79cbbaa240.tar.xz rawaccel-0cf5ce3762926fa556418572e9661d79cbbaa240.zip | |
Start of LUT points editing
Diffstat (limited to 'grapher/Form1.Designer.cs')
| -rw-r--r-- | grapher/Form1.Designer.cs | 54 |
1 files changed, 38 insertions, 16 deletions
diff --git a/grapher/Form1.Designer.cs b/grapher/Form1.Designer.cs index 995a0b7..baf1254 100644 --- a/grapher/Form1.Designer.cs +++ b/grapher/Form1.Designer.cs @@ -71,6 +71,8 @@ namespace grapher System.Windows.Forms.DataVisualization.Charting.Title title6 = new System.Windows.Forms.DataVisualization.Charting.Title(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RawAcceleration)); this.optionsPanel = new System.Windows.Forms.Panel(); + this.gainSwitchActiveLabelY = new System.Windows.Forms.Label(); + this.gainSwitchActiveLabelX = new System.Windows.Forms.Label(); this.gainSwitchY = new System.Windows.Forms.CheckBox(); this.gainSwitchX = new System.Windows.Forms.CheckBox(); this.LUTTextLabelY = new System.Windows.Forms.Label(); @@ -186,8 +188,8 @@ namespace grapher this.GainChart = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.VelocityChart = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.AccelerationChart = new System.Windows.Forms.DataVisualization.Charting.Chart(); - this.gainSwitchActiveLabelX = new System.Windows.Forms.Label(); - this.gainSwitchActiveLabelY = new System.Windows.Forms.Label(); + this.LUTPanelX = new System.Windows.Forms.Panel(); + this.LUTPanelY = new System.Windows.Forms.Panel(); this.optionsPanel.SuspendLayout(); this.DirectionalityPanel.SuspendLayout(); this.menuStrip1.SuspendLayout(); @@ -203,6 +205,8 @@ namespace grapher // optionsPanel // this.optionsPanel.AutoSize = true; + this.optionsPanel.Controls.Add(this.LUTPanelY); + this.optionsPanel.Controls.Add(this.LUTPanelX); this.optionsPanel.Controls.Add(this.gainSwitchActiveLabelY); this.optionsPanel.Controls.Add(this.gainSwitchActiveLabelX); this.optionsPanel.Controls.Add(this.gainSwitchY); @@ -289,6 +293,24 @@ namespace grapher this.optionsPanel.Size = new System.Drawing.Size(483, 956); this.optionsPanel.TabIndex = 34; // + // gainSwitchActiveLabelY + // + this.gainSwitchActiveLabelY.AutoSize = true; + this.gainSwitchActiveLabelY.Location = new System.Drawing.Point(417, 95); + this.gainSwitchActiveLabelY.Name = "gainSwitchActiveLabelY"; + this.gainSwitchActiveLabelY.Size = new System.Drawing.Size(29, 13); + this.gainSwitchActiveLabelY.TabIndex = 157; + this.gainSwitchActiveLabelY.Text = "Gain"; + // + // gainSwitchActiveLabelX + // + this.gainSwitchActiveLabelX.AutoSize = true; + this.gainSwitchActiveLabelX.Location = new System.Drawing.Point(200, 96); + this.gainSwitchActiveLabelX.Name = "gainSwitchActiveLabelX"; + this.gainSwitchActiveLabelX.Size = new System.Drawing.Size(29, 13); + this.gainSwitchActiveLabelX.TabIndex = 156; + this.gainSwitchActiveLabelX.Text = "Gain"; + // // gainSwitchY // this.gainSwitchY.AutoSize = true; @@ -1497,23 +1519,21 @@ namespace grapher title6.Text = "Sensitivity"; this.AccelerationChart.Titles.Add(title6); // - // gainSwitchActiveLabelX + // LUTPanelX // - this.gainSwitchActiveLabelX.AutoSize = true; - this.gainSwitchActiveLabelX.Location = new System.Drawing.Point(200, 96); - this.gainSwitchActiveLabelX.Name = "gainSwitchActiveLabelX"; - this.gainSwitchActiveLabelX.Size = new System.Drawing.Size(29, 13); - this.gainSwitchActiveLabelX.TabIndex = 156; - this.gainSwitchActiveLabelX.Text = "Gain"; + this.LUTPanelX.AutoScroll = true; + this.LUTPanelX.Location = new System.Drawing.Point(317, 369); + this.LUTPanelX.Name = "LUTPanelX"; + this.LUTPanelX.Size = new System.Drawing.Size(68, 135); + this.LUTPanelX.TabIndex = 158; // - // gainSwitchActiveLabelY + // LUTPanelY // - this.gainSwitchActiveLabelY.AutoSize = true; - this.gainSwitchActiveLabelY.Location = new System.Drawing.Point(417, 95); - this.gainSwitchActiveLabelY.Name = "gainSwitchActiveLabelY"; - this.gainSwitchActiveLabelY.Size = new System.Drawing.Size(29, 13); - this.gainSwitchActiveLabelY.TabIndex = 157; - this.gainSwitchActiveLabelY.Text = "Gain"; + this.LUTPanelY.AutoScroll = true; + this.LUTPanelY.Location = new System.Drawing.Point(397, 369); + this.LUTPanelY.Name = "LUTPanelY"; + this.LUTPanelY.Size = new System.Drawing.Size(73, 135); + this.LUTPanelY.TabIndex = 159; // // RawAcceleration // @@ -1662,6 +1682,8 @@ namespace grapher private System.Windows.Forms.CheckBox gainSwitchY; private System.Windows.Forms.Label gainSwitchActiveLabelY; private System.Windows.Forms.Label gainSwitchActiveLabelX; + private System.Windows.Forms.Panel LUTPanelY; + private System.Windows.Forms.Panel LUTPanelX; } } |