//-----------------------------------------------------------------------
//
// 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.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1508:ClosingCurlyBracketsMustNotBePrecededByBlankLine", Justification = "Reviewed.")]
partial class SsmDataPanel
{
///
/// 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))
{
components.Dispose();
}
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.initRespDgv = new System.Windows.Forms.DataGridView();
this.saveButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.ssmInitButton = new System.Windows.Forms.Button();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.ecuAddress = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.valueName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.valueUnit = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.valueValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.initRespDgv)).BeginInit();
this.SuspendLayout();
//
// initRespDgv
//
this.initRespDgv.AllowUserToAddRows = false;
this.initRespDgv.AllowUserToDeleteRows = false;
this.initRespDgv.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.initRespDgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.initRespDgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ecuAddress,
this.valueName,
this.valueUnit,
this.valueValue});
this.initRespDgv.Location = new System.Drawing.Point(3, 32);
this.initRespDgv.Name = "initRespDgv";
this.initRespDgv.ReadOnly = true;
this.initRespDgv.Size = new System.Drawing.Size(568, 356);
this.initRespDgv.TabIndex = 1;
this.initRespDgv.SizeChanged += new System.EventHandler(this.initRespDgv_SizeChanged);
//
// saveButton
//
this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.saveButton.Location = new System.Drawing.Point(349, 3);
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(108, 23);
this.saveButton.TabIndex = 13;
this.saveButton.Text = "Save...";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// clearButton
//
this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.clearButton.Location = new System.Drawing.Point(463, 3);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(108, 23);
this.clearButton.TabIndex = 12;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// ssmInitButton
//
this.ssmInitButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ssmInitButton.Location = new System.Drawing.Point(235, 3);
this.ssmInitButton.Name = "ssmInitButton";
this.ssmInitButton.Size = new System.Drawing.Size(108, 23);
this.ssmInitButton.TabIndex = 11;
this.ssmInitButton.Text = "SSM Init";
this.ssmInitButton.UseVisualStyleBackColor = true;
this.ssmInitButton.Click += new System.EventHandler(this.ssmInitButton_Click);
//
// ecuAddress
//
this.ecuAddress.HeaderText = "ECU";
this.ecuAddress.Name = "ecuAddress";
this.ecuAddress.ReadOnly = true;
this.ecuAddress.Width = 80;
//
// valueName
//
this.valueName.HeaderText = "Name";
this.valueName.Name = "valueName";
this.valueName.ReadOnly = true;
this.valueName.Width = 200;
//
// valueUnit
//
this.valueUnit.HeaderText = "Unit";
this.valueUnit.Name = "valueUnit";
this.valueUnit.ReadOnly = true;
this.valueUnit.Width = 40;
//
// valueValue
//
this.valueValue.HeaderText = "Value";
this.valueValue.Name = "valueValue";
this.valueValue.ReadOnly = true;
this.valueValue.Width = 200;
//
// SsmDataPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.saveButton);
this.Controls.Add(this.clearButton);
this.Controls.Add(this.ssmInitButton);
this.Controls.Add(this.initRespDgv);
this.Name = "SsmDataPanel";
this.Size = new System.Drawing.Size(574, 391);
((System.ComponentModel.ISupportInitialize)(this.initRespDgv)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView initRespDgv;
private System.Windows.Forms.Button saveButton;
private System.Windows.Forms.Button clearButton;
private System.Windows.Forms.Button ssmInitButton;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.DataGridViewTextBoxColumn ecuAddress;
private System.Windows.Forms.DataGridViewTextBoxColumn valueName;
private System.Windows.Forms.DataGridViewTextBoxColumn valueUnit;
private System.Windows.Forms.DataGridViewTextBoxColumn valueValue;
}
}