//----------------------------------------------------------------------- // // 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.Data { [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 SimpleData { /// /// 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.groupBox1 = new System.Windows.Forms.GroupBox(); this.simpleDataDgv1 = new System.Windows.Forms.DataGridView(); this.col_pid = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.description = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.unit = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.data = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.simpleDataDgv1)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.groupBox1.Controls.Add(this.simpleDataDgv1); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(666, 53); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; // // simpleDataDgv1 // this.simpleDataDgv1.AllowUserToAddRows = false; this.simpleDataDgv1.AllowUserToDeleteRows = false; this.simpleDataDgv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.simpleDataDgv1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.col_pid, this.description, this.unit, this.data}); this.simpleDataDgv1.Dock = System.Windows.Forms.DockStyle.Fill; this.simpleDataDgv1.Location = new System.Drawing.Point(3, 16); this.simpleDataDgv1.Name = "simpleDataDgv1"; this.simpleDataDgv1.RowHeadersVisible = false; this.simpleDataDgv1.Size = new System.Drawing.Size(660, 34); this.simpleDataDgv1.TabIndex = 0; this.simpleDataDgv1.SizeChanged += new System.EventHandler(this.simpleDataDgv_SizeChanged); // // col_pid // this.col_pid.HeaderText = "PID"; this.col_pid.Name = "col_pid"; this.col_pid.ReadOnly = true; this.col_pid.Width = 80; // // description // this.description.HeaderText = "Description"; this.description.Name = "description"; this.description.ReadOnly = true; // // unit // this.unit.HeaderText = "Unit"; this.unit.Name = "unit"; this.unit.ReadOnly = true; this.unit.Width = 60; // // data // this.data.HeaderText = "Data"; this.data.Name = "data"; this.data.ReadOnly = true; // // SimpleData // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.Controls.Add(this.groupBox1); this.Name = "SimpleData"; this.Size = new System.Drawing.Size(666, 53); this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.simpleDataDgv1)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.DataGridView simpleDataDgv1; private System.Windows.Forms.DataGridViewTextBoxColumn col_pid; private System.Windows.Forms.DataGridViewTextBoxColumn description; private System.Windows.Forms.DataGridViewTextBoxColumn unit; private System.Windows.Forms.DataGridViewTextBoxColumn data; } }