//----------------------------------------------------------------------- // // 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 ObdSimulator.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 WwhEcuObdInfo { /// /// 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.val0TF = new System.Windows.Forms.TextBox(); this.val1TF = new System.Windows.Forms.TextBox(); this.val2TF = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.val0TF); this.groupBox1.Controls.Add(this.val1TF); this.groupBox1.Controls.Add(this.val2TF); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.label14); this.groupBox1.Controls.Add(this.label13); 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(800, 105); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "groupBox1"; // // val0TF // this.val0TF.Location = new System.Drawing.Point(346, 13); this.val0TF.Name = "val0TF"; this.val0TF.Size = new System.Drawing.Size(442, 20); this.val0TF.TabIndex = 58; // // val1TF // this.val1TF.Location = new System.Drawing.Point(346, 39); this.val1TF.Name = "val1TF"; this.val1TF.Size = new System.Drawing.Size(67, 20); this.val1TF.TabIndex = 57; // // val2TF // this.val2TF.Location = new System.Drawing.Point(346, 65); this.val2TF.Name = "val2TF"; this.val2TF.Size = new System.Drawing.Size(67, 20); this.val2TF.TabIndex = 56; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(209, 68); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(123, 13); this.label2.TabIndex = 54; this.label2.Text = "Highest ECU B1 counter"; // // label14 // this.label14.AutoSize = true; this.label14.Location = new System.Drawing.Point(10, 42); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(330, 13); this.label14.TabIndex = 46; this.label14.Text = "Number of engine operating hours that the continuous MI was active"; // // label13 // this.label13.AutoSize = true; this.label13.Location = new System.Drawing.Point(173, 16); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(167, 13); this.label13.TabIndex = 45; this.label13.Text = "ECU Malfunction Indication status"; // // WwhEcuObdInfo // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.groupBox1); this.Name = "WwhEcuObdInfo"; this.Size = new System.Drawing.Size(800, 105); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label14; private System.Windows.Forms.Label label13; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox val0TF; private System.Windows.Forms.TextBox val1TF; private System.Windows.Forms.TextBox val2TF; } }