using System.Diagnostics; using System.Windows.Forms; namespace WinFormsApp1 { partial class Form1 { /// /// 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 Windows Form 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(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.loadLibraryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.expertModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.librarysToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.manualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.textBoxVendor = new System.Windows.Forms.ToolStripTextBox(); this.vendorNameToolStripMenuItem = new System.Windows.Forms.ToolStripTextBox(); this.textBoxDevice = new System.Windows.Forms.ToolStripTextBox(); this.deviceNameToolStripMenuItem = new System.Windows.Forms.ToolStripTextBox(); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.genericDataGridView = new System.Windows.Forms.DataGridView(); this.Index = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Role = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.tabControl3 = new System.Windows.Forms.TabControl(); this.tabPage5 = new System.Windows.Forms.TabPage(); this.dataGridView2 = new System.Windows.Forms.DataGridView(); this.AttributeName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Unit = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Default = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.DataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Semantic = new System.Windows.Forms.DataGridViewComboBoxColumn(); this.Library = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.tabPage6 = new System.Windows.Forms.TabPage(); this.tabControl2 = new System.Windows.Forms.TabControl(); this.tabPage4 = new System.Windows.Forms.TabPage(); this.treeView1 = new System.Windows.Forms.TreeView(); this.tabControl4 = new System.Windows.Forms.TabControl(); this.tabPage7 = new System.Windows.Forms.TabPage(); this.treeView2 = new System.Windows.Forms.TreeView(); this.panel3 = new System.Windows.Forms.Panel(); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.menuStrip1.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.genericDataGridView)).BeginInit(); this.tabControl3.SuspendLayout(); this.tabPage5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit(); this.tabControl2.SuspendLayout(); this.tabPage4.SuspendLayout(); this.tabControl4.SuspendLayout(); this.tabPage7.SuspendLayout(); this.SuspendLayout(); // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.viewToolStripMenuItem, this.librarysToolStripMenuItem, this.helpToolStripMenuItem, this.textBoxVendor, this.vendorNameToolStripMenuItem, this.textBoxDevice, this.deviceNameToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(971, 27); this.menuStrip1.TabIndex = 0; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, this.openToolStripMenuItem, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, this.importToolStripMenuItem, this.loadLibraryToolStripMenuItem, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 23); this.fileToolStripMenuItem.Text = "File"; // // newToolStripMenuItem // this.newToolStripMenuItem.Name = "newToolStripMenuItem"; this.newToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.newToolStripMenuItem.Text = "New"; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.openToolStripMenuItem.Text = "Open"; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.saveToolStripMenuItem.Text = "Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // saveAsToolStripMenuItem // this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.saveAsToolStripMenuItem.Text = "Save As"; this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); // // importToolStripMenuItem // this.importToolStripMenuItem.Name = "importToolStripMenuItem"; this.importToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.importToolStripMenuItem.Text = "Import"; this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click); // // loadLibraryToolStripMenuItem // this.loadLibraryToolStripMenuItem.Name = "loadLibraryToolStripMenuItem"; this.loadLibraryToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.loadLibraryToolStripMenuItem.Text = "Load Library"; this.loadLibraryToolStripMenuItem.Click += new System.EventHandler(this.loadLibraryToolStripMenuItem_Click); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // viewToolStripMenuItem // this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.expertModeToolStripMenuItem}); this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 23); this.viewToolStripMenuItem.Text = "View"; // // expertModeToolStripMenuItem // this.expertModeToolStripMenuItem.Name = "expertModeToolStripMenuItem"; this.expertModeToolStripMenuItem.Size = new System.Drawing.Size(193, 22); this.expertModeToolStripMenuItem.Text = "Switch to expert mode"; this.expertModeToolStripMenuItem.Click += new System.EventHandler(this.expertModeToolStripMenuItem_Click); // // librarysToolStripMenuItem // this.librarysToolStripMenuItem.Name = "librarysToolStripMenuItem"; this.librarysToolStripMenuItem.Size = new System.Drawing.Size(60, 23); this.librarysToolStripMenuItem.Text = "Librarys"; // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem, this.manualToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 23); this.helpToolStripMenuItem.Text = "Help"; // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.aboutToolStripMenuItem.Text = "About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // manualToolStripMenuItem // this.manualToolStripMenuItem.Name = "manualToolStripMenuItem"; this.manualToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.manualToolStripMenuItem.Text = "Manual"; this.manualToolStripMenuItem.Click += new System.EventHandler(this.manualToolStripMenuItem_Click); // // textBoxVendor // this.textBoxVendor.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.textBoxVendor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.textBoxVendor.Name = "textBoxVendor"; this.textBoxVendor.Size = new System.Drawing.Size(150, 23); // // vendorNameToolStripMenuItem // this.vendorNameToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.vendorNameToolStripMenuItem.BorderStyle = System.Windows.Forms.BorderStyle.None; this.vendorNameToolStripMenuItem.Name = "vendorNameToolStripMenuItem"; this.vendorNameToolStripMenuItem.ReadOnly = true; this.vendorNameToolStripMenuItem.Size = new System.Drawing.Size(76, 23); this.vendorNameToolStripMenuItem.Text = "Vendor Name:"; // // textBoxDevice // this.textBoxDevice.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.textBoxDevice.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.textBoxDevice.Margin = new System.Windows.Forms.Padding(1, 0, 10, 0); this.textBoxDevice.Name = "textBoxDevice"; this.textBoxDevice.Size = new System.Drawing.Size(150, 23); // // deviceNameToolStripMenuItem // this.deviceNameToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.deviceNameToolStripMenuItem.BackColor = System.Drawing.SystemColors.Control; this.deviceNameToolStripMenuItem.BorderStyle = System.Windows.Forms.BorderStyle.None; this.deviceNameToolStripMenuItem.Name = "deviceNameToolStripMenuItem"; this.deviceNameToolStripMenuItem.Size = new System.Drawing.Size(75, 23); this.deviceNameToolStripMenuItem.Text = "Device Name:"; // // panel1 // this.panel1.AutoSize = true; this.panel1.BackColor = System.Drawing.SystemColors.MenuHighlight; this.panel1.Controls.Add(this.panel2); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 27); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(971, 545); this.panel1.TabIndex = 5; this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint); // // panel2 // this.panel2.AutoSize = true; this.panel2.BackColor = System.Drawing.SystemColors.InactiveCaptionText; this.panel2.Controls.Add(this.splitContainer1); this.panel2.Controls.Add(this.panel3); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(971, 545); this.panel2.TabIndex = 0; // // splitContainer1 // this.splitContainer1.BackColor = System.Drawing.SystemColors.Control; this.splitContainer1.Cursor = System.Windows.Forms.Cursors.Default; this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control; this.splitContainer1.Panel1.Controls.Add(this.tabControl1); this.splitContainer1.Panel1.Controls.Add(this.tabControl3); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control; this.splitContainer1.Panel2.Controls.Add(this.tabControl2); this.splitContainer1.Panel2.Controls.Add(this.tabControl4); this.splitContainer1.Size = new System.Drawing.Size(971, 545); this.splitContainer1.SplitterDistance = 668; this.splitContainer1.TabIndex = 6; // // tabControl1 // this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Controls.Add(this.tabPage3); this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top; this.tabControl1.Location = new System.Drawing.Point(0, 0); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(668, 228); this.tabControl1.TabIndex = 1; // // tabPage1 // this.tabPage1.Controls.Add(this.genericDataGridView); this.tabPage1.Location = new System.Drawing.Point(4, 24); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Size = new System.Drawing.Size(660, 200); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Generic Data"; this.tabPage1.UseVisualStyleBackColor = true; // // genericDataGridView // this.genericDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.genericDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Index, this.Role}); this.genericDataGridView.Dock = System.Windows.Forms.DockStyle.Fill; this.genericDataGridView.Location = new System.Drawing.Point(3, 3); this.genericDataGridView.Name = "genericDataGridView"; this.genericDataGridView.RowTemplate.Height = 25; this.genericDataGridView.Size = new System.Drawing.Size(654, 194); this.genericDataGridView.TabIndex = 0; this.genericDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); // // Index // this.Index.HeaderText = "Index"; this.Index.Name = "Index"; this.Index.ReadOnly = true; // // Role // this.Role.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Role.HeaderText = "Role"; this.Role.Name = "Role"; // // tabPage2 // this.tabPage2.Location = new System.Drawing.Point(4, 24); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); this.tabPage2.Size = new System.Drawing.Size(660, 200); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Interfaces"; this.tabPage2.UseVisualStyleBackColor = true; // // tabPage3 // this.tabPage3.Location = new System.Drawing.Point(4, 24); this.tabPage3.Name = "tabPage3"; this.tabPage3.Padding = new System.Windows.Forms.Padding(3); this.tabPage3.Size = new System.Drawing.Size(660, 200); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "Attachments"; this.tabPage3.UseVisualStyleBackColor = true; // // tabControl3 // this.tabControl3.Controls.Add(this.tabPage5); this.tabControl3.Controls.Add(this.tabPage6); this.tabControl3.Dock = System.Windows.Forms.DockStyle.Bottom; this.tabControl3.Location = new System.Drawing.Point(0, 250); this.tabControl3.Name = "tabControl3"; this.tabControl3.SelectedIndex = 0; this.tabControl3.Size = new System.Drawing.Size(668, 295); this.tabControl3.TabIndex = 3; // // tabPage5 // this.tabPage5.Controls.Add(this.dataGridView2); this.tabPage5.Location = new System.Drawing.Point(4, 24); this.tabPage5.Name = "tabPage5"; this.tabPage5.Padding = new System.Windows.Forms.Padding(3); this.tabPage5.Size = new System.Drawing.Size(660, 267); this.tabPage5.TabIndex = 0; this.tabPage5.Text = "Attributes"; this.tabPage5.UseVisualStyleBackColor = true; // // dataGridView2 // this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.AttributeName, this.Description, this.Value, this.Unit, this.Default, this.DataType, this.Semantic, this.Library}); this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridView2.Location = new System.Drawing.Point(3, 3); this.dataGridView2.Name = "dataGridView2"; this.dataGridView2.RowTemplate.Height = 25; this.dataGridView2.Size = new System.Drawing.Size(654, 261); this.dataGridView2.TabIndex = 0; // // AttributeName // this.AttributeName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.AttributeName.HeaderText = "Attribute Name"; this.AttributeName.Name = "AttributeName"; // // Description // this.Description.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Description.HeaderText = "Description"; this.Description.Name = "Description"; // // Value // this.Value.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Value.HeaderText = "Value"; this.Value.Name = "Value"; // // Unit // this.Unit.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Unit.HeaderText = "Unit"; this.Unit.Name = "Unit"; // // Default // this.Default.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Default.HeaderText = "Default"; this.Default.Name = "Default"; // // DataType // this.DataType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.DataType.HeaderText = "Data Type"; this.DataType.Name = "DataType"; // // Semantic // this.Semantic.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Semantic.HeaderText = "Semantic"; this.Semantic.Name = "Semantic"; // // Library // this.Library.HeaderText = "Library"; this.Library.Name = "Library"; this.Library.ReadOnly = true; // // tabPage6 // this.tabPage6.Location = new System.Drawing.Point(4, 24); this.tabPage6.Name = "tabPage6"; this.tabPage6.Padding = new System.Windows.Forms.Padding(3); this.tabPage6.Size = new System.Drawing.Size(660, 267); this.tabPage6.TabIndex = 1; this.tabPage6.Text = "Header"; this.tabPage6.UseVisualStyleBackColor = true; // // tabControl2 // this.tabControl2.Controls.Add(this.tabPage4); this.tabControl2.Dock = System.Windows.Forms.DockStyle.Top; this.tabControl2.Location = new System.Drawing.Point(0, 0); this.tabControl2.Name = "tabControl2"; this.tabControl2.SelectedIndex = 0; this.tabControl2.Size = new System.Drawing.Size(299, 228); this.tabControl2.TabIndex = 2; // // tabPage4 // this.tabPage4.Controls.Add(this.treeView1); this.tabPage4.Location = new System.Drawing.Point(4, 24); this.tabPage4.Name = "tabPage4"; this.tabPage4.Padding = new System.Windows.Forms.Padding(3); this.tabPage4.Size = new System.Drawing.Size(291, 200); this.tabPage4.TabIndex = 0; this.tabPage4.Text = "Role Class Library"; this.tabPage4.UseVisualStyleBackColor = true; // // treeView1 // this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView1.Location = new System.Drawing.Point(3, 3); this.treeView1.Name = "treeView1"; this.treeView1.Size = new System.Drawing.Size(285, 194); this.treeView1.TabIndex = 0; this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // tabControl4 // this.tabControl4.Controls.Add(this.tabPage7); this.tabControl4.Dock = System.Windows.Forms.DockStyle.Bottom; this.tabControl4.Location = new System.Drawing.Point(0, 250); this.tabControl4.Name = "tabControl4"; this.tabControl4.SelectedIndex = 0; this.tabControl4.Size = new System.Drawing.Size(299, 295); this.tabControl4.TabIndex = 4; // // tabPage7 // this.tabPage7.Controls.Add(this.treeView2); this.tabPage7.Location = new System.Drawing.Point(4, 24); this.tabPage7.Name = "tabPage7"; this.tabPage7.Padding = new System.Windows.Forms.Padding(3); this.tabPage7.Size = new System.Drawing.Size(291, 267); this.tabPage7.TabIndex = 0; this.tabPage7.Text = "Interface Class Library"; this.tabPage7.UseVisualStyleBackColor = true; // // treeView2 // this.treeView2.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView2.Location = new System.Drawing.Point(3, 3); this.treeView2.Name = "treeView2"; this.treeView2.Size = new System.Drawing.Size(285, 261); this.treeView2.TabIndex = 0; this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect); // // panel3 // this.panel3.AutoSize = true; this.panel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.panel3.BackColor = System.Drawing.SystemColors.Highlight; this.panel3.Dock = System.Windows.Forms.DockStyle.Left; this.panel3.Location = new System.Drawing.Point(0, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(0, 545); this.panel3.TabIndex = 5; // // contextMenuStrip1 // this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.ClientSize = new System.Drawing.Size(971, 572); this.Controls.Add(this.panel1); this.Controls.Add(this.menuStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip1; this.Name = "Form1"; this.Text = "AutomationML ModellingWizard"; this.Load += new System.EventHandler(this.Form1_Load); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.tabControl1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.genericDataGridView)).EndInit(); this.tabControl3.ResumeLayout(false); this.tabPage5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit(); this.tabControl2.ResumeLayout(false); this.tabPage4.ResumeLayout(false); this.tabControl4.ResumeLayout(false); this.tabPage7.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem loadLibraryToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem librarysToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem manualToolStripMenuItem; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.TabControl tabControl3; private System.Windows.Forms.TabPage tabPage5; private System.Windows.Forms.TabPage tabPage6; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.TabPage tabPage3; private System.Windows.Forms.TabControl tabControl4; private System.Windows.Forms.TabPage tabPage7; private System.Windows.Forms.Panel panel3; private System.Windows.Forms.TabControl tabControl2; private System.Windows.Forms.TabPage tabPage4; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.DataGridView genericDataGridView; private System.Windows.Forms.DataGridViewTextBoxColumn Index; private System.Windows.Forms.DataGridViewTextBoxColumn Role; private DataGridView dataGridView2; private TreeView treeView1; private TreeView treeView2; private ToolStripMenuItem expertModeToolStripMenuItem; private ToolStripTextBox textBoxVendor; private ContextMenuStrip contextMenuStrip1; private ToolStripTextBox vendorNameToolStripMenuItem; private ToolStripTextBox textBoxDevice; private ToolStripTextBox deviceNameToolStripMenuItem; private DataGridViewTextBoxColumn AttributeName; private DataGridViewTextBoxColumn Description; private DataGridViewTextBoxColumn Value; private DataGridViewTextBoxColumn Unit; private DataGridViewTextBoxColumn Default; private DataGridViewTextBoxColumn DataType; private DataGridViewComboBoxColumn Semantic; private DataGridViewTextBoxColumn Library; } }