//-----------------------------------------------------------------------
//
// Copyright © 2012 Nils Hammar. All rights reserved.
//
//-----------------------------------------------------------------------
/*
* Software to access vehicle information via the OBD-II connector.
*
* Copyright © 2012 Nils Hammar
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
* Alternative licensing is possible, see the licensing document.
*
* The above text may not be removed or modified.
*/
namespace UserInterface.GUI.OBD
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1202:ElementsMustBeOrderedByAccess", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:PrefixLocalCallsWithThis", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1400:AccessModifierMustBeDeclared", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1513:ClosingCurlyBracketMustBeFollowedByBlankLine", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:ElementsMustBeDocumented", Justification = "Tool Generated.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1601:PartialElementsMustBeDocumented", Justification = "Tool Generated.")]
partial class PlotDataPanel
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
this.legend1.Dispose();
this.components.Dispose();
try
{
this.chartArea1.Dispose();
}
catch
{
}
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.printDocument1 = new System.Drawing.Printing.PrintDocument();
this.saveFileDialog2 = new System.Windows.Forms.SaveFileDialog();
this.saveCsvButton = new System.Windows.Forms.Button();
this.saveImageButton = new System.Windows.Forms.Button();
this.printButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// chart1
//
this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.chart1.BorderlineColor = System.Drawing.Color.Black;
this.chart1.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
chartArea1.AxisX.Minimum = 0D;
chartArea1.CursorX.Interval = 0.01D;
chartArea1.CursorX.IsUserSelectionEnabled = true;
chartArea1.Name = "ChartArea1";
this.chart1.ChartAreas.Add(chartArea1);
this.chart1.Location = new System.Drawing.Point(0, 0);
this.chart1.Name = "chart1";
this.chart1.Size = new System.Drawing.Size(666, 500);
this.chart1.TabIndex = 0;
this.chart1.Text = "Item 1";
//
// saveCsvButton
//
this.saveCsvButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.saveCsvButton.Image = global::UserInterface.Properties.Resources.csv;
this.saveCsvButton.Location = new System.Drawing.Point(636, 3);
this.saveCsvButton.Name = "saveCsvButton";
this.saveCsvButton.Size = new System.Drawing.Size(27, 23);
this.saveCsvButton.TabIndex = 3;
this.saveCsvButton.Text = "title = ";
this.saveCsvButton.UseVisualStyleBackColor = true;
this.saveCsvButton.Visible = false;
this.saveCsvButton.Click += new System.EventHandler(this.saveCsvButton_Click);
//
// saveImageButton
//
this.saveImageButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.saveImageButton.Image = global::UserInterface.Properties.Resources.image2;
this.saveImageButton.Location = new System.Drawing.Point(603, 3);
this.saveImageButton.Name = "saveImageButton";
this.saveImageButton.Size = new System.Drawing.Size(27, 23);
this.saveImageButton.TabIndex = 2;
this.saveImageButton.Text = "title = ";
this.saveImageButton.UseVisualStyleBackColor = true;
this.saveImageButton.Visible = false;
this.saveImageButton.Click += new System.EventHandler(this.saveImageButton_Click);
//
// printButton
//
this.printButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.printButton.Image = global::UserInterface.Properties.Resources.printer;
this.printButton.Location = new System.Drawing.Point(570, 3);
this.printButton.Name = "printButton";
this.printButton.Size = new System.Drawing.Size(27, 23);
this.printButton.TabIndex = 1;
this.printButton.Text = "title = ";
this.printButton.UseVisualStyleBackColor = true;
this.printButton.Visible = false;
this.printButton.Click += new System.EventHandler(this.printButton_Click);
//
// PlotDataPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.saveCsvButton);
this.Controls.Add(this.saveImageButton);
this.Controls.Add(this.printButton);
this.Controls.Add(this.chart1);
this.Name = "PlotDataPanel";
this.Size = new System.Drawing.Size(666, 500);
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
private System.Windows.Forms.Button printButton;
private System.Windows.Forms.Button saveImageButton;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Drawing.Printing.PrintDocument printDocument1;
private System.Windows.Forms.Button saveCsvButton;
private System.Windows.Forms.SaveFileDialog saveFileDialog2;
private System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1;
}
}