//----------------------------------------------------------------------- // // 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 { [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1611:ElementParametersMustBeDocumented", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1122:UseStringEmptyForEmptyStrings", Justification = "Tool Generated.")] [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 ConfigParams { /// /// 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.configDgv = new System.Windows.Forms.DataGridView(); this.configItem = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.configParam = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.currentValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.configValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.configParamsGB = new System.Windows.Forms.GroupBox(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); ((System.ComponentModel.ISupportInitialize)(this.configDgv)).BeginInit(); this.configParamsGB.SuspendLayout(); this.SuspendLayout(); // // configDgv // this.configDgv.AllowUserToAddRows = false; this.configDgv.AllowUserToDeleteRows = false; this.configDgv.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.configDgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.configDgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.configItem, this.configParam, this.currentValue, this.configValue}); this.configDgv.Location = new System.Drawing.Point(6, 19); this.configDgv.Name = "configDgv"; this.configDgv.Size = new System.Drawing.Size(310, 270); this.configDgv.TabIndex = 55; this.configDgv.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.configDgv_CellValidating); // // configItem // this.configItem.HeaderText = "Item"; this.configItem.Name = "configItem"; this.configItem.Visible = false; // // configParam // this.configParam.HeaderText = "Parameter"; this.configParam.Name = "configParam"; this.configParam.ReadOnly = true; this.configParam.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.configParam.Width = 130; // // currentValue // this.currentValue.HeaderText = "Current Value"; this.currentValue.Name = "currentValue"; this.currentValue.ReadOnly = true; this.currentValue.Width = 60; // // configValue // this.configValue.HeaderText = "New Value"; this.configValue.Name = "configValue"; this.configValue.Width = 60; // // configParamsGB // this.configParamsGB.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.configParamsGB.Controls.Add(this.configDgv); this.configParamsGB.Location = new System.Drawing.Point(3, 3); this.configParamsGB.Name = "configParamsGB"; this.configParamsGB.Size = new System.Drawing.Size(323, 295); this.configParamsGB.TabIndex = 57; this.configParamsGB.TabStop = false; this.configParamsGB.Text = "Ioctl Configuration Parameters"; // // ConfigParams // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.configParamsGB); this.Name = "ConfigParams"; this.Size = new System.Drawing.Size(330, 301); ((System.ComponentModel.ISupportInitialize)(this.configDgv)).EndInit(); this.configParamsGB.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.DataGridView configDgv; private System.Windows.Forms.DataGridViewTextBoxColumn configItem; private System.Windows.Forms.DataGridViewTextBoxColumn configParam; private System.Windows.Forms.DataGridViewTextBoxColumn currentValue; private System.Windows.Forms.DataGridViewTextBoxColumn configValue; private System.Windows.Forms.GroupBox configParamsGB; private System.Windows.Forms.ToolTip toolTip1; } }