//----------------------------------------------------------------------- // // 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 FfDataPanel { /// /// 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.components = new System.ComponentModel.Container(); this.label1 = new System.Windows.Forms.Label(); this.frameNumberUd = new System.Windows.Forms.NumericUpDown(); this.getFfDataButton = new System.Windows.Forms.Button(); this.obdDataPanel1 = new UserInterface.GUI.OBD.ObdDataPanel(); this.refreshButton = new System.Windows.Forms.Button(); this.clearButton = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.frameNumberUd)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(142, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(46, 13); this.label1.TabIndex = 9; this.label1.Text = "Frame #"; // // frameNumberUd // this.frameNumberUd.Location = new System.Drawing.Point(194, 6); this.frameNumberUd.Maximum = new decimal(new int[] { 32, 0, 0, 0}); this.frameNumberUd.Name = "frameNumberUd"; this.frameNumberUd.Size = new System.Drawing.Size(120, 20); this.frameNumberUd.TabIndex = 8; this.frameNumberUd.ValueChanged += new System.EventHandler(this.frameNumberUd_ValueChanged); // // getFfDataButton // this.getFfDataButton.Image = global::UserInterface.Properties.Resources.table_error; this.getFfDataButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.getFfDataButton.Location = new System.Drawing.Point(320, 3); this.getFfDataButton.Name = "getFfDataButton"; this.getFfDataButton.Size = new System.Drawing.Size(133, 23); this.getFfDataButton.TabIndex = 7; this.getFfDataButton.Text = "FF Data"; this.getFfDataButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.getFfDataButton.UseVisualStyleBackColor = true; this.getFfDataButton.Click += new System.EventHandler(this.getFfDataButton_Click); // // obdDataPanel1 // this.obdDataPanel1.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.obdDataPanel1.Location = new System.Drawing.Point(3, 32); this.obdDataPanel1.Name = "obdDataPanel1"; this.obdDataPanel1.Size = new System.Drawing.Size(658, 401); this.obdDataPanel1.TabIndex = 10; // // refreshButton // this.refreshButton.Image = global::UserInterface.Properties.Resources.arrow_refresh; this.refreshButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.refreshButton.Location = new System.Drawing.Point(3, 3); this.refreshButton.Name = "refreshButton"; this.refreshButton.Size = new System.Drawing.Size(78, 23); this.refreshButton.TabIndex = 11; this.refreshButton.Text = "Refresh"; this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.refreshButton.UseVisualStyleBackColor = true; this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click); // // clearButton // this.clearButton.Image = global::UserInterface.Properties.Resources.cancel; this.clearButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.clearButton.Location = new System.Drawing.Point(604, 3); this.clearButton.Name = "clearButton"; this.clearButton.Size = new System.Drawing.Size(57, 23); this.clearButton.TabIndex = 18; this.clearButton.Text = "Clear"; this.clearButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.clearButton.UseVisualStyleBackColor = true; this.clearButton.Click += new System.EventHandler(this.clearButton_Click); // // timer1 // this.timer1.Interval = 2000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // FfDataPanel // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.clearButton); this.Controls.Add(this.refreshButton); this.Controls.Add(this.obdDataPanel1); this.Controls.Add(this.label1); this.Controls.Add(this.frameNumberUd); this.Controls.Add(this.getFfDataButton); this.Name = "FfDataPanel"; this.Size = new System.Drawing.Size(664, 436); ((System.ComponentModel.ISupportInitialize)(this.frameNumberUd)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.NumericUpDown frameNumberUd; private System.Windows.Forms.Button getFfDataButton; private ObdDataPanel obdDataPanel1; private System.Windows.Forms.Button refreshButton; private System.Windows.Forms.Button clearButton; private System.Windows.Forms.Timer timer1; } }