From f959683e017eb5866be36060c85b814a2ebee5b6 Mon Sep 17 00:00:00 2001
From: Rajkumarpulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Mon, 8 Jul 2019 10:59:25 +0200
Subject: [PATCH 01/34] Message boxes updated.
"Create new device": Errorhandling incorrect ---Issue resolved
---
CreateDevice.cs | 2 +-
MWData.cs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CreateDevice.cs b/CreateDevice.cs
index 0822d30..4c8f6bb 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -56,7 +56,7 @@ private void createDeviceBtn_Click(object sender, System.EventArgs e)
// Check if there was an input in this field, if so: try to convert it to integer
if (!String.IsNullOrWhiteSpace(txtVendorId.Text))
{
- try { device.vendorID = Convert.ToInt32(txtVendorId.Text); } catch (Exception) { MessageBox.Show("Vendor ID is in an invalid format (Expected only numbers)! Ignoring!"); }
+ try { device.vendorID = Convert.ToInt32(txtVendorId.Text); } catch (Exception) { MessageBox.Show("Warning: Vendor ID must be number.\n please correct input"); }
}
// Check if there was an input in this field, if so: try to convert it to integer
if (!String.IsNullOrWhiteSpace(txtDeviceId.Text))
diff --git a/MWData.cs b/MWData.cs
index f993304..86dbe47 100644
--- a/MWData.cs
+++ b/MWData.cs
@@ -499,7 +499,7 @@ public string CreateDevice(MWDevice device, bool isEdit)
}
else
{
- return "Sucessfully created device!\nFilepath " + amlFilePath;
+ return "Device description file created!\nFilepath " + amlFilePath;
}
}
From 8e9ce584d5db0c0ea945a118a84ccff275f190c7 Mon Sep 17 00:00:00 2001
From: Rajkumarpulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Mon, 8 Jul 2019 14:50:03 +0200
Subject: [PATCH 02/34] Create new device basic Interface
A basic User Interface for creating new automation component
---
CreateDevice.Designer.cs | 2026 +++++++++++++++++++++++++-----
CreateDevice.cs | 54 +
CreateDevice.resx | 210 ++++
ModellingWizard.csproj | 9 +
Properties/Resources.Designer.cs | 63 +
Properties/Resources.resx | 120 ++
6 files changed, 2157 insertions(+), 325 deletions(-)
create mode 100644 Properties/Resources.Designer.cs
create mode 100644 Properties/Resources.resx
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index b3adb10..4b2f086 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -28,515 +28,1891 @@ protected override void Dispose(bool disposing)
///
private void InitializeComponent()
{
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDevice));
+ System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node1");
+ System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node4");
+ System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node2", new System.Windows.Forms.TreeNode[] {
+ treeNode2});
+ System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node5");
+ System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node3", new System.Windows.Forms.TreeNode[] {
+ treeNode4});
+ System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
+ treeNode1,
+ treeNode3,
+ treeNode5});
+ this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
+ this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
+ this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
+ this.openDevicePictureDialog = new System.Windows.Forms.OpenFileDialog();
+ this.toolStrip1 = new System.Windows.Forms.ToolStrip();
+ this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
+ this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+ this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.toolStrip2 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+ this.automationComponentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.accessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.fasteningTechnologyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.lightsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.mechanicalProtectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.reflectorsFibersOpticsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.connectivityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.adaptersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.bulkheadConnectorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.doubleEndedCordsetsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.fieldAttachablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.passiveInterfcesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.receptaclesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.singleEndedCordestsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.terminatingResistorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.tSplittersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.ySplittersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.hMIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.displaysToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.industrialControllersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.smartLightLEDStackLightsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.industrialNetworkingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.iOModulesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.inductiveCouplersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.memoryModulesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.networkBlocksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.switchesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.machineVisionAndOpticalDetectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.machineVisionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.opticalIdentificationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.powerSupplyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.rFIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.safetyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.sensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.capacitiveSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.flowSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.inclinationSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.inductiveSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.magneticFieldSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.magneticallyCodedSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.magnetostrictiveSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.mechanicalCamSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.microwaveSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.photoelectricSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.pressureSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.temperatureSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.ultrasonicSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.dataSheetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
+ this.mechanicalDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.electricalDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.materialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.electricalConnectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.environmentalConditionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.functionalSafetyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.addInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.mechanicalInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.electricalInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.sensorInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.hydraulicInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.liquidicInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.pneumaticInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.cADModelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.modelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.billOfMaterialsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.billOfOperationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.cAEePlanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.documentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.certificatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.shortGuidesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+ this.treeView1 = new System.Windows.Forms.TreeView();
+ this.statusStrip1 = new System.Windows.Forms.StatusStrip();
+ this.tabControl2 = new System.Windows.Forms.TabControl();
+ this.tabPage1 = new System.Windows.Forms.TabPage();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtVendorId = new System.Windows.Forms.TextBox();
- this.txtVendorName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
- this.txtDeviceId = new System.Windows.Forms.TextBox();
+ this.txtVendorName = new System.Windows.Forms.TextBox();
+ this.label18 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
- this.txtDeviceName = new System.Windows.Forms.TextBox();
+ this.productTxtBox = new System.Windows.Forms.RichTextBox();
+ this.txtDeviceId = new System.Windows.Forms.TextBox();
+ this.hwRelTxt = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
- this.txtDeviceFamily = new System.Windows.Forms.TextBox();
+ this.swRelTxt = new System.Windows.Forms.TextBox();
+ this.txtDeviceName = new System.Windows.Forms.TextBox();
+ this.backBtn = new System.Windows.Forms.Button();
this.label6 = new System.Windows.Forms.Label();
- this.txtProductName = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.txtDeviceFamily = new System.Windows.Forms.TextBox();
+ this.deviceTypeListBox = new System.Windows.Forms.ComboBox();
this.label7 = new System.Windows.Forms.Label();
+ this.createDeviceBtn = new System.Windows.Forms.Button();
+ this.txtProductName = new System.Windows.Forms.TextBox();
+ this.txtOrderNumber = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
+ this.label16 = new System.Windows.Forms.Label();
this.openDeviceIconBtn = new System.Windows.Forms.Button();
- this.txtVendorHomepage = new System.Windows.Forms.TextBox();
+ this.label15 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
+ this.txtMaxTemp = new System.Windows.Forms.TextBox();
+ this.txtVendorHomepage = new System.Windows.Forms.TextBox();
+ this.label14 = new System.Windows.Forms.Label();
this.openDevicePicture = new System.Windows.Forms.Button();
+ this.txtMinTemp = new System.Windows.Forms.TextBox();
this.openVendorLogoBtn = new System.Windows.Forms.Button();
+ this.label13 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
this.txtIpProduction = new System.Windows.Forms.TextBox();
+ this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
- this.txtMinTemp = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.txtMaxTemp = new System.Windows.Forms.TextBox();
- this.txtOrderNumber = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.createDeviceBtn = new System.Windows.Forms.Button();
- this.deviceTypeListBox = new System.Windows.Forms.ComboBox();
- this.label17 = new System.Windows.Forms.Label();
- this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
- this.backBtn = new System.Windows.Forms.Button();
- this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
- this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
- this.openDevicePictureDialog = new System.Windows.Forms.OpenFileDialog();
- this.swRelTxt = new System.Windows.Forms.TextBox();
- this.hwRelTxt = new System.Windows.Forms.TextBox();
- this.productTxtBox = new System.Windows.Forms.RichTextBox();
- this.label18 = new System.Windows.Forms.Label();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.tabPage6 = new System.Windows.Forms.TabPage();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.tabPage9 = new System.Windows.Forms.TabPage();
+ this.tabPage10 = new System.Windows.Forms.TabPage();
+ this.tabPage11 = new System.Windows.Forms.TabPage();
+ this.tabPage12 = new System.Windows.Forms.TabPage();
+ this.interfacePortMappingGrid = new System.Windows.Forms.DataGridView();
+ this.pinnumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.attribute = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.label19 = new System.Windows.Forms.Label();
+ this.txtPinCount = new System.Windows.Forms.TextBox();
+ this.label20 = new System.Windows.Forms.Label();
+ this.label21 = new System.Windows.Forms.Label();
+ this.cmbConnectorType = new System.Windows.Forms.ComboBox();
+ this.createInterfaceBtn = new System.Windows.Forms.Button();
+ this.txtInterfaceDescription = new System.Windows.Forms.TextBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.txtInterfaceNumber = new System.Windows.Forms.TextBox();
+ this.label23 = new System.Windows.Forms.Label();
+ this.label24 = new System.Windows.Forms.Label();
+ this.button1 = new System.Windows.Forms.Button();
+ this.toolStrip3 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
+ this.splitContainer2 = new System.Windows.Forms.SplitContainer();
+ this.splitContainer3 = new System.Windows.Forms.SplitContainer();
+ this.toolStrip1.SuspendLayout();
+ this.toolStrip2.SuspendLayout();
+ this.menuStrip1.SuspendLayout();
+ this.panel1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
+ this.splitContainer1.Panel1.SuspendLayout();
+ this.splitContainer1.Panel2.SuspendLayout();
+ this.splitContainer1.SuspendLayout();
+ this.tabControl2.SuspendLayout();
+ this.tabPage1.SuspendLayout();
+ this.tabPage2.SuspendLayout();
+ this.tabPage10.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.interfacePortMappingGrid)).BeginInit();
+ this.toolStrip3.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
+ this.splitContainer2.Panel2.SuspendLayout();
+ this.splitContainer2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
+ this.splitContainer3.SuspendLayout();
this.SuspendLayout();
//
+ // elementHost1
+ //
+ this.elementHost1.Location = new System.Drawing.Point(0, 0);
+ this.elementHost1.Name = "elementHost1";
+ this.elementHost1.Size = new System.Drawing.Size(200, 100);
+ this.elementHost1.TabIndex = 0;
+ this.elementHost1.Text = "elementHost1";
+ this.elementHost1.Child = null;
+ //
+ // openVendorLogoDialog
+ //
+ this.openVendorLogoDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openVendorLogoDialog_FileOk);
+ //
+ // openDeviceIconDialog
+ //
+ this.openDeviceIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openDeviceIconDialog_FileOk);
+ //
+ // openDevicePictureDialog
+ //
+ this.openDevicePictureDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openDevicePictureDialog_FileOk);
+ //
+ // toolStrip1
+ //
+ this.toolStrip1.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.newToolStripButton,
+ this.openToolStripButton,
+ this.saveToolStripButton,
+ this.printToolStripButton,
+ this.toolStripSeparator,
+ this.cutToolStripButton,
+ this.copyToolStripButton,
+ this.pasteToolStripButton,
+ this.toolStripSeparator1,
+ this.helpToolStripButton});
+ this.toolStrip1.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip1.Name = "toolStrip1";
+ this.toolStrip1.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip1.TabIndex = 43;
+ this.toolStrip1.Text = "toolStrip1";
+ //
+ // newToolStripButton
+ //
+ this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
+ this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.newToolStripButton.Name = "newToolStripButton";
+ this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.newToolStripButton.Text = "&New";
+ //
+ // openToolStripButton
+ //
+ this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
+ this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.openToolStripButton.Name = "openToolStripButton";
+ this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.openToolStripButton.Text = "&Open";
+ //
+ // saveToolStripButton
+ //
+ this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
+ this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.saveToolStripButton.Name = "saveToolStripButton";
+ this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.saveToolStripButton.Text = "&Save";
+ //
+ // printToolStripButton
+ //
+ this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
+ this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.printToolStripButton.Name = "printToolStripButton";
+ this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.printToolStripButton.Text = "&Print";
+ //
+ // toolStripSeparator
+ //
+ this.toolStripSeparator.Name = "toolStripSeparator";
+ this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
+ //
+ // cutToolStripButton
+ //
+ this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
+ this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.cutToolStripButton.Name = "cutToolStripButton";
+ this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.cutToolStripButton.Text = "C&ut";
+ //
+ // copyToolStripButton
+ //
+ this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
+ this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.copyToolStripButton.Name = "copyToolStripButton";
+ this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.copyToolStripButton.Text = "&Copy";
+ //
+ // pasteToolStripButton
+ //
+ this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
+ this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.pasteToolStripButton.Name = "pasteToolStripButton";
+ this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.pasteToolStripButton.Text = "&Paste";
+ //
+ // toolStripSeparator1
+ //
+ this.toolStripSeparator1.Name = "toolStripSeparator1";
+ this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
+ //
+ // helpToolStripButton
+ //
+ this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
+ this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.helpToolStripButton.Name = "helpToolStripButton";
+ this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.helpToolStripButton.Text = "He&lp";
+ //
+ // toolStrip2
+ //
+ this.toolStrip2.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton1,
+ this.toolStripSeparator2,
+ this.toolStripButton2});
+ this.toolStrip2.Location = new System.Drawing.Point(0, 25);
+ this.toolStrip2.Name = "toolStrip2";
+ this.toolStrip2.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip2.TabIndex = 44;
+ this.toolStrip2.Text = "toolStrip2";
+ //
+ // toolStripButton1
+ //
+ this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
+ this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton1.Name = "toolStripButton1";
+ this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton1.Text = "toolStripButton1";
+ this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
+ //
+ // toolStripSeparator2
+ //
+ this.toolStripSeparator2.Name = "toolStripSeparator2";
+ this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton2
+ //
+ this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
+ this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton2.Name = "toolStripButton2";
+ this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton2.Text = "toolStripButton2";
+ //
+ // menuStrip1
+ //
+ this.menuStrip1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.automationComponentToolStripMenuItem,
+ this.dataSheetToolStripMenuItem,
+ this.addInterfaceToolStripMenuItem,
+ this.cADModelToolStripMenuItem,
+ this.cAEePlanToolStripMenuItem,
+ this.documentsToolStripMenuItem});
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+ this.menuStrip1.Name = "menuStrip1";
+ this.menuStrip1.Size = new System.Drawing.Size(156, 685);
+ this.menuStrip1.TabIndex = 0;
+ this.menuStrip1.Text = "menuStrip1";
+ this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuStrip1_ItemClicked);
+ //
+ // automationComponentToolStripMenuItem
+ //
+ this.automationComponentToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.accessoriesToolStripMenuItem,
+ this.connectivityToolStripMenuItem,
+ this.hMIToolStripMenuItem,
+ this.industrialNetworkingToolStripMenuItem,
+ this.machineVisionAndOpticalDetectionToolStripMenuItem,
+ this.powerSupplyToolStripMenuItem,
+ this.rFIDToolStripMenuItem,
+ this.safetyToolStripMenuItem,
+ this.sensorsToolStripMenuItem});
+ this.automationComponentToolStripMenuItem.Name = "automationComponentToolStripMenuItem";
+ this.automationComponentToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.automationComponentToolStripMenuItem.Text = "Automation Component";
+ //
+ // accessoriesToolStripMenuItem
+ //
+ this.accessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.fasteningTechnologyToolStripMenuItem,
+ this.lightsToolStripMenuItem,
+ this.mechanicalProtectionToolStripMenuItem,
+ this.reflectorsFibersOpticsToolStripMenuItem,
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem});
+ this.accessoriesToolStripMenuItem.Name = "accessoriesToolStripMenuItem";
+ this.accessoriesToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.accessoriesToolStripMenuItem.Text = "Accessories";
+ //
+ // fasteningTechnologyToolStripMenuItem
+ //
+ this.fasteningTechnologyToolStripMenuItem.Name = "fasteningTechnologyToolStripMenuItem";
+ this.fasteningTechnologyToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.fasteningTechnologyToolStripMenuItem.Text = "Fastening technology";
+ //
+ // lightsToolStripMenuItem
+ //
+ this.lightsToolStripMenuItem.Name = "lightsToolStripMenuItem";
+ this.lightsToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.lightsToolStripMenuItem.Text = "Lights ";
+ //
+ // mechanicalProtectionToolStripMenuItem
+ //
+ this.mechanicalProtectionToolStripMenuItem.Name = "mechanicalProtectionToolStripMenuItem";
+ this.mechanicalProtectionToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.mechanicalProtectionToolStripMenuItem.Text = "Mechanical Protection";
+ //
+ // reflectorsFibersOpticsToolStripMenuItem
+ //
+ this.reflectorsFibersOpticsToolStripMenuItem.Name = "reflectorsFibersOpticsToolStripMenuItem";
+ this.reflectorsFibersOpticsToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.reflectorsFibersOpticsToolStripMenuItem.Text = "Reflectors, Fibers, Optics";
+ //
+ // signalConvertersAndCommunicationAdaptersToolStripMenuItem
+ //
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Name = "signalConvertersAndCommunicationAdaptersToolStripMenuItem";
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Text = "Signal Converters and Communication Adapters";
+ //
+ // connectivityToolStripMenuItem
+ //
+ this.connectivityToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.adaptersToolStripMenuItem,
+ this.bulkheadConnectorsToolStripMenuItem,
+ this.doubleEndedCordsetsToolStripMenuItem,
+ this.fieldAttachablesToolStripMenuItem,
+ this.passiveInterfcesToolStripMenuItem,
+ this.receptaclesToolStripMenuItem,
+ this.singleEndedCordestsToolStripMenuItem,
+ this.terminatingResistorsToolStripMenuItem,
+ this.tSplittersToolStripMenuItem,
+ this.ySplittersToolStripMenuItem});
+ this.connectivityToolStripMenuItem.Name = "connectivityToolStripMenuItem";
+ this.connectivityToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.connectivityToolStripMenuItem.Text = "Connectivity";
+ //
+ // adaptersToolStripMenuItem
+ //
+ this.adaptersToolStripMenuItem.Name = "adaptersToolStripMenuItem";
+ this.adaptersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.adaptersToolStripMenuItem.Text = "Adapters";
+ //
+ // bulkheadConnectorsToolStripMenuItem
+ //
+ this.bulkheadConnectorsToolStripMenuItem.Name = "bulkheadConnectorsToolStripMenuItem";
+ this.bulkheadConnectorsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.bulkheadConnectorsToolStripMenuItem.Text = "Bulkhead Connectors";
+ //
+ // doubleEndedCordsetsToolStripMenuItem
+ //
+ this.doubleEndedCordsetsToolStripMenuItem.Name = "doubleEndedCordsetsToolStripMenuItem";
+ this.doubleEndedCordsetsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.doubleEndedCordsetsToolStripMenuItem.Text = "Double-Ended Cordsets";
+ //
+ // fieldAttachablesToolStripMenuItem
+ //
+ this.fieldAttachablesToolStripMenuItem.Name = "fieldAttachablesToolStripMenuItem";
+ this.fieldAttachablesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.fieldAttachablesToolStripMenuItem.Text = "Field Attachables";
+ //
+ // passiveInterfcesToolStripMenuItem
+ //
+ this.passiveInterfcesToolStripMenuItem.Name = "passiveInterfcesToolStripMenuItem";
+ this.passiveInterfcesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.passiveInterfcesToolStripMenuItem.Text = "Passive Interfaces";
+ //
+ // receptaclesToolStripMenuItem
+ //
+ this.receptaclesToolStripMenuItem.Name = "receptaclesToolStripMenuItem";
+ this.receptaclesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.receptaclesToolStripMenuItem.Text = "Receptacles";
+ //
+ // singleEndedCordestsToolStripMenuItem
+ //
+ this.singleEndedCordestsToolStripMenuItem.Name = "singleEndedCordestsToolStripMenuItem";
+ this.singleEndedCordestsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.singleEndedCordestsToolStripMenuItem.Text = "Single-Ended cordests";
+ //
+ // terminatingResistorsToolStripMenuItem
+ //
+ this.terminatingResistorsToolStripMenuItem.Name = "terminatingResistorsToolStripMenuItem";
+ this.terminatingResistorsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.terminatingResistorsToolStripMenuItem.Text = "Terminating Resistors";
+ //
+ // tSplittersToolStripMenuItem
+ //
+ this.tSplittersToolStripMenuItem.Name = "tSplittersToolStripMenuItem";
+ this.tSplittersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.tSplittersToolStripMenuItem.Text = "T-Splitters";
+ //
+ // ySplittersToolStripMenuItem
+ //
+ this.ySplittersToolStripMenuItem.Name = "ySplittersToolStripMenuItem";
+ this.ySplittersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.ySplittersToolStripMenuItem.Text = "Y-Splitters";
+ //
+ // hMIToolStripMenuItem
+ //
+ this.hMIToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.displaysToolStripMenuItem,
+ this.industrialControllersToolStripMenuItem,
+ this.smartLightLEDStackLightsToolStripMenuItem});
+ this.hMIToolStripMenuItem.Name = "hMIToolStripMenuItem";
+ this.hMIToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.hMIToolStripMenuItem.Text = "HMI";
+ //
+ // displaysToolStripMenuItem
+ //
+ this.displaysToolStripMenuItem.Name = "displaysToolStripMenuItem";
+ this.displaysToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.displaysToolStripMenuItem.Text = "Displays";
+ //
+ // industrialControllersToolStripMenuItem
+ //
+ this.industrialControllersToolStripMenuItem.Name = "industrialControllersToolStripMenuItem";
+ this.industrialControllersToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.industrialControllersToolStripMenuItem.Text = "Industrial Controllers";
+ //
+ // smartLightLEDStackLightsToolStripMenuItem
+ //
+ this.smartLightLEDStackLightsToolStripMenuItem.Name = "smartLightLEDStackLightsToolStripMenuItem";
+ this.smartLightLEDStackLightsToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.smartLightLEDStackLightsToolStripMenuItem.Text = "SmartLight-LED stack lights";
+ //
+ // industrialNetworkingToolStripMenuItem
+ //
+ this.industrialNetworkingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.iOModulesToolStripMenuItem,
+ this.inductiveCouplersToolStripMenuItem,
+ this.memoryModulesToolStripMenuItem,
+ this.networkBlocksToolStripMenuItem,
+ this.switchesToolStripMenuItem});
+ this.industrialNetworkingToolStripMenuItem.Name = "industrialNetworkingToolStripMenuItem";
+ this.industrialNetworkingToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.industrialNetworkingToolStripMenuItem.Text = "Industrial Networking";
+ //
+ // iOModulesToolStripMenuItem
+ //
+ this.iOModulesToolStripMenuItem.Name = "iOModulesToolStripMenuItem";
+ this.iOModulesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.iOModulesToolStripMenuItem.Text = "I/O modules";
+ //
+ // inductiveCouplersToolStripMenuItem
+ //
+ this.inductiveCouplersToolStripMenuItem.Name = "inductiveCouplersToolStripMenuItem";
+ this.inductiveCouplersToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.inductiveCouplersToolStripMenuItem.Text = "Inductive couplers";
+ //
+ // memoryModulesToolStripMenuItem
+ //
+ this.memoryModulesToolStripMenuItem.Name = "memoryModulesToolStripMenuItem";
+ this.memoryModulesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.memoryModulesToolStripMenuItem.Text = "Memory modules";
+ //
+ // networkBlocksToolStripMenuItem
+ //
+ this.networkBlocksToolStripMenuItem.Name = "networkBlocksToolStripMenuItem";
+ this.networkBlocksToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.networkBlocksToolStripMenuItem.Text = "Network blocks";
+ //
+ // switchesToolStripMenuItem
+ //
+ this.switchesToolStripMenuItem.Name = "switchesToolStripMenuItem";
+ this.switchesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.switchesToolStripMenuItem.Text = "Switches";
+ //
+ // machineVisionAndOpticalDetectionToolStripMenuItem
+ //
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.machineVisionToolStripMenuItem,
+ this.opticalIdentificationToolStripMenuItem});
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.Name = "machineVisionAndOpticalDetectionToolStripMenuItem";
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.Text = "Machine Vision and Optical detection";
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.Click += new System.EventHandler(this.MachineVisionAndOpticalDetectionToolStripMenuItem_Click);
+ //
+ // machineVisionToolStripMenuItem
+ //
+ this.machineVisionToolStripMenuItem.Name = "machineVisionToolStripMenuItem";
+ this.machineVisionToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
+ this.machineVisionToolStripMenuItem.Text = "Machine Vision";
+ //
+ // opticalIdentificationToolStripMenuItem
+ //
+ this.opticalIdentificationToolStripMenuItem.Name = "opticalIdentificationToolStripMenuItem";
+ this.opticalIdentificationToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
+ this.opticalIdentificationToolStripMenuItem.Text = "Optical Identification";
+ //
+ // powerSupplyToolStripMenuItem
+ //
+ this.powerSupplyToolStripMenuItem.Name = "powerSupplyToolStripMenuItem";
+ this.powerSupplyToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.powerSupplyToolStripMenuItem.Text = "Power Supply";
+ //
+ // rFIDToolStripMenuItem
+ //
+ this.rFIDToolStripMenuItem.Name = "rFIDToolStripMenuItem";
+ this.rFIDToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.rFIDToolStripMenuItem.Text = "RFID";
+ //
+ // safetyToolStripMenuItem
+ //
+ this.safetyToolStripMenuItem.Name = "safetyToolStripMenuItem";
+ this.safetyToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.safetyToolStripMenuItem.Text = "Safety";
+ //
+ // sensorsToolStripMenuItem
+ //
+ this.sensorsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.capacitiveSensorsToolStripMenuItem,
+ this.flowSensorsToolStripMenuItem,
+ this.inclinationSensorsToolStripMenuItem,
+ this.inductiveSensorsToolStripMenuItem,
+ this.magneticFieldSensorsToolStripMenuItem,
+ this.magneticallyCodedSensorsToolStripMenuItem,
+ this.magnetostrictiveSensorsToolStripMenuItem,
+ this.mechanicalCamSensorsToolStripMenuItem,
+ this.microwaveSensorsToolStripMenuItem,
+ this.photoelectricSensorsToolStripMenuItem,
+ this.pressureSensorsToolStripMenuItem,
+ this.temperatureSensorsToolStripMenuItem,
+ this.ultrasonicSensorsToolStripMenuItem});
+ this.sensorsToolStripMenuItem.Name = "sensorsToolStripMenuItem";
+ this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.sensorsToolStripMenuItem.Text = "Sensors";
+ //
+ // capacitiveSensorsToolStripMenuItem
+ //
+ this.capacitiveSensorsToolStripMenuItem.Name = "capacitiveSensorsToolStripMenuItem";
+ this.capacitiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.capacitiveSensorsToolStripMenuItem.Text = "Capacitive Sensors";
+ //
+ // flowSensorsToolStripMenuItem
+ //
+ this.flowSensorsToolStripMenuItem.Name = "flowSensorsToolStripMenuItem";
+ this.flowSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.flowSensorsToolStripMenuItem.Text = "FlowSensors";
+ //
+ // inclinationSensorsToolStripMenuItem
+ //
+ this.inclinationSensorsToolStripMenuItem.Name = "inclinationSensorsToolStripMenuItem";
+ this.inclinationSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.inclinationSensorsToolStripMenuItem.Text = "Inclination Sensors";
+ //
+ // inductiveSensorsToolStripMenuItem
+ //
+ this.inductiveSensorsToolStripMenuItem.Name = "inductiveSensorsToolStripMenuItem";
+ this.inductiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.inductiveSensorsToolStripMenuItem.Text = "Inductive Sensors";
+ //
+ // magneticFieldSensorsToolStripMenuItem
+ //
+ this.magneticFieldSensorsToolStripMenuItem.Name = "magneticFieldSensorsToolStripMenuItem";
+ this.magneticFieldSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magneticFieldSensorsToolStripMenuItem.Text = "Magnetic Field Sensors";
+ //
+ // magneticallyCodedSensorsToolStripMenuItem
+ //
+ this.magneticallyCodedSensorsToolStripMenuItem.Name = "magneticallyCodedSensorsToolStripMenuItem";
+ this.magneticallyCodedSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magneticallyCodedSensorsToolStripMenuItem.Text = "Magnetically coded Sensors";
+ //
+ // magnetostrictiveSensorsToolStripMenuItem
+ //
+ this.magnetostrictiveSensorsToolStripMenuItem.Name = "magnetostrictiveSensorsToolStripMenuItem";
+ this.magnetostrictiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magnetostrictiveSensorsToolStripMenuItem.Text = "Magnetostrictive Sensors";
+ //
+ // mechanicalCamSensorsToolStripMenuItem
+ //
+ this.mechanicalCamSensorsToolStripMenuItem.Name = "mechanicalCamSensorsToolStripMenuItem";
+ this.mechanicalCamSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.mechanicalCamSensorsToolStripMenuItem.Text = "Mechanical cam Sensors";
+ //
+ // microwaveSensorsToolStripMenuItem
+ //
+ this.microwaveSensorsToolStripMenuItem.Name = "microwaveSensorsToolStripMenuItem";
+ this.microwaveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.microwaveSensorsToolStripMenuItem.Text = "Microwave Sensors";
+ //
+ // photoelectricSensorsToolStripMenuItem
+ //
+ this.photoelectricSensorsToolStripMenuItem.Name = "photoelectricSensorsToolStripMenuItem";
+ this.photoelectricSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.photoelectricSensorsToolStripMenuItem.Text = "Photoelectric Sensors";
+ //
+ // pressureSensorsToolStripMenuItem
+ //
+ this.pressureSensorsToolStripMenuItem.Name = "pressureSensorsToolStripMenuItem";
+ this.pressureSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.pressureSensorsToolStripMenuItem.Text = "Pressure Sensors";
+ //
+ // temperatureSensorsToolStripMenuItem
+ //
+ this.temperatureSensorsToolStripMenuItem.Name = "temperatureSensorsToolStripMenuItem";
+ this.temperatureSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.temperatureSensorsToolStripMenuItem.Text = "Temperature Sensors";
+ //
+ // ultrasonicSensorsToolStripMenuItem
+ //
+ this.ultrasonicSensorsToolStripMenuItem.Name = "ultrasonicSensorsToolStripMenuItem";
+ this.ultrasonicSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.ultrasonicSensorsToolStripMenuItem.Text = "Ultrasonic Sensors";
+ //
+ // dataSheetToolStripMenuItem
+ //
+ this.dataSheetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripMenuItem1,
+ this.mechanicalDataToolStripMenuItem,
+ this.electricalDataToolStripMenuItem,
+ this.materialToolStripMenuItem,
+ this.electricalConnectionToolStripMenuItem,
+ this.environmentalConditionsToolStripMenuItem,
+ this.functionalSafetyToolStripMenuItem});
+ this.dataSheetToolStripMenuItem.Name = "dataSheetToolStripMenuItem";
+ this.dataSheetToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.dataSheetToolStripMenuItem.Text = "Data Sheet";
+ this.dataSheetToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // toolStripMenuItem1
+ //
+ this.toolStripMenuItem1.Name = "toolStripMenuItem1";
+ this.toolStripMenuItem1.Size = new System.Drawing.Size(212, 22);
+ this.toolStripMenuItem1.Text = "General data";
+ this.toolStripMenuItem1.Click += new System.EventHandler(this.ToolStripMenuItem1_Click_1);
+ //
+ // mechanicalDataToolStripMenuItem
+ //
+ this.mechanicalDataToolStripMenuItem.Name = "mechanicalDataToolStripMenuItem";
+ this.mechanicalDataToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.mechanicalDataToolStripMenuItem.Text = "Mechanical data";
+ this.mechanicalDataToolStripMenuItem.Click += new System.EventHandler(this.MechanicalDataToolStripMenuItem_Click_1);
+ //
+ // electricalDataToolStripMenuItem
+ //
+ this.electricalDataToolStripMenuItem.Name = "electricalDataToolStripMenuItem";
+ this.electricalDataToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.electricalDataToolStripMenuItem.Text = "Electrical data";
+ this.electricalDataToolStripMenuItem.Click += new System.EventHandler(this.ElectricalDataToolStripMenuItem_Click);
+ //
+ // materialToolStripMenuItem
+ //
+ this.materialToolStripMenuItem.Name = "materialToolStripMenuItem";
+ this.materialToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.materialToolStripMenuItem.Text = "Material";
+ //
+ // electricalConnectionToolStripMenuItem
+ //
+ this.electricalConnectionToolStripMenuItem.Name = "electricalConnectionToolStripMenuItem";
+ this.electricalConnectionToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.electricalConnectionToolStripMenuItem.Text = "Electrical Connection";
+ //
+ // environmentalConditionsToolStripMenuItem
+ //
+ this.environmentalConditionsToolStripMenuItem.Name = "environmentalConditionsToolStripMenuItem";
+ this.environmentalConditionsToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.environmentalConditionsToolStripMenuItem.Text = "Environmental Conditions";
+ //
+ // functionalSafetyToolStripMenuItem
+ //
+ this.functionalSafetyToolStripMenuItem.Name = "functionalSafetyToolStripMenuItem";
+ this.functionalSafetyToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
+ this.functionalSafetyToolStripMenuItem.Text = "Functional Safety";
+ //
+ // addInterfaceToolStripMenuItem
+ //
+ this.addInterfaceToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.mechanicalInterfaceToolStripMenuItem,
+ this.electricalInterfaceToolStripMenuItem,
+ this.sensorInterfaceToolStripMenuItem,
+ this.hydraulicInterfaceToolStripMenuItem,
+ this.liquidicInterfaceToolStripMenuItem,
+ this.pneumaticInterfaceToolStripMenuItem});
+ this.addInterfaceToolStripMenuItem.Name = "addInterfaceToolStripMenuItem";
+ this.addInterfaceToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.addInterfaceToolStripMenuItem.Text = "Add Interface";
+ this.addInterfaceToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // mechanicalInterfaceToolStripMenuItem
+ //
+ this.mechanicalInterfaceToolStripMenuItem.Name = "mechanicalInterfaceToolStripMenuItem";
+ this.mechanicalInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.mechanicalInterfaceToolStripMenuItem.Text = "Mechanical Interface";
+ //
+ // electricalInterfaceToolStripMenuItem
+ //
+ this.electricalInterfaceToolStripMenuItem.Name = "electricalInterfaceToolStripMenuItem";
+ this.electricalInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.electricalInterfaceToolStripMenuItem.Text = "Electrical Interface";
+ //
+ // sensorInterfaceToolStripMenuItem
+ //
+ this.sensorInterfaceToolStripMenuItem.Name = "sensorInterfaceToolStripMenuItem";
+ this.sensorInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.sensorInterfaceToolStripMenuItem.Text = "Sensor Interface";
+ //
+ // hydraulicInterfaceToolStripMenuItem
+ //
+ this.hydraulicInterfaceToolStripMenuItem.Name = "hydraulicInterfaceToolStripMenuItem";
+ this.hydraulicInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.hydraulicInterfaceToolStripMenuItem.Text = "Hydraulic Interface";
+ //
+ // liquidicInterfaceToolStripMenuItem
+ //
+ this.liquidicInterfaceToolStripMenuItem.Name = "liquidicInterfaceToolStripMenuItem";
+ this.liquidicInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.liquidicInterfaceToolStripMenuItem.Text = "Liquidic Interface";
+ //
+ // pneumaticInterfaceToolStripMenuItem
+ //
+ this.pneumaticInterfaceToolStripMenuItem.Name = "pneumaticInterfaceToolStripMenuItem";
+ this.pneumaticInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
+ this.pneumaticInterfaceToolStripMenuItem.Text = "Pneumatic Interface";
+ //
+ // cADModelToolStripMenuItem
+ //
+ this.cADModelToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.modelToolStripMenuItem,
+ this.billOfMaterialsToolStripMenuItem,
+ this.billOfOperationsToolStripMenuItem});
+ this.cADModelToolStripMenuItem.Name = "cADModelToolStripMenuItem";
+ this.cADModelToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.cADModelToolStripMenuItem.Text = "CAD model";
+ this.cADModelToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // modelToolStripMenuItem
+ //
+ this.modelToolStripMenuItem.Name = "modelToolStripMenuItem";
+ this.modelToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
+ this.modelToolStripMenuItem.Text = "Model";
+ //
+ // billOfMaterialsToolStripMenuItem
+ //
+ this.billOfMaterialsToolStripMenuItem.Name = "billOfMaterialsToolStripMenuItem";
+ this.billOfMaterialsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
+ this.billOfMaterialsToolStripMenuItem.Text = "Bill of Materials";
+ //
+ // billOfOperationsToolStripMenuItem
+ //
+ this.billOfOperationsToolStripMenuItem.Name = "billOfOperationsToolStripMenuItem";
+ this.billOfOperationsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
+ this.billOfOperationsToolStripMenuItem.Text = "Bill of Operations";
+ //
+ // cAEePlanToolStripMenuItem
+ //
+ this.cAEePlanToolStripMenuItem.Name = "cAEePlanToolStripMenuItem";
+ this.cAEePlanToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.cAEePlanToolStripMenuItem.Text = "CAE (ePlan)";
+ this.cAEePlanToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // documentsToolStripMenuItem
+ //
+ this.documentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.certificatesToolStripMenuItem,
+ this.shortGuidesToolStripMenuItem});
+ this.documentsToolStripMenuItem.Name = "documentsToolStripMenuItem";
+ this.documentsToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.documentsToolStripMenuItem.Text = "Documents";
+ this.documentsToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // certificatesToolStripMenuItem
+ //
+ this.certificatesToolStripMenuItem.Name = "certificatesToolStripMenuItem";
+ this.certificatesToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
+ this.certificatesToolStripMenuItem.Text = "Certificates";
+ //
+ // shortGuidesToolStripMenuItem
+ //
+ this.shortGuidesToolStripMenuItem.Name = "shortGuidesToolStripMenuItem";
+ this.shortGuidesToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
+ this.shortGuidesToolStripMenuItem.Text = "Short guides";
+ //
+ // panel1
+ //
+ this.panel1.Controls.Add(this.splitContainer1);
+ this.panel1.Controls.Add(this.menuStrip1);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel1.Location = new System.Drawing.Point(0, 50);
+ this.panel1.Margin = new System.Windows.Forms.Padding(0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(1090, 685);
+ this.panel1.TabIndex = 45;
+ //
+ // splitContainer1
+ //
+ this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer1.Location = new System.Drawing.Point(156, 0);
+ this.splitContainer1.Name = "splitContainer1";
+ //
+ // splitContainer1.Panel1
+ //
+ this.splitContainer1.Panel1.Controls.Add(this.treeView1);
+ //
+ // splitContainer1.Panel2
+ //
+ this.splitContainer1.Panel2.Controls.Add(this.tabControl2);
+ this.splitContainer1.Size = new System.Drawing.Size(934, 685);
+ this.splitContainer1.SplitterDistance = 196;
+ this.splitContainer1.TabIndex = 48;
+ //
+ // treeView1
+ //
+ this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.treeView1.Location = new System.Drawing.Point(0, 0);
+ this.treeView1.Name = "treeView1";
+ treeNode1.Name = "Node1";
+ treeNode1.Text = "Node1";
+ treeNode2.Name = "Node4";
+ treeNode2.Text = "Node4";
+ treeNode3.Name = "Node2";
+ treeNode3.Text = "Node2";
+ treeNode4.Name = "Node5";
+ treeNode4.Text = "Node5";
+ treeNode5.Name = "Node3";
+ treeNode5.Text = "Node3";
+ treeNode6.Name = "Node0";
+ treeNode6.Text = "Node0";
+ this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
+ treeNode6});
+ this.treeView1.Size = new System.Drawing.Size(196, 685);
+ this.treeView1.TabIndex = 0;
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.Location = new System.Drawing.Point(0, 735);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
+ this.statusStrip1.TabIndex = 46;
+ this.statusStrip1.Text = "statusStrip1";
+ //
+ // tabControl2
+ //
+ this.tabControl2.Controls.Add(this.tabPage1);
+ this.tabControl2.Controls.Add(this.tabPage2);
+ this.tabControl2.Controls.Add(this.tabPage3);
+ this.tabControl2.Controls.Add(this.tabPage4);
+ this.tabControl2.Controls.Add(this.tabPage5);
+ this.tabControl2.Controls.Add(this.tabPage6);
+ this.tabControl2.Controls.Add(this.tabPage7);
+ this.tabControl2.Controls.Add(this.tabPage8);
+ this.tabControl2.Controls.Add(this.tabPage9);
+ this.tabControl2.Controls.Add(this.tabPage10);
+ this.tabControl2.Controls.Add(this.tabPage11);
+ this.tabControl2.Controls.Add(this.tabPage12);
+ this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.tabControl2.Location = new System.Drawing.Point(0, 0);
+ this.tabControl2.Margin = new System.Windows.Forms.Padding(0);
+ this.tabControl2.Name = "tabControl2";
+ this.tabControl2.SelectedIndex = 0;
+ this.tabControl2.Size = new System.Drawing.Size(734, 685);
+ this.tabControl2.TabIndex = 47;
+ //
+ // tabPage1
+ //
+ this.tabPage1.Controls.Add(this.label1);
+ this.tabPage1.Controls.Add(this.label2);
+ this.tabPage1.Controls.Add(this.txtVendorId);
+ this.tabPage1.Controls.Add(this.label3);
+ this.tabPage1.Controls.Add(this.txtVendorName);
+ this.tabPage1.Controls.Add(this.label18);
+ this.tabPage1.Controls.Add(this.label4);
+ this.tabPage1.Controls.Add(this.productTxtBox);
+ this.tabPage1.Controls.Add(this.txtDeviceId);
+ this.tabPage1.Controls.Add(this.hwRelTxt);
+ this.tabPage1.Controls.Add(this.label5);
+ this.tabPage1.Controls.Add(this.swRelTxt);
+ this.tabPage1.Controls.Add(this.txtDeviceName);
+ this.tabPage1.Controls.Add(this.backBtn);
+ this.tabPage1.Controls.Add(this.label6);
+ this.tabPage1.Controls.Add(this.label17);
+ this.tabPage1.Controls.Add(this.txtDeviceFamily);
+ this.tabPage1.Controls.Add(this.deviceTypeListBox);
+ this.tabPage1.Controls.Add(this.label7);
+ this.tabPage1.Controls.Add(this.createDeviceBtn);
+ this.tabPage1.Controls.Add(this.txtProductName);
+ this.tabPage1.Controls.Add(this.txtOrderNumber);
+ this.tabPage1.Controls.Add(this.label8);
+ this.tabPage1.Controls.Add(this.label16);
+ this.tabPage1.Controls.Add(this.openDeviceIconBtn);
+ this.tabPage1.Controls.Add(this.label15);
+ this.tabPage1.Controls.Add(this.label9);
+ this.tabPage1.Controls.Add(this.txtMaxTemp);
+ this.tabPage1.Controls.Add(this.txtVendorHomepage);
+ this.tabPage1.Controls.Add(this.label14);
+ this.tabPage1.Controls.Add(this.openDevicePicture);
+ this.tabPage1.Controls.Add(this.txtMinTemp);
+ this.tabPage1.Controls.Add(this.openVendorLogoBtn);
+ this.tabPage1.Controls.Add(this.label13);
+ this.tabPage1.Controls.Add(this.label10);
+ this.tabPage1.Controls.Add(this.txtIpProduction);
+ this.tabPage1.Controls.Add(this.label11);
+ this.tabPage1.Controls.Add(this.label12);
+ this.tabPage1.Location = new System.Drawing.Point(4, 22);
+ this.tabPage1.Name = "tabPage1";
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage1.Size = new System.Drawing.Size(726, 637);
+ this.tabPage1.TabIndex = 0;
+ this.tabPage1.Text = "General data";
+ this.tabPage1.UseVisualStyleBackColor = true;
+ //
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.label1.Location = new System.Drawing.Point(20, 22);
+ this.label1.Location = new System.Drawing.Point(119, 62);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(174, 20);
- this.label1.TabIndex = 1;
+ this.label1.TabIndex = 43;
this.label1.Text = "Create a new Device";
//
// label2
//
this.label2.AutoSize = true;
this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label2.Location = new System.Drawing.Point(37, 90);
+ this.label2.Location = new System.Drawing.Point(136, 130);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(58, 13);
- this.label2.TabIndex = 2;
+ this.label2.TabIndex = 45;
this.label2.Text = "Vendor ID:";
//
// txtVendorId
//
- this.txtVendorId.Location = new System.Drawing.Point(110, 87);
+ this.txtVendorId.Location = new System.Drawing.Point(209, 127);
this.txtVendorId.Name = "txtVendorId";
this.txtVendorId.Size = new System.Drawing.Size(100, 20);
- this.txtVendorId.TabIndex = 3;
- //
- // txtVendorName
- //
- this.txtVendorName.Location = new System.Drawing.Point(371, 55);
- this.txtVendorName.Name = "txtVendorName";
- this.txtVendorName.Size = new System.Drawing.Size(125, 20);
- this.txtVendorName.TabIndex = 2;
+ this.txtVendorId.TabIndex = 47;
//
// label3
//
this.label3.AutoSize = true;
this.label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.Location = new System.Drawing.Point(279, 58);
+ this.label3.Location = new System.Drawing.Point(378, 98);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(87, 13);
- this.label3.TabIndex = 4;
+ this.label3.TabIndex = 49;
this.label3.Text = "Vendor Name:";
//
- // txtDeviceId
+ // txtVendorName
//
- this.txtDeviceId.Location = new System.Drawing.Point(110, 118);
- this.txtDeviceId.Name = "txtDeviceId";
- this.txtDeviceId.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceId.TabIndex = 4;
+ this.txtVendorName.Location = new System.Drawing.Point(470, 95);
+ this.txtVendorName.Name = "txtVendorName";
+ this.txtVendorName.Size = new System.Drawing.Size(125, 20);
+ this.txtVendorName.TabIndex = 46;
+ //
+ // label18
+ //
+ this.label18.AutoSize = true;
+ this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label18.Location = new System.Drawing.Point(440, 386);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(143, 13);
+ this.label18.TabIndex = 80;
+ this.label18.Text = "Optional Classifications:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label4.Location = new System.Drawing.Point(37, 121);
+ this.label4.Location = new System.Drawing.Point(136, 161);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(58, 13);
- this.label4.TabIndex = 6;
+ this.label4.TabIndex = 51;
this.label4.Text = "Device ID:";
//
- // txtDeviceName
+ // productTxtBox
//
- this.txtDeviceName.Location = new System.Drawing.Point(110, 55);
- this.txtDeviceName.Name = "txtDeviceName";
- this.txtDeviceName.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceName.TabIndex = 1;
+ this.productTxtBox.Location = new System.Drawing.Point(123, 358);
+ this.productTxtBox.Name = "productTxtBox";
+ this.productTxtBox.Size = new System.Drawing.Size(306, 188);
+ this.productTxtBox.TabIndex = 56;
+ this.productTxtBox.Text = "";
+ //
+ // txtDeviceId
+ //
+ this.txtDeviceId.Location = new System.Drawing.Point(209, 158);
+ this.txtDeviceId.Name = "txtDeviceId";
+ this.txtDeviceId.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceId.TabIndex = 48;
+ //
+ // hwRelTxt
+ //
+ this.hwRelTxt.Location = new System.Drawing.Point(470, 127);
+ this.hwRelTxt.Name = "hwRelTxt";
+ this.hwRelTxt.Size = new System.Drawing.Size(125, 20);
+ this.hwRelTxt.TabIndex = 57;
//
// label5
//
this.label5.AutoSize = true;
this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.Location = new System.Drawing.Point(20, 58);
+ this.label5.Location = new System.Drawing.Point(119, 98);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(87, 13);
- this.label5.TabIndex = 8;
+ this.label5.TabIndex = 54;
this.label5.Text = "Device Name:";
//
- // txtDeviceFamily
+ // swRelTxt
//
- this.txtDeviceFamily.Location = new System.Drawing.Point(110, 155);
- this.txtDeviceFamily.Name = "txtDeviceFamily";
- this.txtDeviceFamily.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceFamily.TabIndex = 5;
+ this.swRelTxt.Location = new System.Drawing.Point(470, 159);
+ this.swRelTxt.Name = "swRelTxt";
+ this.swRelTxt.Size = new System.Drawing.Size(125, 20);
+ this.swRelTxt.TabIndex = 59;
+ //
+ // txtDeviceName
+ //
+ this.txtDeviceName.Location = new System.Drawing.Point(209, 95);
+ this.txtDeviceName.Name = "txtDeviceName";
+ this.txtDeviceName.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceName.TabIndex = 44;
+ //
+ // backBtn
+ //
+ this.backBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.backBtn.Location = new System.Drawing.Point(123, 552);
+ this.backBtn.Name = "backBtn";
+ this.backBtn.Size = new System.Drawing.Size(52, 23);
+ this.backBtn.TabIndex = 76;
+ this.backBtn.Text = "Back";
+ this.backBtn.UseVisualStyleBackColor = true;
//
// label6
//
this.label6.AutoSize = true;
this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label6.Location = new System.Drawing.Point(19, 158);
+ this.label6.Location = new System.Drawing.Point(118, 198);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(76, 13);
- this.label6.TabIndex = 10;
+ this.label6.TabIndex = 58;
this.label6.Text = "Device Family:";
//
- // txtProductName
+ // label17
//
- this.txtProductName.Location = new System.Drawing.Point(110, 189);
- this.txtProductName.Name = "txtProductName";
- this.txtProductName.Size = new System.Drawing.Size(100, 20);
- this.txtProductName.TabIndex = 6;
+ this.label17.AutoSize = true;
+ this.label17.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label17.Location = new System.Drawing.Point(323, 197);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(141, 13);
+ this.label17.TabIndex = 79;
+ this.label17.Text = "Communication Technology:";
+ //
+ // txtDeviceFamily
+ //
+ this.txtDeviceFamily.Location = new System.Drawing.Point(209, 195);
+ this.txtDeviceFamily.Name = "txtDeviceFamily";
+ this.txtDeviceFamily.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceFamily.TabIndex = 50;
+ //
+ // deviceTypeListBox
+ //
+ this.deviceTypeListBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.deviceTypeListBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.deviceTypeListBox.FormattingEnabled = true;
+ this.deviceTypeListBox.Items.AddRange(new object[] {
+ "IO-Link",
+ "ProfinetIO"});
+ this.deviceTypeListBox.Location = new System.Drawing.Point(470, 194);
+ this.deviceTypeListBox.MaxDropDownItems = 2;
+ this.deviceTypeListBox.Name = "deviceTypeListBox";
+ this.deviceTypeListBox.Size = new System.Drawing.Size(125, 21);
+ this.deviceTypeListBox.TabIndex = 61;
//
// label7
//
this.label7.AutoSize = true;
this.label7.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label7.Location = new System.Drawing.Point(21, 192);
+ this.label7.Location = new System.Drawing.Point(120, 232);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(78, 13);
- this.label7.TabIndex = 12;
+ this.label7.TabIndex = 60;
this.label7.Text = "Product Name:";
//
+ // createDeviceBtn
+ //
+ this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.createDeviceBtn.Location = new System.Drawing.Point(525, 552);
+ this.createDeviceBtn.Name = "createDeviceBtn";
+ this.createDeviceBtn.Size = new System.Drawing.Size(97, 23);
+ this.createDeviceBtn.TabIndex = 75;
+ this.createDeviceBtn.Text = "Create Device";
+ this.createDeviceBtn.UseVisualStyleBackColor = true;
+ //
+ // txtProductName
+ //
+ this.txtProductName.Location = new System.Drawing.Point(209, 229);
+ this.txtProductName.Name = "txtProductName";
+ this.txtProductName.Size = new System.Drawing.Size(100, 20);
+ this.txtProductName.TabIndex = 52;
+ //
+ // txtOrderNumber
+ //
+ this.txtOrderNumber.Location = new System.Drawing.Point(209, 262);
+ this.txtOrderNumber.Name = "txtOrderNumber";
+ this.txtOrderNumber.Size = new System.Drawing.Size(100, 20);
+ this.txtOrderNumber.TabIndex = 53;
+ //
// label8
//
this.label8.AutoSize = true;
this.label8.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label8.Location = new System.Drawing.Point(23, 293);
+ this.label8.Location = new System.Drawing.Point(122, 333);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(71, 13);
- this.label8.TabIndex = 14;
+ this.label8.TabIndex = 63;
this.label8.Text = "Product Text:";
//
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label16.Location = new System.Drawing.Point(122, 264);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(76, 13);
+ this.label16.TabIndex = 78;
+ this.label16.Text = "Order Number:";
+ //
// openDeviceIconBtn
//
this.openDeviceIconBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDeviceIconBtn.Location = new System.Drawing.Point(371, 224);
+ this.openDeviceIconBtn.Location = new System.Drawing.Point(470, 264);
this.openDeviceIconBtn.Name = "openDeviceIconBtn";
this.openDeviceIconBtn.Size = new System.Drawing.Size(125, 23);
- this.openDeviceIconBtn.TabIndex = 14;
+ this.openDeviceIconBtn.TabIndex = 64;
this.openDeviceIconBtn.Text = "Pick Device Icon";
this.openDeviceIconBtn.UseVisualStyleBackColor = true;
- this.openDeviceIconBtn.Click += new System.EventHandler(this.openDeviceIconBtn_Click);
//
- // txtVendorHomepage
+ // label15
//
- this.txtVendorHomepage.Location = new System.Drawing.Point(110, 256);
- this.txtVendorHomepage.Name = "txtVendorHomepage";
- this.txtVendorHomepage.Size = new System.Drawing.Size(146, 20);
- this.txtVendorHomepage.TabIndex = 8;
+ this.label15.AutoSize = true;
+ this.label15.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label15.Location = new System.Drawing.Point(512, 467);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(30, 13);
+ this.label15.TabIndex = 77;
+ this.label15.Text = "Max:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label9.Location = new System.Drawing.Point(5, 259);
+ this.label9.Location = new System.Drawing.Point(104, 299);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(99, 13);
- this.label9.TabIndex = 17;
+ this.label9.TabIndex = 68;
this.label9.Text = "Vendor Homepage:";
//
+ // txtMaxTemp
+ //
+ this.txtMaxTemp.Location = new System.Drawing.Point(548, 464);
+ this.txtMaxTemp.Name = "txtMaxTemp";
+ this.txtMaxTemp.Size = new System.Drawing.Size(47, 20);
+ this.txtMaxTemp.TabIndex = 67;
+ //
+ // txtVendorHomepage
+ //
+ this.txtVendorHomepage.Location = new System.Drawing.Point(209, 296);
+ this.txtVendorHomepage.Name = "txtVendorHomepage";
+ this.txtVendorHomepage.Size = new System.Drawing.Size(146, 20);
+ this.txtVendorHomepage.TabIndex = 55;
+ //
+ // label14
+ //
+ this.label14.AutoSize = true;
+ this.label14.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label14.Location = new System.Drawing.Point(512, 441);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(27, 13);
+ this.label14.TabIndex = 74;
+ this.label14.Text = "Min:";
+ //
// openDevicePicture
//
this.openDevicePicture.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDevicePicture.Location = new System.Drawing.Point(371, 256);
+ this.openDevicePicture.Location = new System.Drawing.Point(470, 296);
this.openDevicePicture.Name = "openDevicePicture";
this.openDevicePicture.Size = new System.Drawing.Size(125, 23);
- this.openDevicePicture.TabIndex = 15;
+ this.openDevicePicture.TabIndex = 65;
this.openDevicePicture.Text = "Pick Device Picture";
this.openDevicePicture.UseVisualStyleBackColor = true;
- this.openDevicePicture.Click += new System.EventHandler(this.openDevicePicture_Click);
+ //
+ // txtMinTemp
+ //
+ this.txtMinTemp.Location = new System.Drawing.Point(548, 438);
+ this.txtMinTemp.Name = "txtMinTemp";
+ this.txtMinTemp.Size = new System.Drawing.Size(47, 20);
+ this.txtMinTemp.TabIndex = 66;
//
// openVendorLogoBtn
//
this.openVendorLogoBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openVendorLogoBtn.Location = new System.Drawing.Point(371, 190);
+ this.openVendorLogoBtn.Location = new System.Drawing.Point(470, 230);
this.openVendorLogoBtn.Name = "openVendorLogoBtn";
this.openVendorLogoBtn.Size = new System.Drawing.Size(125, 23);
- this.openVendorLogoBtn.TabIndex = 13;
+ this.openVendorLogoBtn.TabIndex = 62;
this.openVendorLogoBtn.Text = "Pick Vendor Logo";
this.openVendorLogoBtn.UseVisualStyleBackColor = true;
- this.openVendorLogoBtn.Click += new System.EventHandler(this.openVendorLogoBtn_Click);
+ //
+ // label13
+ //
+ this.label13.AutoSize = true;
+ this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label13.Location = new System.Drawing.Point(440, 413);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(155, 13);
+ this.label13.TabIndex = 73;
+ this.label13.Text = "Operating ambient temperature:";
//
// label10
//
this.label10.AutoSize = true;
this.label10.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label10.Location = new System.Drawing.Point(267, 90);
+ this.label10.Location = new System.Drawing.Point(366, 130);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(98, 13);
- this.label10.TabIndex = 23;
+ this.label10.TabIndex = 70;
this.label10.Text = "Hardware Release:";
//
+ // txtIpProduction
+ //
+ this.txtIpProduction.Location = new System.Drawing.Point(548, 500);
+ this.txtIpProduction.Name = "txtIpProduction";
+ this.txtIpProduction.Size = new System.Drawing.Size(47, 20);
+ this.txtIpProduction.TabIndex = 69;
+ //
// label11
//
this.label11.AutoSize = true;
this.label11.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label11.Location = new System.Drawing.Point(267, 122);
+ this.label11.Location = new System.Drawing.Point(366, 162);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(94, 13);
- this.label11.TabIndex = 25;
+ this.label11.TabIndex = 71;
this.label11.Text = "Software Release:";
//
- // txtIpProduction
- //
- this.txtIpProduction.Location = new System.Drawing.Point(449, 460);
- this.txtIpProduction.Name = "txtIpProduction";
- this.txtIpProduction.Size = new System.Drawing.Size(47, 20);
- this.txtIpProduction.TabIndex = 18;
- //
// label12
//
this.label12.AutoSize = true;
this.label12.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label12.Location = new System.Drawing.Point(372, 463);
+ this.label12.Location = new System.Drawing.Point(471, 503);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(71, 13);
- this.label12.TabIndex = 26;
+ this.label12.TabIndex = 72;
this.label12.Text = "IP Protection:";
//
- // txtMinTemp
- //
- this.txtMinTemp.Location = new System.Drawing.Point(449, 398);
- this.txtMinTemp.Name = "txtMinTemp";
- this.txtMinTemp.Size = new System.Drawing.Size(47, 20);
- this.txtMinTemp.TabIndex = 16;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label13.Location = new System.Drawing.Point(341, 373);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(155, 13);
- this.label13.TabIndex = 28;
- this.label13.Text = "Operating ambient temperature:";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label14.Location = new System.Drawing.Point(413, 401);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(27, 13);
- this.label14.TabIndex = 30;
- this.label14.Text = "Min:";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label15.Location = new System.Drawing.Point(413, 427);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(30, 13);
- this.label15.TabIndex = 32;
- this.label15.Text = "Max:";
- //
- // txtMaxTemp
- //
- this.txtMaxTemp.Location = new System.Drawing.Point(449, 424);
- this.txtMaxTemp.Name = "txtMaxTemp";
- this.txtMaxTemp.Size = new System.Drawing.Size(47, 20);
- this.txtMaxTemp.TabIndex = 17;
- //
- // txtOrderNumber
- //
- this.txtOrderNumber.Location = new System.Drawing.Point(110, 222);
- this.txtOrderNumber.Name = "txtOrderNumber";
- this.txtOrderNumber.Size = new System.Drawing.Size(100, 20);
- this.txtOrderNumber.TabIndex = 7;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label16.Location = new System.Drawing.Point(23, 224);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(76, 13);
- this.label16.TabIndex = 33;
- this.label16.Text = "Order Number:";
- //
- // createDeviceBtn
- //
- this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createDeviceBtn.Location = new System.Drawing.Point(426, 512);
- this.createDeviceBtn.Name = "createDeviceBtn";
- this.createDeviceBtn.Size = new System.Drawing.Size(97, 23);
- this.createDeviceBtn.TabIndex = 30;
- this.createDeviceBtn.Text = "Create Device";
- this.createDeviceBtn.UseVisualStyleBackColor = true;
- this.createDeviceBtn.Click += new System.EventHandler(this.createDeviceBtn_Click);
- //
- // deviceTypeListBox
- //
- this.deviceTypeListBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.deviceTypeListBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.deviceTypeListBox.FormattingEnabled = true;
- this.deviceTypeListBox.Items.AddRange(new object[] {
- "IO-Link",
- "ProfinetIO"});
- this.deviceTypeListBox.Location = new System.Drawing.Point(371, 154);
- this.deviceTypeListBox.MaxDropDownItems = 2;
- this.deviceTypeListBox.Name = "deviceTypeListBox";
- this.deviceTypeListBox.Size = new System.Drawing.Size(125, 21);
- this.deviceTypeListBox.TabIndex = 12;
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label17.Location = new System.Drawing.Point(224, 157);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(141, 13);
- this.label17.TabIndex = 37;
- this.label17.Text = "Communication Technology:";
- //
- // elementHost1
- //
- this.elementHost1.Location = new System.Drawing.Point(0, 0);
- this.elementHost1.Name = "elementHost1";
- this.elementHost1.Size = new System.Drawing.Size(200, 100);
- this.elementHost1.TabIndex = 0;
- this.elementHost1.Text = "elementHost1";
- this.elementHost1.Child = null;
- //
- // backBtn
- //
- this.backBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.backBtn.Location = new System.Drawing.Point(24, 512);
- this.backBtn.Name = "backBtn";
- this.backBtn.Size = new System.Drawing.Size(52, 23);
- this.backBtn.TabIndex = 31;
- this.backBtn.Text = "Back";
- this.backBtn.UseVisualStyleBackColor = true;
- this.backBtn.Click += new System.EventHandler(this.backBtn_Click);
- //
- // openVendorLogoDialog
- //
- this.openVendorLogoDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openVendorLogoDialog_FileOk);
- //
- // openDeviceIconDialog
- //
- this.openDeviceIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openDeviceIconDialog_FileOk);
- //
- // openDevicePictureDialog
- //
- this.openDevicePictureDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openDevicePictureDialog_FileOk);
- //
- // swRelTxt
- //
- this.swRelTxt.Location = new System.Drawing.Point(371, 119);
- this.swRelTxt.Name = "swRelTxt";
- this.swRelTxt.Size = new System.Drawing.Size(125, 20);
- this.swRelTxt.TabIndex = 11;
- //
- // hwRelTxt
- //
- this.hwRelTxt.Location = new System.Drawing.Point(371, 87);
- this.hwRelTxt.Name = "hwRelTxt";
- this.hwRelTxt.Size = new System.Drawing.Size(125, 20);
- this.hwRelTxt.TabIndex = 10;
- //
- // productTxtBox
- //
- this.productTxtBox.Location = new System.Drawing.Point(24, 318);
- this.productTxtBox.Name = "productTxtBox";
- this.productTxtBox.Size = new System.Drawing.Size(306, 188);
- this.productTxtBox.TabIndex = 9;
- this.productTxtBox.Text = "";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label18.Location = new System.Drawing.Point(341, 346);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(143, 13);
- this.label18.TabIndex = 42;
- this.label18.Text = "Optional Classifications:";
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.interfacePortMappingGrid);
+ this.tabPage2.Controls.Add(this.label19);
+ this.tabPage2.Controls.Add(this.txtPinCount);
+ this.tabPage2.Controls.Add(this.label20);
+ this.tabPage2.Controls.Add(this.label21);
+ this.tabPage2.Controls.Add(this.cmbConnectorType);
+ this.tabPage2.Controls.Add(this.createInterfaceBtn);
+ this.tabPage2.Controls.Add(this.txtInterfaceDescription);
+ this.tabPage2.Controls.Add(this.label22);
+ this.tabPage2.Controls.Add(this.txtInterfaceNumber);
+ this.tabPage2.Controls.Add(this.label23);
+ this.tabPage2.Controls.Add(this.label24);
+ this.tabPage2.Controls.Add(this.button1);
+ this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(726, 637);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "Mechanical data";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // tabPage3
+ //
+ this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(726, 637);
+ this.tabPage3.TabIndex = 2;
+ this.tabPage3.Text = "Material";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // tabPage4
+ //
+ this.tabPage4.Location = new System.Drawing.Point(4, 22);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage4.Size = new System.Drawing.Size(726, 637);
+ this.tabPage4.TabIndex = 3;
+ this.tabPage4.Text = "Electrical data";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // tabPage5
+ //
+ this.tabPage5.Location = new System.Drawing.Point(4, 22);
+ this.tabPage5.Name = "tabPage5";
+ this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage5.Size = new System.Drawing.Size(726, 637);
+ this.tabPage5.TabIndex = 4;
+ this.tabPage5.Text = "Electrical Connection";
+ this.tabPage5.UseVisualStyleBackColor = true;
+ //
+ // tabPage6
+ //
+ this.tabPage6.Location = new System.Drawing.Point(4, 22);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(726, 659);
+ this.tabPage6.TabIndex = 5;
+ this.tabPage6.Text = "Environmental Conditions";
+ this.tabPage6.UseVisualStyleBackColor = true;
+ //
+ // tabPage7
+ //
+ this.tabPage7.Location = new System.Drawing.Point(4, 22);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(726, 659);
+ this.tabPage7.TabIndex = 6;
+ this.tabPage7.Text = "Functional Safety";
+ this.tabPage7.UseVisualStyleBackColor = true;
+ //
+ // tabPage8
+ //
+ this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(726, 659);
+ this.tabPage8.TabIndex = 7;
+ this.tabPage8.Text = "Mechanical Interface";
+ this.tabPage8.UseVisualStyleBackColor = true;
+ //
+ // tabPage9
+ //
+ this.tabPage9.Location = new System.Drawing.Point(4, 22);
+ this.tabPage9.Name = "tabPage9";
+ this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage9.Size = new System.Drawing.Size(726, 659);
+ this.tabPage9.TabIndex = 8;
+ this.tabPage9.Text = "Electrical Interface";
+ this.tabPage9.UseVisualStyleBackColor = true;
+ //
+ // tabPage10
+ //
+ this.tabPage10.Controls.Add(this.splitContainer2);
+ this.tabPage10.Location = new System.Drawing.Point(4, 22);
+ this.tabPage10.Name = "tabPage10";
+ this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage10.Size = new System.Drawing.Size(726, 659);
+ this.tabPage10.TabIndex = 9;
+ this.tabPage10.Text = "Sensor Interface";
+ this.tabPage10.UseVisualStyleBackColor = true;
+ //
+ // tabPage11
+ //
+ this.tabPage11.Location = new System.Drawing.Point(4, 22);
+ this.tabPage11.Name = "tabPage11";
+ this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage11.Size = new System.Drawing.Size(726, 659);
+ this.tabPage11.TabIndex = 10;
+ this.tabPage11.Text = "Hydraulic Interface";
+ this.tabPage11.UseVisualStyleBackColor = true;
+ //
+ // tabPage12
+ //
+ this.tabPage12.Location = new System.Drawing.Point(4, 22);
+ this.tabPage12.Name = "tabPage12";
+ this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage12.Size = new System.Drawing.Size(726, 637);
+ this.tabPage12.TabIndex = 11;
+ this.tabPage12.Text = "Pneumatic Interface";
+ this.tabPage12.UseVisualStyleBackColor = true;
+ //
+ // interfacePortMappingGrid
+ //
+ this.interfacePortMappingGrid.AllowUserToAddRows = false;
+ this.interfacePortMappingGrid.AllowUserToDeleteRows = false;
+ this.interfacePortMappingGrid.AllowUserToResizeRows = false;
+ this.interfacePortMappingGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
+ this.interfacePortMappingGrid.BackgroundColor = System.Drawing.SystemColors.Control;
+ this.interfacePortMappingGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.interfacePortMappingGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.pinnumber,
+ this.attribute});
+ this.interfacePortMappingGrid.Location = new System.Drawing.Point(373, 202);
+ this.interfacePortMappingGrid.Name = "interfacePortMappingGrid";
+ this.interfacePortMappingGrid.RowHeadersVisible = false;
+ this.interfacePortMappingGrid.Size = new System.Drawing.Size(253, 330);
+ this.interfacePortMappingGrid.TabIndex = 59;
+ //
+ // pinnumber
+ //
+ this.pinnumber.FillWeight = 50F;
+ this.pinnumber.HeaderText = "Pin";
+ this.pinnumber.Name = "pinnumber";
+ //
+ // attribute
+ //
+ this.attribute.HeaderText = "Attribute";
+ this.attribute.Name = "attribute";
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label19.Location = new System.Drawing.Point(447, 166);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(27, 13);
+ this.label19.TabIndex = 62;
+ this.label19.Text = "Pins";
+ //
+ // txtPinCount
+ //
+ this.txtPinCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtPinCount.Location = new System.Drawing.Point(407, 164);
+ this.txtPinCount.Name = "txtPinCount";
+ this.txtPinCount.Size = new System.Drawing.Size(34, 20);
+ this.txtPinCount.TabIndex = 57;
+ //
+ // label20
+ //
+ this.label20.AutoSize = true;
+ this.label20.Location = new System.Drawing.Point(375, 166);
+ this.label20.Name = "label20";
+ this.label20.Size = new System.Drawing.Size(26, 13);
+ this.label20.TabIndex = 61;
+ this.label20.Text = "with";
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label21.Location = new System.Drawing.Point(124, 166);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(82, 13);
+ this.label21.TabIndex = 60;
+ this.label21.Text = "Connector type:";
+ //
+ // cmbConnectorType
+ //
+ this.cmbConnectorType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.cmbConnectorType.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.cmbConnectorType.FormattingEnabled = true;
+ this.cmbConnectorType.Location = new System.Drawing.Point(212, 163);
+ this.cmbConnectorType.Name = "cmbConnectorType";
+ this.cmbConnectorType.Size = new System.Drawing.Size(157, 21);
+ this.cmbConnectorType.TabIndex = 56;
+ //
+ // createInterfaceBtn
+ //
+ this.createInterfaceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.createInterfaceBtn.Location = new System.Drawing.Point(529, 551);
+ this.createInterfaceBtn.Name = "createInterfaceBtn";
+ this.createInterfaceBtn.Size = new System.Drawing.Size(97, 23);
+ this.createInterfaceBtn.TabIndex = 63;
+ this.createInterfaceBtn.Text = "Create Interface";
+ this.createInterfaceBtn.UseVisualStyleBackColor = true;
+ //
+ // txtInterfaceDescription
+ //
+ this.txtInterfaceDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtInterfaceDescription.Location = new System.Drawing.Point(212, 130);
+ this.txtInterfaceDescription.Name = "txtInterfaceDescription";
+ this.txtInterfaceDescription.Size = new System.Drawing.Size(157, 20);
+ this.txtInterfaceDescription.TabIndex = 54;
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label22.Location = new System.Drawing.Point(100, 133);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(106, 13);
+ this.label22.TabIndex = 58;
+ this.label22.Text = "Interface description:";
+ //
+ // txtInterfaceNumber
+ //
+ this.txtInterfaceNumber.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtInterfaceNumber.Location = new System.Drawing.Point(212, 99);
+ this.txtInterfaceNumber.Name = "txtInterfaceNumber";
+ this.txtInterfaceNumber.Size = new System.Drawing.Size(157, 20);
+ this.txtInterfaceNumber.TabIndex = 52;
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label23.Location = new System.Drawing.Point(114, 103);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(92, 13);
+ this.label23.TabIndex = 55;
+ this.label23.Text = "Interface Number:";
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
+ this.label24.Location = new System.Drawing.Point(113, 62);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(193, 20);
+ this.label24.TabIndex = 53;
+ this.label24.Text = "Create a new Interface";
+ //
+ // button1
+ //
+ this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.button1.Location = new System.Drawing.Point(117, 551);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(52, 23);
+ this.button1.TabIndex = 64;
+ this.button1.Text = "Back";
+ this.button1.UseVisualStyleBackColor = true;
+ //
+ // toolStrip3
+ //
+ this.toolStrip3.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip3.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel1,
+ this.toolStripTextBox1});
+ this.toolStrip3.Location = new System.Drawing.Point(0, 710);
+ this.toolStrip3.Name = "toolStrip3";
+ this.toolStrip3.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip3.TabIndex = 48;
+ this.toolStrip3.Text = "toolStrip3";
+ //
+ // toolStripLabel1
+ //
+ this.toolStripLabel1.Name = "toolStripLabel1";
+ this.toolStripLabel1.Size = new System.Drawing.Size(83, 22);
+ this.toolStripLabel1.Text = "Comment line";
+ //
+ // toolStripTextBox1
+ //
+ this.toolStripTextBox1.Name = "toolStripTextBox1";
+ this.toolStripTextBox1.Size = new System.Drawing.Size(800, 25);
+ //
+ // splitContainer2
+ //
+ this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer2.Location = new System.Drawing.Point(3, 3);
+ this.splitContainer2.Name = "splitContainer2";
+ this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
+ //
+ // splitContainer2.Panel2
+ //
+ this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
+ this.splitContainer2.Size = new System.Drawing.Size(720, 653);
+ this.splitContainer2.SplitterDistance = 240;
+ this.splitContainer2.TabIndex = 0;
+ //
+ // splitContainer3
+ //
+ this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.splitContainer3.Location = new System.Drawing.Point(0, 0);
+ this.splitContainer3.Name = "splitContainer3";
+ this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
+ this.splitContainer3.Size = new System.Drawing.Size(720, 409);
+ this.splitContainer3.SplitterDistance = 240;
+ this.splitContainer3.TabIndex = 0;
//
// CreateDevice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
- this.Controls.Add(this.label18);
- this.Controls.Add(this.productTxtBox);
- this.Controls.Add(this.hwRelTxt);
- this.Controls.Add(this.swRelTxt);
- this.Controls.Add(this.backBtn);
- this.Controls.Add(this.label17);
- this.Controls.Add(this.deviceTypeListBox);
- this.Controls.Add(this.createDeviceBtn);
- this.Controls.Add(this.txtOrderNumber);
- this.Controls.Add(this.label16);
- this.Controls.Add(this.label15);
- this.Controls.Add(this.txtMaxTemp);
- this.Controls.Add(this.label14);
- this.Controls.Add(this.txtMinTemp);
- this.Controls.Add(this.label13);
- this.Controls.Add(this.txtIpProduction);
- this.Controls.Add(this.label12);
- this.Controls.Add(this.label11);
- this.Controls.Add(this.label10);
- this.Controls.Add(this.openVendorLogoBtn);
- this.Controls.Add(this.openDevicePicture);
- this.Controls.Add(this.txtVendorHomepage);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.openDeviceIconBtn);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.txtProductName);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.txtDeviceFamily);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.txtDeviceName);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.txtDeviceId);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.txtVendorName);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.txtVendorId);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
+ this.Controls.Add(this.toolStrip3);
+ this.Controls.Add(this.panel1);
+ this.Controls.Add(this.statusStrip1);
+ this.Controls.Add(this.toolStrip2);
+ this.Controls.Add(this.toolStrip1);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "CreateDevice";
- this.Size = new System.Drawing.Size(556, 554);
+ this.Size = new System.Drawing.Size(1090, 757);
+ this.Load += new System.EventHandler(this.CreateDevice_Load);
+ this.toolStrip1.ResumeLayout(false);
+ this.toolStrip1.PerformLayout();
+ this.toolStrip2.ResumeLayout(false);
+ this.toolStrip2.PerformLayout();
+ this.menuStrip1.ResumeLayout(false);
+ this.menuStrip1.PerformLayout();
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.splitContainer1.Panel1.ResumeLayout(false);
+ this.splitContainer1.Panel2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
+ this.splitContainer1.ResumeLayout(false);
+ this.tabControl2.ResumeLayout(false);
+ this.tabPage1.ResumeLayout(false);
+ this.tabPage1.PerformLayout();
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage2.PerformLayout();
+ this.tabPage10.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.interfacePortMappingGrid)).EndInit();
+ this.toolStrip3.ResumeLayout(false);
+ this.toolStrip3.PerformLayout();
+ this.splitContainer2.Panel2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
+ this.splitContainer2.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
+ this.splitContainer3.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
+ private System.Windows.Forms.Integration.ElementHost elementHost1;
+ private System.Windows.Forms.OpenFileDialog openVendorLogoDialog;
+ private System.Windows.Forms.OpenFileDialog openDeviceIconDialog;
+ private System.Windows.Forms.OpenFileDialog openDevicePictureDialog;
+ private System.Windows.Forms.ToolStrip toolStrip1;
+ private System.Windows.Forms.ToolStripButton newToolStripButton;
+ private System.Windows.Forms.ToolStripButton openToolStripButton;
+ private System.Windows.Forms.ToolStripButton saveToolStripButton;
+ private System.Windows.Forms.ToolStripButton printToolStripButton;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
+ private System.Windows.Forms.ToolStripButton cutToolStripButton;
+ private System.Windows.Forms.ToolStripButton copyToolStripButton;
+ private System.Windows.Forms.ToolStripButton pasteToolStripButton;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
+ private System.Windows.Forms.ToolStripButton helpToolStripButton;
+ private System.Windows.Forms.ToolStrip toolStrip2;
+ private System.Windows.Forms.ToolStripButton toolStripButton1;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
+ private System.Windows.Forms.ToolStripButton toolStripButton2;
+ private System.Windows.Forms.MenuStrip menuStrip1;
+ private System.Windows.Forms.ToolStripMenuItem automationComponentToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem accessoriesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem fasteningTechnologyToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem lightsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem mechanicalProtectionToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem reflectorsFibersOpticsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem signalConvertersAndCommunicationAdaptersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem connectivityToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem adaptersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem bulkheadConnectorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem doubleEndedCordsetsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem fieldAttachablesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem passiveInterfcesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem receptaclesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem singleEndedCordestsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem terminatingResistorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem tSplittersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem ySplittersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem hMIToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem displaysToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem industrialControllersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem smartLightLEDStackLightsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem industrialNetworkingToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem iOModulesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem inductiveCouplersToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem memoryModulesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem networkBlocksToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem switchesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem machineVisionAndOpticalDetectionToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem machineVisionToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem opticalIdentificationToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem powerSupplyToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem rFIDToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem safetyToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem sensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem capacitiveSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem flowSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem inclinationSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem inductiveSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem magneticFieldSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem magneticallyCodedSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem magnetostrictiveSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem mechanicalCamSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem microwaveSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem photoelectricSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem pressureSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem temperatureSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem ultrasonicSensorsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem dataSheetToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
+ private System.Windows.Forms.ToolStripMenuItem mechanicalDataToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem electricalDataToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem materialToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem electricalConnectionToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem environmentalConditionsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem functionalSafetyToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem addInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem mechanicalInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem electricalInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem sensorInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem hydraulicInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem liquidicInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem pneumaticInterfaceToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem cADModelToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem modelToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem billOfMaterialsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem billOfOperationsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem cAEePlanToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem documentsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem certificatesToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem shortGuidesToolStripMenuItem;
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.SplitContainer splitContainer1;
+ private System.Windows.Forms.TreeView treeView1;
+ private System.Windows.Forms.StatusStrip statusStrip1;
+ private System.Windows.Forms.TabControl tabControl2;
+ private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtVendorId;
- private System.Windows.Forms.TextBox txtVendorName;
private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TextBox txtDeviceId;
+ private System.Windows.Forms.TextBox txtVendorName;
+ private System.Windows.Forms.Label label18;
private System.Windows.Forms.Label label4;
- private System.Windows.Forms.TextBox txtDeviceName;
+ private System.Windows.Forms.RichTextBox productTxtBox;
+ private System.Windows.Forms.TextBox txtDeviceId;
+ private System.Windows.Forms.TextBox hwRelTxt;
private System.Windows.Forms.Label label5;
- private System.Windows.Forms.TextBox txtDeviceFamily;
+ private System.Windows.Forms.TextBox swRelTxt;
+ private System.Windows.Forms.TextBox txtDeviceName;
+ private System.Windows.Forms.Button backBtn;
private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox txtProductName;
+ private System.Windows.Forms.Label label17;
+ private System.Windows.Forms.TextBox txtDeviceFamily;
+ private System.Windows.Forms.ComboBox deviceTypeListBox;
private System.Windows.Forms.Label label7;
+ private System.Windows.Forms.Button createDeviceBtn;
+ private System.Windows.Forms.TextBox txtProductName;
+ private System.Windows.Forms.TextBox txtOrderNumber;
private System.Windows.Forms.Label label8;
+ private System.Windows.Forms.Label label16;
private System.Windows.Forms.Button openDeviceIconBtn;
- private System.Windows.Forms.TextBox txtVendorHomepage;
+ private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label9;
+ private System.Windows.Forms.TextBox txtMaxTemp;
+ private System.Windows.Forms.TextBox txtVendorHomepage;
+ private System.Windows.Forms.Label label14;
private System.Windows.Forms.Button openDevicePicture;
+ private System.Windows.Forms.TextBox txtMinTemp;
private System.Windows.Forms.Button openVendorLogoBtn;
+ private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox txtIpProduction;
+ private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label12;
- private System.Windows.Forms.TextBox txtMinTemp;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.TextBox txtMaxTemp;
- private System.Windows.Forms.TextBox txtOrderNumber;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Button createDeviceBtn;
- private System.Windows.Forms.ComboBox deviceTypeListBox;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Integration.ElementHost elementHost1;
- private System.Windows.Forms.Button backBtn;
- private System.Windows.Forms.OpenFileDialog openVendorLogoDialog;
- private System.Windows.Forms.OpenFileDialog openDeviceIconDialog;
- private System.Windows.Forms.OpenFileDialog openDevicePictureDialog;
- private System.Windows.Forms.TextBox swRelTxt;
- private System.Windows.Forms.TextBox hwRelTxt;
- private System.Windows.Forms.RichTextBox productTxtBox;
- private System.Windows.Forms.Label label18;
+ private System.Windows.Forms.TabPage tabPage2;
+ private System.Windows.Forms.TabPage tabPage3;
+ private System.Windows.Forms.TabPage tabPage4;
+ private System.Windows.Forms.TabPage tabPage5;
+ private System.Windows.Forms.TabPage tabPage6;
+ private System.Windows.Forms.TabPage tabPage7;
+ private System.Windows.Forms.TabPage tabPage8;
+ private System.Windows.Forms.TabPage tabPage9;
+ private System.Windows.Forms.TabPage tabPage10;
+ private System.Windows.Forms.TabPage tabPage11;
+ private System.Windows.Forms.TabPage tabPage12;
+ private System.Windows.Forms.DataGridView interfacePortMappingGrid;
+ private System.Windows.Forms.DataGridViewTextBoxColumn pinnumber;
+ private System.Windows.Forms.DataGridViewTextBoxColumn attribute;
+ private System.Windows.Forms.Label label19;
+ private System.Windows.Forms.TextBox txtPinCount;
+ private System.Windows.Forms.Label label20;
+ private System.Windows.Forms.Label label21;
+ private System.Windows.Forms.ComboBox cmbConnectorType;
+ private System.Windows.Forms.Button createInterfaceBtn;
+ private System.Windows.Forms.TextBox txtInterfaceDescription;
+ private System.Windows.Forms.Label label22;
+ private System.Windows.Forms.TextBox txtInterfaceNumber;
+ private System.Windows.Forms.Label label23;
+ private System.Windows.Forms.Label label24;
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.SplitContainer splitContainer2;
+ private System.Windows.Forms.SplitContainer splitContainer3;
+ private System.Windows.Forms.ToolStrip toolStrip3;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel1;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index 4c8f6bb..a7f17ee 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -253,5 +253,59 @@ private void openDevicePictureDialog_FileOk(object sender, System.ComponentModel
devicePicturePath = openDevicePictureDialog.FileName;
}
+ private void CreateDevice_Load(object sender, EventArgs e)
+ {
+
+ }
+
+ private void MachineVisionAndOpticalDetectionToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void ToolStripButton1_Click(object sender, EventArgs e)
+ {
+ mWController.ChangeGui(MWController.MWGUIType.Start);
+ }
+
+ private void MenuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
+ {
+
+ }
+
+ private void ToolStripMenuItem1_Click(object sender, EventArgs e)
+ {
+ tabControl2.SelectTab(tabPage2);
+ }
+
+ private void SensorInterfaceToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void MechanicalDataToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void ToolStripStatusLabel1_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void ToolStripMenuItem1_Click_1(object sender, EventArgs e)
+ {
+ tabControl2.SelectTab(tabPage1);
+ }
+
+ private void MechanicalDataToolStripMenuItem_Click_1(object sender, EventArgs e)
+ {
+ tabControl2.SelectTab(tabPage2);
+ }
+
+ private void ElectricalDataToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ tabControl2.SelectTab(tabPage3);
+ }
}
}
\ No newline at end of file
diff --git a/CreateDevice.resx b/CreateDevice.resx
index 1a1a95c..a14075a 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -126,4 +126,214 @@
356, 20
+
+ 545, 20
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
+ 0iiDPCGiE3ZCRkvR8VzTeBhnyR5/ccaZNnPhB4t9sdf6Ln5hb8QeathNJFVFKF5C8DqL4ksDVHWGDf7j
+ LHyPg6NjviSaFqlu5yQYR+KpupaIkrMknCxT3Y7v/NYYb0ITK1c3BarbWWhLQ7IR0cTKReyZ6lZ0XYei
+ ztHpK4bAc+h1FgQijzSxMptrGIxVSO0xX3AaStFki7bUMVFmaMm/eJMGfIH/MkGzLep0AXn4h/r3CJV3
+ mS9gn2bY4UY/UzQ7E9TqfeTFtnuB+XAfzSHKr11kSl/uBebDiZ89ZCst3OUkdwL28sIVsE83ock+EIQV
+ 2Mz2wxeg6/UAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
+ olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
+ 4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
+ YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
+ 5Kni3aFlFg2j3y1z5mnRTJccnNIltQhwq0jFry+mOXNtpWZWDx1Z1NhV3C3JwGFOw25SYjVe5oYhiUKd
+ HKMmwQUrMWUw/CF3NnZvvYKqUh1TvUroS3fXe7HXkwidMngTS2t5KLbregSzMY2f3Wr4qKW6LJvGR1rX
+ 0MLor8OhKYTJBn/GHvvxrliCTBrsOqXIoOBHh5K+hmSq7FqmexTQHuUytkaKxuNMNgYyVneA4Qd7GKjc
+ hjLaRzxH7gIU6JIZaEvgtk1D8wsxSWecCDgNzWFMvwxm/PkhRmr3Mli1nW9lvjRdWc0Jf+/5jzRmyWmv
+ S+GOLQu6U6BFjPvqKOP1AYw88WOoZif9DgmfLVtxaj1RSLdwNvrkPCA3M54KqxrnvRia9MKcGrUrqFOt
+ 5H7qKsqT1mGO9+Lqhc2ELdw+U/r0i+gVZ8hMiCDx3DHORwZyKnQ/hw/uYt9uCTskPvh6e7Fp41rWr/Fg
+ g6eHO+A/lyD8ARfG3mk9fv1YAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
+ DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
+ 8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
+ 1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
+ 4AJizD4UXJrCAUuzEDgbZrjgou2DiohshIcnQtgme5GTPYbkJKcQ1N8OckHW2REVi+RXuM8fxGaDG4oy
+ ALPZIQQ11Z+5QDk1oKJ/hjv7P2FTfCMOH3mFxMQ6IbhROYWOdrCnBI4dfwPr0V4+bRoY9UzXppMjcDdS
+ rC8hy3YhuFI2gTYf2A4Aza4f7N2/o/zaLB8qDYx6zszwr8P7k1thNFYIweXCMXgeAfedq2xxwjClZUeV
+ Jd2GtDNFETiJwfs8MBjKhMCWN8pgoLoqzE8miH1GjE7G4PsZjE7OQsm9ij2mFg7rdrug1xcJAa2l4w7W
+ r00Cgk/n38S7wBwC04u4UGxHrMHF4CbEJtyDLj5fCDIzhljfSxzeavRgyw4Zj9t64GvvQ0d3P3pfD2Kv
+ 2QqNvgFxDN6urYdWmyMElJMnevh60obRktA701PRtGlg1DOdSkXwzrisaMG/RZLWAE60OMW5fNhvAAAA
+ AElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
+ jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
+ X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
+ J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
+ I5DjtuYV7uksRYhr2kebhx2eP6nrycFIEh5fBA/1Nvru8q5+PDaOovK0rABwfwugWzcErfkzHhjsePL6
+ E7q1VrTdNUDcrgGvSYlDZHN5XTNOnL8BVe8AJAoNDtZfLgDu9L1BPJmikzcrk81hlRwodZJwdBXziwnI
+ OrVoaOkiT8C8hKLHBPO7CbywOaE1jeC+bhAd6meQdvZC1KoG/5IS3MZ2HObLUHZSggvkWq3wOvbWiAqA
+ VpWeyStVfCUNf3AZ4zNhfHCFMEDMgye+hYr6FrDLzxQAUuVTpr0ocn74mchg5vsKRt1RcHp2Qv9+kZ78
+ UcE17KkWFgHNN/uQzgBkGKLJPBZiecyGchjzrmFwPIF++xJUbDbUQzEacIArLpopSRSP4CUN1Obf1Abz
+ uqob5KjiXwWH/GVl5HPt5zZh37GL2H1EiF1VZ7GDI6CNW5r/TSzWbwHYL0mKJ5czAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
+ LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
+ QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
+ EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
+ 1NsXzN4PKIxJLLgeIJ2MoXvmFraNBKK3eXZRIveJPvs7FIYniEkXZENOdE+GIZ2Ko10TwLK7tJmKmL0F
+ EEYarYM+NMnt0C1sQzpx/lcSEnZ2gcKY/gs0dlmZuWvmjjmpwA1qxVp2AWFIMAF/OAGBzMjMI7ZrtJCb
+ 4Df3o4Zfxy7QrdxDRFKol5khkpR2H4qmIOzUQNBGwrsXYxccnNOQqNbQ0KGGZ+eEPVwdeLxvqqrf4wGh
+ TNAAAAAASUVORK5CYII=
+
+
+
+
+ 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
+
+
+
+ 650, 20
+
+
+
+ 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
+
+
+
+ 755, 20
+
+
+ True
+
+
+ True
+
+
+ 870, 20
+
+
+ 1102, 20
+
+
+ 141
+
\ No newline at end of file
diff --git a/ModellingWizard.csproj b/ModellingWizard.csproj
index cc16d11..e24a4bd 100644
--- a/ModellingWizard.csproj
+++ b/ModellingWizard.csproj
@@ -99,6 +99,11 @@
About.xaml
+
+ True
+ True
+ Resources.resx
+
UserControl
@@ -137,6 +142,10 @@
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
StartGUI.cs
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..1a92998
--- /dev/null
+++ b/Properties/Resources.Designer.cs
@@ -0,0 +1,63 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Aml.Editor.Plugin.Properties {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aml.Editor.Plugin.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/Properties/Resources.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
From 209f68214b35b1eac36b8275076f7349739a1134 Mon Sep 17 00:00:00 2001
From: Rajkumarpulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Wed, 7 Aug 2019 15:18:24 +0200
Subject: [PATCH 03/34] Created Dictionaries of IRDI and eClass
---
AnimationClass.cs | 12 +
CreateDevice.Designer.cs | 3840 ++++++++++++++---
CreateDevice.cs | 381 +-
CreateDevice.resx | 364 +-
Datatables.cs | 69 +
Dictionary.cs | 143 +
MWController.cs | 6 +-
ModellingWizard.csproj | 14 +
ModellingWizard.csproj.user | 12 +
Properties/Resources.Designer.cs | 120 +
Properties/Resources.resx | 37 +
"Resources/icons8-abo-k\303\274ndigen-16.png" | Bin 0 -> 350 bytes
Resources/icons8-collapse-arrow-24.png | Bin 0 -> 226 bytes
.../icons8-datei-hinzuf\303\274gen-16.png" | Bin 0 -> 351 bytes
.../icons8-datei-hinzuf\303\274gen-161.png" | Bin 0 -> 351 bytes
Resources/icons8-dateiuntermodul-16 (1).png | Bin 0 -> 172 bytes
Resources/icons8-dateiuntermodul-16.png | Bin 0 -> 172 bytes
Resources/icons8-dienstleistungen-26 (1).png | Bin 0 -> 860 bytes
Resources/icons8-eingekreist-links-2-32.png | Bin 0 -> 619 bytes
Resources/icons8-expand-arrow-24.png | Bin 0 -> 254 bytes
Resources/icons8-expand-arrow-30.png | Bin 0 -> 215 bytes
.../icons8-liste-hinzuf\303\274gen-26.png" | Bin 0 -> 464 bytes
Resources/icons8-stornieren-16.png | Bin 0 -> 423 bytes
StartGUI.Designer.cs | 53 +-
StartGUI.cs | 5 +
25 files changed, 4280 insertions(+), 776 deletions(-)
create mode 100644 AnimationClass.cs
create mode 100644 Datatables.cs
create mode 100644 Dictionary.cs
create mode 100644 ModellingWizard.csproj.user
create mode 100644 "Resources/icons8-abo-k\303\274ndigen-16.png"
create mode 100644 Resources/icons8-collapse-arrow-24.png
create mode 100644 "Resources/icons8-datei-hinzuf\303\274gen-16.png"
create mode 100644 "Resources/icons8-datei-hinzuf\303\274gen-161.png"
create mode 100644 Resources/icons8-dateiuntermodul-16 (1).png
create mode 100644 Resources/icons8-dateiuntermodul-16.png
create mode 100644 Resources/icons8-dienstleistungen-26 (1).png
create mode 100644 Resources/icons8-eingekreist-links-2-32.png
create mode 100644 Resources/icons8-expand-arrow-24.png
create mode 100644 Resources/icons8-expand-arrow-30.png
create mode 100644 "Resources/icons8-liste-hinzuf\303\274gen-26.png"
create mode 100644 Resources/icons8-stornieren-16.png
diff --git a/AnimationClass.cs b/AnimationClass.cs
new file mode 100644
index 0000000..787fab9
--- /dev/null
+++ b/AnimationClass.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Aml.Editor.Plugin
+{
+ class AnimationClass
+ {
+ }
+}
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index 4b2f086..aa62e5f 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -28,18 +28,26 @@ protected override void Dispose(bool disposing)
///
private void InitializeComponent()
{
+ this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDevice));
- System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node1");
- System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node4");
- System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node2", new System.Windows.Forms.TreeNode[] {
- treeNode2});
- System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node5");
- System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node3", new System.Windows.Forms.TreeNode[] {
- treeNode4});
- System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
+ System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node10");
+ System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node11");
+ System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
treeNode1,
+ treeNode2});
+ System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node7");
+ System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
treeNode3,
- treeNode5});
+ treeNode4});
+ System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node8");
+ System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node9");
+ System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
+ treeNode6,
+ treeNode7});
+ System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node2");
+ System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Node3");
+ System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Node4");
+ System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Node5");
this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
@@ -108,36 +116,19 @@ private void InitializeComponent()
this.pressureSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.temperatureSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ultrasonicSensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.dataSheetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
- this.mechanicalDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.electricalDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.materialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.electricalConnectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.environmentalConditionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.functionalSafetyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.addInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.mechanicalInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.electricalInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.sensorInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.hydraulicInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.liquidicInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.pneumaticInterfaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.cADModelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.modelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.billOfMaterialsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.billOfOperationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.cAEePlanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.documentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.certificatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.shortGuidesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.treeView1 = new System.Windows.Forms.TreeView();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
+ this.panel31 = new System.Windows.Forms.Panel();
+ this.treeViewCH = new System.Windows.Forms.TreeView();
+ this.toolStrip9 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
+ this.panel30 = new System.Windows.Forms.Panel();
+ this.toolStrip10 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
+ this.panel26 = new System.Windows.Forms.Panel();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
- this.label1 = new System.Windows.Forms.Label();
+ this.panel2 = new System.Windows.Forms.Panel();
this.label2 = new System.Windows.Forms.Label();
this.txtVendorId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
@@ -175,37 +166,231 @@ private void InitializeComponent()
this.txtIpProduction = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
- this.tabPage2 = new System.Windows.Forms.TabPage();
this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.label1 = new System.Windows.Forms.Label();
+ this.label25 = new System.Windows.Forms.Label();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label26 = new System.Windows.Forms.Label();
+ this.label27 = new System.Windows.Forms.Label();
+ this.label28 = new System.Windows.Forms.Label();
this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel23 = new System.Windows.Forms.Panel();
+ this.button29 = new System.Windows.Forms.Button();
+ this.button30 = new System.Windows.Forms.Button();
+ this.button31 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
+ this.label39 = new System.Windows.Forms.Label();
+ this.label38 = new System.Windows.Forms.Label();
+ this.textBox15 = new System.Windows.Forms.TextBox();
+ this.label37 = new System.Windows.Forms.Label();
+ this.textBox14 = new System.Windows.Forms.TextBox();
+ this.label36 = new System.Windows.Forms.Label();
+ this.textBox13 = new System.Windows.Forms.TextBox();
+ this.label35 = new System.Windows.Forms.Label();
+ this.textBox12 = new System.Windows.Forms.TextBox();
+ this.label24 = new System.Windows.Forms.Label();
+ this.textBox11 = new System.Windows.Forms.TextBox();
+ this.label23 = new System.Windows.Forms.Label();
+ this.textBox10 = new System.Windows.Forms.TextBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.label20 = new System.Windows.Forms.Label();
+ this.textBox9 = new System.Windows.Forms.TextBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.textBox8 = new System.Windows.Forms.TextBox();
+ this.textBox7 = new System.Windows.Forms.TextBox();
+ this.label19 = new System.Windows.Forms.Label();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.comboBox2 = new System.Windows.Forms.ComboBox();
this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.panel24 = new System.Windows.Forms.Panel();
+ this.button2 = new System.Windows.Forms.Button();
+ this.panel8 = new System.Windows.Forms.Panel();
+ this.panel22 = new System.Windows.Forms.Panel();
+ this.button26 = new System.Windows.Forms.Button();
+ this.button27 = new System.Windows.Forms.Button();
+ this.button28 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
+ this.label47 = new System.Windows.Forms.Label();
+ this.button8 = new System.Windows.Forms.Button();
+ this.panel7 = new System.Windows.Forms.Panel();
+ this.panel21 = new System.Windows.Forms.Panel();
+ this.button23 = new System.Windows.Forms.Button();
+ this.button24 = new System.Windows.Forms.Button();
+ this.button25 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
+ this.button7 = new System.Windows.Forms.Button();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.panel20 = new System.Windows.Forms.Panel();
+ this.button20 = new System.Windows.Forms.Button();
+ this.button21 = new System.Windows.Forms.Button();
+ this.button22 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
+ this.label44 = new System.Windows.Forms.Label();
+ this.textBox18 = new System.Windows.Forms.TextBox();
+ this.label43 = new System.Windows.Forms.Label();
+ this.label42 = new System.Windows.Forms.Label();
+ this.textBox17 = new System.Windows.Forms.TextBox();
+ this.label41 = new System.Windows.Forms.Label();
+ this.label40 = new System.Windows.Forms.Label();
+ this.textBox16 = new System.Windows.Forms.TextBox();
+ this.comboBox3 = new System.Windows.Forms.ComboBox();
+ this.panel6 = new System.Windows.Forms.Panel();
+ this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
+ this.label45 = new System.Windows.Forms.Label();
+ this.label46 = new System.Windows.Forms.Label();
+ this.button6 = new System.Windows.Forms.Button();
this.tabPage6 = new System.Windows.Forms.TabPage();
- this.tabPage7 = new System.Windows.Forms.TabPage();
- this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.panel9 = new System.Windows.Forms.Panel();
+ this.panel14 = new System.Windows.Forms.Panel();
+ this.panel18 = new System.Windows.Forms.Panel();
+ this.button16 = new System.Windows.Forms.Button();
+ this.button15 = new System.Windows.Forms.Button();
+ this.button14 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
+ this.label53 = new System.Windows.Forms.Label();
+ this.label52 = new System.Windows.Forms.Label();
+ this.label51 = new System.Windows.Forms.Label();
+ this.panel15 = new System.Windows.Forms.Panel();
+ this.button11 = new System.Windows.Forms.Button();
+ this.textBox22 = new System.Windows.Forms.TextBox();
+ this.panel16 = new System.Windows.Forms.Panel();
+ this.button12 = new System.Windows.Forms.Button();
+ this.textBox23 = new System.Windows.Forms.TextBox();
+ this.panel17 = new System.Windows.Forms.Panel();
+ this.button13 = new System.Windows.Forms.Button();
+ this.textBox24 = new System.Windows.Forms.TextBox();
+ this.button10 = new System.Windows.Forms.Button();
+ this.panel10 = new System.Windows.Forms.Panel();
+ this.panel19 = new System.Windows.Forms.Panel();
+ this.button17 = new System.Windows.Forms.Button();
+ this.button18 = new System.Windows.Forms.Button();
+ this.button19 = new System.Windows.Forms.Button();
+ this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
+ this.label50 = new System.Windows.Forms.Label();
+ this.label49 = new System.Windows.Forms.Label();
+ this.label48 = new System.Windows.Forms.Label();
+ this.panel11 = new System.Windows.Forms.Panel();
+ this.button4 = new System.Windows.Forms.Button();
+ this.textBox19 = new System.Windows.Forms.TextBox();
+ this.panel12 = new System.Windows.Forms.Panel();
+ this.button5 = new System.Windows.Forms.Button();
+ this.textBox20 = new System.Windows.Forms.TextBox();
+ this.panel13 = new System.Windows.Forms.Panel();
+ this.button9 = new System.Windows.Forms.Button();
+ this.textBox21 = new System.Windows.Forms.TextBox();
+ this.button1 = new System.Windows.Forms.Button();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.panel29 = new System.Windows.Forms.Panel();
+ this.toolStrip8 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripLabel12 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox8 = new System.Windows.Forms.ToolStripTextBox();
+ this.tabControl4 = new System.Windows.Forms.TabControl();
+ this.tabPage14 = new System.Windows.Forms.TabPage();
+ this.dataGridViewPD = new System.Windows.Forms.DataGridView();
+ this.ReferenceID = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Attribute = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.tabPage15 = new System.Windows.Forms.TabPage();
+ this.dataGridViewPOD = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.tabPage16 = new System.Windows.Forms.TabPage();
+ this.dataGridViewPPD = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.tabPage17 = new System.Windows.Forms.TabPage();
+ this.dataGridViewMD = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.button33 = new System.Windows.Forms.Button();
+ this.panel28 = new System.Windows.Forms.Panel();
+ this.toolStrip7 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox7 = new System.Windows.Forms.ToolStripTextBox();
+ this.tabControl3 = new System.Windows.Forms.TabControl();
this.tabPage9 = new System.Windows.Forms.TabPage();
this.tabPage10 = new System.Windows.Forms.TabPage();
this.tabPage11 = new System.Windows.Forms.TabPage();
this.tabPage12 = new System.Windows.Forms.TabPage();
- this.interfacePortMappingGrid = new System.Windows.Forms.DataGridView();
- this.pinnumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.attribute = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.label19 = new System.Windows.Forms.Label();
- this.txtPinCount = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.cmbConnectorType = new System.Windows.Forms.ComboBox();
- this.createInterfaceBtn = new System.Windows.Forms.Button();
- this.txtInterfaceDescription = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.txtInterfaceNumber = new System.Windows.Forms.TextBox();
- this.label23 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
+ this.tabPage13 = new System.Windows.Forms.TabPage();
+ this.tableLayoutPanel17 = new System.Windows.Forms.TableLayoutPanel();
+ this.textBox83 = new System.Windows.Forms.TextBox();
+ this.label115 = new System.Windows.Forms.Label();
+ this.label116 = new System.Windows.Forms.Label();
+ this.textBox84 = new System.Windows.Forms.TextBox();
+ this.button32 = new System.Windows.Forms.Button();
+ this.panel27 = new System.Windows.Forms.Panel();
+ this.panel32 = new System.Windows.Forms.Panel();
+ this.panel33 = new System.Windows.Forms.Panel();
+ this.dataGridViewIDT = new System.Windows.Forms.DataGridView();
+ this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip6 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
+ this.button3 = new System.Windows.Forms.Button();
+ this.panel25 = new System.Windows.Forms.Panel();
+ this.treeView2 = new System.Windows.Forms.TreeView();
+ this.toolStrip11 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStrip5 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
+ this.classificationSystemTextBox = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
+ this.versionTextBox = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStrip4 = new System.Windows.Forms.ToolStrip();
+ this.semanticSystemdrpdwn = new System.Windows.Forms.ToolStripDropDownButton();
+ this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
+ this.semanticSystemCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
+ this.addSemanticSystems = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
+ this.cancelSemanticSystem = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
+ this.generaterAML = new System.Windows.Forms.ToolStripButton();
+ this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStrip3 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.splitContainer3 = new System.Windows.Forms.SplitContainer();
+ this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
+ this.dataGridViewMechData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewMaterialData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewElectricalConnection = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewElectricalData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.toolStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@@ -214,17 +399,81 @@ private void InitializeComponent()
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
+ this.panel31.SuspendLayout();
+ this.toolStrip9.SuspendLayout();
+ this.panel30.SuspendLayout();
+ this.toolStrip10.SuspendLayout();
+ this.panel26.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.tabPage3.SuspendLayout();
+ this.tabPage4.SuspendLayout();
+ this.panel3.SuspendLayout();
+ this.panel23.SuspendLayout();
+ this.tableLayoutPanel1.SuspendLayout();
+ this.tabPage5.SuspendLayout();
+ this.panel4.SuspendLayout();
+ this.panel24.SuspendLayout();
+ this.panel8.SuspendLayout();
+ this.panel22.SuspendLayout();
+ this.tableLayoutPanel5.SuspendLayout();
+ this.panel7.SuspendLayout();
+ this.panel21.SuspendLayout();
+ this.panel5.SuspendLayout();
+ this.panel20.SuspendLayout();
+ this.tableLayoutPanel2.SuspendLayout();
+ this.panel6.SuspendLayout();
+ this.tableLayoutPanel3.SuspendLayout();
+ this.tabPage6.SuspendLayout();
+ this.panel9.SuspendLayout();
+ this.panel14.SuspendLayout();
+ this.panel18.SuspendLayout();
+ this.tableLayoutPanel7.SuspendLayout();
+ this.panel15.SuspendLayout();
+ this.panel16.SuspendLayout();
+ this.panel17.SuspendLayout();
+ this.panel10.SuspendLayout();
+ this.panel19.SuspendLayout();
+ this.tableLayoutPanel6.SuspendLayout();
+ this.panel11.SuspendLayout();
+ this.panel12.SuspendLayout();
+ this.panel13.SuspendLayout();
this.tabPage2.SuspendLayout();
+ this.panel29.SuspendLayout();
+ this.toolStrip8.SuspendLayout();
+ this.tabControl4.SuspendLayout();
+ this.tabPage14.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPD)).BeginInit();
+ this.tabPage15.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPOD)).BeginInit();
+ this.tabPage16.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPPD)).BeginInit();
+ this.tabPage17.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMD)).BeginInit();
+ this.panel28.SuspendLayout();
+ this.toolStrip7.SuspendLayout();
+ this.tabControl3.SuspendLayout();
+ this.tabPage9.SuspendLayout();
this.tabPage10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.interfacePortMappingGrid)).BeginInit();
+ this.tabPage11.SuspendLayout();
+ this.tabPage12.SuspendLayout();
+ this.tabPage13.SuspendLayout();
+ this.tableLayoutPanel17.SuspendLayout();
+ this.panel27.SuspendLayout();
+ this.panel32.SuspendLayout();
+ this.panel33.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIDT)).BeginInit();
+ this.toolStrip6.SuspendLayout();
+ this.panel25.SuspendLayout();
+ this.toolStrip11.SuspendLayout();
+ this.toolStrip5.SuspendLayout();
+ this.toolStrip4.SuspendLayout();
this.toolStrip3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
- this.splitContainer3.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).BeginInit();
this.SuspendLayout();
//
// elementHost1
@@ -294,6 +543,7 @@ private void InitializeComponent()
this.saveToolStripButton.Name = "saveToolStripButton";
this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
this.saveToolStripButton.Text = "&Save";
+ this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
//
// printToolStripButton
//
@@ -389,17 +639,12 @@ private void InitializeComponent()
//
// menuStrip1
//
- this.menuStrip1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.menuStrip1.BackColor = System.Drawing.Color.LightGray;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.automationComponentToolStripMenuItem,
- this.dataSheetToolStripMenuItem,
- this.addInterfaceToolStripMenuItem,
- this.cADModelToolStripMenuItem,
- this.cAEePlanToolStripMenuItem,
- this.documentsToolStripMenuItem});
+ this.automationComponentToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(156, 685);
+ this.menuStrip1.Size = new System.Drawing.Size(1090, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuStrip1_ItemClicked);
@@ -417,7 +662,7 @@ private void InitializeComponent()
this.safetyToolStripMenuItem,
this.sensorsToolStripMenuItem});
this.automationComponentToolStripMenuItem.Name = "automationComponentToolStripMenuItem";
- this.automationComponentToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
+ this.automationComponentToolStripMenuItem.Size = new System.Drawing.Size(150, 20);
this.automationComponentToolStripMenuItem.Text = "Automation Component";
//
// accessoriesToolStripMenuItem
@@ -747,174 +992,6 @@ private void InitializeComponent()
this.ultrasonicSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
this.ultrasonicSensorsToolStripMenuItem.Text = "Ultrasonic Sensors";
//
- // dataSheetToolStripMenuItem
- //
- this.dataSheetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripMenuItem1,
- this.mechanicalDataToolStripMenuItem,
- this.electricalDataToolStripMenuItem,
- this.materialToolStripMenuItem,
- this.electricalConnectionToolStripMenuItem,
- this.environmentalConditionsToolStripMenuItem,
- this.functionalSafetyToolStripMenuItem});
- this.dataSheetToolStripMenuItem.Name = "dataSheetToolStripMenuItem";
- this.dataSheetToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
- this.dataSheetToolStripMenuItem.Text = "Data Sheet";
- this.dataSheetToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // toolStripMenuItem1
- //
- this.toolStripMenuItem1.Name = "toolStripMenuItem1";
- this.toolStripMenuItem1.Size = new System.Drawing.Size(212, 22);
- this.toolStripMenuItem1.Text = "General data";
- this.toolStripMenuItem1.Click += new System.EventHandler(this.ToolStripMenuItem1_Click_1);
- //
- // mechanicalDataToolStripMenuItem
- //
- this.mechanicalDataToolStripMenuItem.Name = "mechanicalDataToolStripMenuItem";
- this.mechanicalDataToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.mechanicalDataToolStripMenuItem.Text = "Mechanical data";
- this.mechanicalDataToolStripMenuItem.Click += new System.EventHandler(this.MechanicalDataToolStripMenuItem_Click_1);
- //
- // electricalDataToolStripMenuItem
- //
- this.electricalDataToolStripMenuItem.Name = "electricalDataToolStripMenuItem";
- this.electricalDataToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.electricalDataToolStripMenuItem.Text = "Electrical data";
- this.electricalDataToolStripMenuItem.Click += new System.EventHandler(this.ElectricalDataToolStripMenuItem_Click);
- //
- // materialToolStripMenuItem
- //
- this.materialToolStripMenuItem.Name = "materialToolStripMenuItem";
- this.materialToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.materialToolStripMenuItem.Text = "Material";
- //
- // electricalConnectionToolStripMenuItem
- //
- this.electricalConnectionToolStripMenuItem.Name = "electricalConnectionToolStripMenuItem";
- this.electricalConnectionToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.electricalConnectionToolStripMenuItem.Text = "Electrical Connection";
- //
- // environmentalConditionsToolStripMenuItem
- //
- this.environmentalConditionsToolStripMenuItem.Name = "environmentalConditionsToolStripMenuItem";
- this.environmentalConditionsToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.environmentalConditionsToolStripMenuItem.Text = "Environmental Conditions";
- //
- // functionalSafetyToolStripMenuItem
- //
- this.functionalSafetyToolStripMenuItem.Name = "functionalSafetyToolStripMenuItem";
- this.functionalSafetyToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
- this.functionalSafetyToolStripMenuItem.Text = "Functional Safety";
- //
- // addInterfaceToolStripMenuItem
- //
- this.addInterfaceToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.mechanicalInterfaceToolStripMenuItem,
- this.electricalInterfaceToolStripMenuItem,
- this.sensorInterfaceToolStripMenuItem,
- this.hydraulicInterfaceToolStripMenuItem,
- this.liquidicInterfaceToolStripMenuItem,
- this.pneumaticInterfaceToolStripMenuItem});
- this.addInterfaceToolStripMenuItem.Name = "addInterfaceToolStripMenuItem";
- this.addInterfaceToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
- this.addInterfaceToolStripMenuItem.Text = "Add Interface";
- this.addInterfaceToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // mechanicalInterfaceToolStripMenuItem
- //
- this.mechanicalInterfaceToolStripMenuItem.Name = "mechanicalInterfaceToolStripMenuItem";
- this.mechanicalInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.mechanicalInterfaceToolStripMenuItem.Text = "Mechanical Interface";
- //
- // electricalInterfaceToolStripMenuItem
- //
- this.electricalInterfaceToolStripMenuItem.Name = "electricalInterfaceToolStripMenuItem";
- this.electricalInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.electricalInterfaceToolStripMenuItem.Text = "Electrical Interface";
- //
- // sensorInterfaceToolStripMenuItem
- //
- this.sensorInterfaceToolStripMenuItem.Name = "sensorInterfaceToolStripMenuItem";
- this.sensorInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.sensorInterfaceToolStripMenuItem.Text = "Sensor Interface";
- //
- // hydraulicInterfaceToolStripMenuItem
- //
- this.hydraulicInterfaceToolStripMenuItem.Name = "hydraulicInterfaceToolStripMenuItem";
- this.hydraulicInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.hydraulicInterfaceToolStripMenuItem.Text = "Hydraulic Interface";
- //
- // liquidicInterfaceToolStripMenuItem
- //
- this.liquidicInterfaceToolStripMenuItem.Name = "liquidicInterfaceToolStripMenuItem";
- this.liquidicInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.liquidicInterfaceToolStripMenuItem.Text = "Liquidic Interface";
- //
- // pneumaticInterfaceToolStripMenuItem
- //
- this.pneumaticInterfaceToolStripMenuItem.Name = "pneumaticInterfaceToolStripMenuItem";
- this.pneumaticInterfaceToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
- this.pneumaticInterfaceToolStripMenuItem.Text = "Pneumatic Interface";
- //
- // cADModelToolStripMenuItem
- //
- this.cADModelToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.modelToolStripMenuItem,
- this.billOfMaterialsToolStripMenuItem,
- this.billOfOperationsToolStripMenuItem});
- this.cADModelToolStripMenuItem.Name = "cADModelToolStripMenuItem";
- this.cADModelToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
- this.cADModelToolStripMenuItem.Text = "CAD model";
- this.cADModelToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // modelToolStripMenuItem
- //
- this.modelToolStripMenuItem.Name = "modelToolStripMenuItem";
- this.modelToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
- this.modelToolStripMenuItem.Text = "Model";
- //
- // billOfMaterialsToolStripMenuItem
- //
- this.billOfMaterialsToolStripMenuItem.Name = "billOfMaterialsToolStripMenuItem";
- this.billOfMaterialsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
- this.billOfMaterialsToolStripMenuItem.Text = "Bill of Materials";
- //
- // billOfOperationsToolStripMenuItem
- //
- this.billOfOperationsToolStripMenuItem.Name = "billOfOperationsToolStripMenuItem";
- this.billOfOperationsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
- this.billOfOperationsToolStripMenuItem.Text = "Bill of Operations";
- //
- // cAEePlanToolStripMenuItem
- //
- this.cAEePlanToolStripMenuItem.Name = "cAEePlanToolStripMenuItem";
- this.cAEePlanToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
- this.cAEePlanToolStripMenuItem.Text = "CAE (ePlan)";
- this.cAEePlanToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // documentsToolStripMenuItem
- //
- this.documentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.certificatesToolStripMenuItem,
- this.shortGuidesToolStripMenuItem});
- this.documentsToolStripMenuItem.Name = "documentsToolStripMenuItem";
- this.documentsToolStripMenuItem.Size = new System.Drawing.Size(143, 19);
- this.documentsToolStripMenuItem.Text = "Documents";
- this.documentsToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // certificatesToolStripMenuItem
- //
- this.certificatesToolStripMenuItem.Name = "certificatesToolStripMenuItem";
- this.certificatesToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
- this.certificatesToolStripMenuItem.Text = "Certificates";
- //
- // shortGuidesToolStripMenuItem
- //
- this.shortGuidesToolStripMenuItem.Name = "shortGuidesToolStripMenuItem";
- this.shortGuidesToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
- this.shortGuidesToolStripMenuItem.Text = "Short guides";
- //
// panel1
//
this.panel1.Controls.Add(this.splitContainer1);
@@ -923,256 +1000,298 @@ private void InitializeComponent()
this.panel1.Location = new System.Drawing.Point(0, 50);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1090, 685);
+ this.panel1.Size = new System.Drawing.Size(1090, 660);
this.panel1.TabIndex = 45;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(156, 0);
+ this.splitContainer1.Location = new System.Drawing.Point(0, 24);
+ this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
- this.splitContainer1.Panel1.Controls.Add(this.treeView1);
+ this.splitContainer1.Panel1.BackColor = System.Drawing.Color.LightGray;
+ this.splitContainer1.Panel1.Controls.Add(this.panel31);
+ this.splitContainer1.Panel1.Controls.Add(this.panel30);
//
// splitContainer1.Panel2
//
- this.splitContainer1.Panel2.Controls.Add(this.tabControl2);
- this.splitContainer1.Size = new System.Drawing.Size(934, 685);
- this.splitContainer1.SplitterDistance = 196;
+ this.splitContainer1.Panel2.Controls.Add(this.panel26);
+ this.splitContainer1.Panel2.Controls.Add(this.panel25);
+ this.splitContainer1.Panel2.Controls.Add(this.toolStrip5);
+ this.splitContainer1.Panel2.Controls.Add(this.toolStrip4);
+ this.splitContainer1.Size = new System.Drawing.Size(1090, 636);
+ this.splitContainer1.SplitterDistance = 235;
this.splitContainer1.TabIndex = 48;
- //
- // treeView1
- //
- this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.treeView1.Location = new System.Drawing.Point(0, 0);
- this.treeView1.Name = "treeView1";
- treeNode1.Name = "Node1";
- treeNode1.Text = "Node1";
- treeNode2.Name = "Node4";
- treeNode2.Text = "Node4";
- treeNode3.Name = "Node2";
- treeNode3.Text = "Node2";
- treeNode4.Name = "Node5";
- treeNode4.Text = "Node5";
- treeNode5.Name = "Node3";
- treeNode5.Text = "Node3";
- treeNode6.Name = "Node0";
- treeNode6.Text = "Node0";
- this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
- treeNode6});
- this.treeView1.Size = new System.Drawing.Size(196, 685);
- this.treeView1.TabIndex = 0;
- //
- // statusStrip1
- //
- this.statusStrip1.Location = new System.Drawing.Point(0, 735);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
- this.statusStrip1.TabIndex = 46;
- this.statusStrip1.Text = "statusStrip1";
+ this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.SplitContainer1_SplitterMoved);
+ //
+ // panel31
+ //
+ this.panel31.Controls.Add(this.treeViewCH);
+ this.panel31.Controls.Add(this.toolStrip9);
+ this.panel31.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel31.Location = new System.Drawing.Point(0, 25);
+ this.panel31.Name = "panel31";
+ this.panel31.Size = new System.Drawing.Size(235, 280);
+ this.panel31.TabIndex = 1;
+ //
+ // treeViewCH
+ //
+ this.treeViewCH.BackColor = System.Drawing.Color.LightGray;
+ this.treeViewCH.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.treeViewCH.Location = new System.Drawing.Point(0, 25);
+ this.treeViewCH.Name = "treeViewCH";
+ this.treeViewCH.Size = new System.Drawing.Size(235, 255);
+ this.treeViewCH.TabIndex = 1;
+ //
+ // toolStrip9
+ //
+ this.toolStrip9.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel2});
+ this.toolStrip9.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip9.Name = "toolStrip9";
+ this.toolStrip9.Size = new System.Drawing.Size(235, 25);
+ this.toolStrip9.TabIndex = 0;
+ this.toolStrip9.Text = "toolStrip9";
+ //
+ // toolStripLabel2
+ //
+ this.toolStripLabel2.Name = "toolStripLabel2";
+ this.toolStripLabel2.Size = new System.Drawing.Size(86, 22);
+ this.toolStripLabel2.Text = "toolStripLabel2";
+ //
+ // panel30
+ //
+ this.panel30.Controls.Add(this.toolStrip10);
+ this.panel30.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel30.Location = new System.Drawing.Point(0, 0);
+ this.panel30.Margin = new System.Windows.Forms.Padding(0);
+ this.panel30.Name = "panel30";
+ this.panel30.Size = new System.Drawing.Size(235, 25);
+ this.panel30.TabIndex = 0;
+ //
+ // toolStrip10
+ //
+ this.toolStrip10.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel9});
+ this.toolStrip10.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip10.Name = "toolStrip10";
+ this.toolStrip10.Size = new System.Drawing.Size(235, 25);
+ this.toolStrip10.TabIndex = 0;
+ this.toolStrip10.Text = "toolStrip10";
+ //
+ // toolStripLabel9
+ //
+ this.toolStripLabel9.Name = "toolStripLabel9";
+ this.toolStripLabel9.Size = new System.Drawing.Size(125, 22);
+ this.toolStripLabel9.Text = "Component Hierarchy";
+ //
+ // panel26
+ //
+ this.panel26.Controls.Add(this.tabControl2);
+ this.panel26.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel26.Location = new System.Drawing.Point(0, 50);
+ this.panel26.Name = "panel26";
+ this.panel26.Size = new System.Drawing.Size(651, 586);
+ this.panel26.TabIndex = 51;
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabPage1);
- this.tabControl2.Controls.Add(this.tabPage2);
this.tabControl2.Controls.Add(this.tabPage3);
this.tabControl2.Controls.Add(this.tabPage4);
this.tabControl2.Controls.Add(this.tabPage5);
this.tabControl2.Controls.Add(this.tabPage6);
- this.tabControl2.Controls.Add(this.tabPage7);
- this.tabControl2.Controls.Add(this.tabPage8);
- this.tabControl2.Controls.Add(this.tabPage9);
- this.tabControl2.Controls.Add(this.tabPage10);
- this.tabControl2.Controls.Add(this.tabPage11);
- this.tabControl2.Controls.Add(this.tabPage12);
+ this.tabControl2.Controls.Add(this.tabPage2);
this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl2.Location = new System.Drawing.Point(0, 0);
this.tabControl2.Margin = new System.Windows.Forms.Padding(0);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
- this.tabControl2.Size = new System.Drawing.Size(734, 685);
+ this.tabControl2.Size = new System.Drawing.Size(651, 586);
this.tabControl2.TabIndex = 47;
//
// tabPage1
//
- this.tabPage1.Controls.Add(this.label1);
- this.tabPage1.Controls.Add(this.label2);
- this.tabPage1.Controls.Add(this.txtVendorId);
- this.tabPage1.Controls.Add(this.label3);
- this.tabPage1.Controls.Add(this.txtVendorName);
- this.tabPage1.Controls.Add(this.label18);
- this.tabPage1.Controls.Add(this.label4);
- this.tabPage1.Controls.Add(this.productTxtBox);
- this.tabPage1.Controls.Add(this.txtDeviceId);
- this.tabPage1.Controls.Add(this.hwRelTxt);
- this.tabPage1.Controls.Add(this.label5);
- this.tabPage1.Controls.Add(this.swRelTxt);
- this.tabPage1.Controls.Add(this.txtDeviceName);
- this.tabPage1.Controls.Add(this.backBtn);
- this.tabPage1.Controls.Add(this.label6);
- this.tabPage1.Controls.Add(this.label17);
- this.tabPage1.Controls.Add(this.txtDeviceFamily);
- this.tabPage1.Controls.Add(this.deviceTypeListBox);
- this.tabPage1.Controls.Add(this.label7);
- this.tabPage1.Controls.Add(this.createDeviceBtn);
- this.tabPage1.Controls.Add(this.txtProductName);
- this.tabPage1.Controls.Add(this.txtOrderNumber);
- this.tabPage1.Controls.Add(this.label8);
- this.tabPage1.Controls.Add(this.label16);
- this.tabPage1.Controls.Add(this.openDeviceIconBtn);
- this.tabPage1.Controls.Add(this.label15);
- this.tabPage1.Controls.Add(this.label9);
- this.tabPage1.Controls.Add(this.txtMaxTemp);
- this.tabPage1.Controls.Add(this.txtVendorHomepage);
- this.tabPage1.Controls.Add(this.label14);
- this.tabPage1.Controls.Add(this.openDevicePicture);
- this.tabPage1.Controls.Add(this.txtMinTemp);
- this.tabPage1.Controls.Add(this.openVendorLogoBtn);
- this.tabPage1.Controls.Add(this.label13);
- this.tabPage1.Controls.Add(this.label10);
- this.tabPage1.Controls.Add(this.txtIpProduction);
- this.tabPage1.Controls.Add(this.label11);
- this.tabPage1.Controls.Add(this.label12);
+ this.tabPage1.Controls.Add(this.panel2);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(726, 637);
+ this.tabPage1.Size = new System.Drawing.Size(643, 560);
this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "General data";
+ this.tabPage1.Text = "Identification data";
this.tabPage1.UseVisualStyleBackColor = true;
//
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.label1.Location = new System.Drawing.Point(119, 62);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(174, 20);
- this.label1.TabIndex = 43;
- this.label1.Text = "Create a new Device";
+ // panel2
+ //
+ this.panel2.AutoScroll = true;
+ this.panel2.Controls.Add(this.label2);
+ this.panel2.Controls.Add(this.txtVendorId);
+ this.panel2.Controls.Add(this.label3);
+ this.panel2.Controls.Add(this.txtVendorName);
+ this.panel2.Controls.Add(this.label18);
+ this.panel2.Controls.Add(this.label4);
+ this.panel2.Controls.Add(this.productTxtBox);
+ this.panel2.Controls.Add(this.txtDeviceId);
+ this.panel2.Controls.Add(this.hwRelTxt);
+ this.panel2.Controls.Add(this.label5);
+ this.panel2.Controls.Add(this.swRelTxt);
+ this.panel2.Controls.Add(this.txtDeviceName);
+ this.panel2.Controls.Add(this.backBtn);
+ this.panel2.Controls.Add(this.label6);
+ this.panel2.Controls.Add(this.label17);
+ this.panel2.Controls.Add(this.txtDeviceFamily);
+ this.panel2.Controls.Add(this.deviceTypeListBox);
+ this.panel2.Controls.Add(this.label7);
+ this.panel2.Controls.Add(this.createDeviceBtn);
+ this.panel2.Controls.Add(this.txtProductName);
+ this.panel2.Controls.Add(this.txtOrderNumber);
+ this.panel2.Controls.Add(this.label8);
+ this.panel2.Controls.Add(this.label16);
+ this.panel2.Controls.Add(this.openDeviceIconBtn);
+ this.panel2.Controls.Add(this.label15);
+ this.panel2.Controls.Add(this.label9);
+ this.panel2.Controls.Add(this.txtMaxTemp);
+ this.panel2.Controls.Add(this.txtVendorHomepage);
+ this.panel2.Controls.Add(this.label14);
+ this.panel2.Controls.Add(this.openDevicePicture);
+ this.panel2.Controls.Add(this.txtMinTemp);
+ this.panel2.Controls.Add(this.openVendorLogoBtn);
+ this.panel2.Controls.Add(this.label13);
+ this.panel2.Controls.Add(this.label10);
+ this.panel2.Controls.Add(this.txtIpProduction);
+ this.panel2.Controls.Add(this.label11);
+ this.panel2.Controls.Add(this.label12);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel2.Location = new System.Drawing.Point(3, 3);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(637, 554);
+ this.panel2.TabIndex = 0;
//
// label2
//
this.label2.AutoSize = true;
this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label2.Location = new System.Drawing.Point(136, 130);
+ this.label2.Location = new System.Drawing.Point(133, 138);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(58, 13);
- this.label2.TabIndex = 45;
+ this.label2.TabIndex = 83;
this.label2.Text = "Vendor ID:";
//
// txtVendorId
//
- this.txtVendorId.Location = new System.Drawing.Point(209, 127);
+ this.txtVendorId.Location = new System.Drawing.Point(206, 135);
this.txtVendorId.Name = "txtVendorId";
this.txtVendorId.Size = new System.Drawing.Size(100, 20);
- this.txtVendorId.TabIndex = 47;
+ this.txtVendorId.TabIndex = 85;
//
// label3
//
this.label3.AutoSize = true;
this.label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.Location = new System.Drawing.Point(378, 98);
+ this.label3.Location = new System.Drawing.Point(375, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(87, 13);
- this.label3.TabIndex = 49;
+ this.label3.TabIndex = 87;
this.label3.Text = "Vendor Name:";
//
// txtVendorName
//
- this.txtVendorName.Location = new System.Drawing.Point(470, 95);
+ this.txtVendorName.Location = new System.Drawing.Point(467, 103);
this.txtVendorName.Name = "txtVendorName";
this.txtVendorName.Size = new System.Drawing.Size(125, 20);
- this.txtVendorName.TabIndex = 46;
+ this.txtVendorName.TabIndex = 84;
//
// label18
//
this.label18.AutoSize = true;
this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label18.Location = new System.Drawing.Point(440, 386);
+ this.label18.Location = new System.Drawing.Point(437, 394);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(143, 13);
- this.label18.TabIndex = 80;
+ this.label18.TabIndex = 118;
this.label18.Text = "Optional Classifications:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label4.Location = new System.Drawing.Point(136, 161);
+ this.label4.Location = new System.Drawing.Point(133, 169);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(58, 13);
- this.label4.TabIndex = 51;
+ this.label4.TabIndex = 89;
this.label4.Text = "Device ID:";
//
// productTxtBox
//
- this.productTxtBox.Location = new System.Drawing.Point(123, 358);
+ this.productTxtBox.Location = new System.Drawing.Point(120, 366);
this.productTxtBox.Name = "productTxtBox";
this.productTxtBox.Size = new System.Drawing.Size(306, 188);
- this.productTxtBox.TabIndex = 56;
+ this.productTxtBox.TabIndex = 94;
this.productTxtBox.Text = "";
//
// txtDeviceId
//
- this.txtDeviceId.Location = new System.Drawing.Point(209, 158);
+ this.txtDeviceId.Location = new System.Drawing.Point(206, 166);
this.txtDeviceId.Name = "txtDeviceId";
this.txtDeviceId.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceId.TabIndex = 48;
+ this.txtDeviceId.TabIndex = 86;
//
// hwRelTxt
//
- this.hwRelTxt.Location = new System.Drawing.Point(470, 127);
+ this.hwRelTxt.Location = new System.Drawing.Point(467, 135);
this.hwRelTxt.Name = "hwRelTxt";
this.hwRelTxt.Size = new System.Drawing.Size(125, 20);
- this.hwRelTxt.TabIndex = 57;
+ this.hwRelTxt.TabIndex = 95;
//
// label5
//
this.label5.AutoSize = true;
this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.Location = new System.Drawing.Point(119, 98);
+ this.label5.Location = new System.Drawing.Point(116, 106);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(87, 13);
- this.label5.TabIndex = 54;
+ this.label5.TabIndex = 92;
this.label5.Text = "Device Name:";
//
// swRelTxt
//
- this.swRelTxt.Location = new System.Drawing.Point(470, 159);
+ this.swRelTxt.Location = new System.Drawing.Point(467, 167);
this.swRelTxt.Name = "swRelTxt";
this.swRelTxt.Size = new System.Drawing.Size(125, 20);
- this.swRelTxt.TabIndex = 59;
+ this.swRelTxt.TabIndex = 97;
//
// txtDeviceName
//
- this.txtDeviceName.Location = new System.Drawing.Point(209, 95);
+ this.txtDeviceName.Location = new System.Drawing.Point(206, 103);
this.txtDeviceName.Name = "txtDeviceName";
this.txtDeviceName.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceName.TabIndex = 44;
+ this.txtDeviceName.TabIndex = 82;
+ this.txtDeviceName.TextChanged += new System.EventHandler(this.TxtDeviceName_TextChanged);
//
// backBtn
//
this.backBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.backBtn.Location = new System.Drawing.Point(123, 552);
+ this.backBtn.Location = new System.Drawing.Point(120, 560);
this.backBtn.Name = "backBtn";
this.backBtn.Size = new System.Drawing.Size(52, 23);
- this.backBtn.TabIndex = 76;
+ this.backBtn.TabIndex = 114;
this.backBtn.Text = "Back";
this.backBtn.UseVisualStyleBackColor = true;
+ this.backBtn.Click += new System.EventHandler(this.BackBtn_Click_1);
//
// label6
//
this.label6.AutoSize = true;
this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label6.Location = new System.Drawing.Point(118, 198);
+ this.label6.Location = new System.Drawing.Point(115, 206);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(76, 13);
- this.label6.TabIndex = 58;
+ this.label6.TabIndex = 96;
this.label6.Text = "Device Family:";
//
// label17
@@ -1180,18 +1299,18 @@ private void InitializeComponent()
this.label17.AutoSize = true;
this.label17.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label17.Location = new System.Drawing.Point(323, 197);
+ this.label17.Location = new System.Drawing.Point(320, 205);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(141, 13);
- this.label17.TabIndex = 79;
+ this.label17.TabIndex = 117;
this.label17.Text = "Communication Technology:";
//
// txtDeviceFamily
//
- this.txtDeviceFamily.Location = new System.Drawing.Point(209, 195);
+ this.txtDeviceFamily.Location = new System.Drawing.Point(206, 203);
this.txtDeviceFamily.Name = "txtDeviceFamily";
this.txtDeviceFamily.Size = new System.Drawing.Size(100, 20);
- this.txtDeviceFamily.TabIndex = 50;
+ this.txtDeviceFamily.TabIndex = 88;
//
// deviceTypeListBox
//
@@ -1201,458 +1320,2436 @@ private void InitializeComponent()
this.deviceTypeListBox.Items.AddRange(new object[] {
"IO-Link",
"ProfinetIO"});
- this.deviceTypeListBox.Location = new System.Drawing.Point(470, 194);
+ this.deviceTypeListBox.Location = new System.Drawing.Point(467, 202);
this.deviceTypeListBox.MaxDropDownItems = 2;
this.deviceTypeListBox.Name = "deviceTypeListBox";
this.deviceTypeListBox.Size = new System.Drawing.Size(125, 21);
- this.deviceTypeListBox.TabIndex = 61;
+ this.deviceTypeListBox.TabIndex = 99;
//
// label7
//
this.label7.AutoSize = true;
this.label7.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label7.Location = new System.Drawing.Point(120, 232);
+ this.label7.Location = new System.Drawing.Point(117, 240);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(78, 13);
- this.label7.TabIndex = 60;
+ this.label7.TabIndex = 98;
this.label7.Text = "Product Name:";
//
// createDeviceBtn
//
this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createDeviceBtn.Location = new System.Drawing.Point(525, 552);
+ this.createDeviceBtn.Location = new System.Drawing.Point(522, 560);
this.createDeviceBtn.Name = "createDeviceBtn";
this.createDeviceBtn.Size = new System.Drawing.Size(97, 23);
- this.createDeviceBtn.TabIndex = 75;
+ this.createDeviceBtn.TabIndex = 113;
this.createDeviceBtn.Text = "Create Device";
this.createDeviceBtn.UseVisualStyleBackColor = true;
+ this.createDeviceBtn.Click += new System.EventHandler(this.CreateDeviceBtn_Click_1);
//
// txtProductName
//
- this.txtProductName.Location = new System.Drawing.Point(209, 229);
+ this.txtProductName.Location = new System.Drawing.Point(206, 237);
this.txtProductName.Name = "txtProductName";
this.txtProductName.Size = new System.Drawing.Size(100, 20);
- this.txtProductName.TabIndex = 52;
+ this.txtProductName.TabIndex = 90;
//
// txtOrderNumber
//
- this.txtOrderNumber.Location = new System.Drawing.Point(209, 262);
+ this.txtOrderNumber.Location = new System.Drawing.Point(206, 270);
this.txtOrderNumber.Name = "txtOrderNumber";
this.txtOrderNumber.Size = new System.Drawing.Size(100, 20);
- this.txtOrderNumber.TabIndex = 53;
+ this.txtOrderNumber.TabIndex = 91;
//
// label8
//
this.label8.AutoSize = true;
this.label8.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label8.Location = new System.Drawing.Point(122, 333);
+ this.label8.Location = new System.Drawing.Point(119, 341);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(71, 13);
- this.label8.TabIndex = 63;
+ this.label8.TabIndex = 101;
this.label8.Text = "Product Text:";
//
// label16
//
this.label16.AutoSize = true;
this.label16.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label16.Location = new System.Drawing.Point(122, 264);
+ this.label16.Location = new System.Drawing.Point(119, 272);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(76, 13);
- this.label16.TabIndex = 78;
+ this.label16.TabIndex = 116;
this.label16.Text = "Order Number:";
//
// openDeviceIconBtn
//
this.openDeviceIconBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDeviceIconBtn.Location = new System.Drawing.Point(470, 264);
+ this.openDeviceIconBtn.Location = new System.Drawing.Point(467, 272);
this.openDeviceIconBtn.Name = "openDeviceIconBtn";
this.openDeviceIconBtn.Size = new System.Drawing.Size(125, 23);
- this.openDeviceIconBtn.TabIndex = 64;
- this.openDeviceIconBtn.Text = "Pick Device Icon";
+ this.openDeviceIconBtn.TabIndex = 102;
+ this.openDeviceIconBtn.Text = "Add Device Icon";
this.openDeviceIconBtn.UseVisualStyleBackColor = true;
//
// label15
//
this.label15.AutoSize = true;
this.label15.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label15.Location = new System.Drawing.Point(512, 467);
+ this.label15.Location = new System.Drawing.Point(509, 475);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(30, 13);
- this.label15.TabIndex = 77;
+ this.label15.TabIndex = 115;
this.label15.Text = "Max:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label9.Location = new System.Drawing.Point(104, 299);
+ this.label9.Location = new System.Drawing.Point(101, 307);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(99, 13);
- this.label9.TabIndex = 68;
+ this.label9.TabIndex = 106;
this.label9.Text = "Vendor Homepage:";
//
// txtMaxTemp
//
- this.txtMaxTemp.Location = new System.Drawing.Point(548, 464);
+ this.txtMaxTemp.Location = new System.Drawing.Point(545, 472);
this.txtMaxTemp.Name = "txtMaxTemp";
this.txtMaxTemp.Size = new System.Drawing.Size(47, 20);
- this.txtMaxTemp.TabIndex = 67;
+ this.txtMaxTemp.TabIndex = 105;
//
// txtVendorHomepage
//
- this.txtVendorHomepage.Location = new System.Drawing.Point(209, 296);
+ this.txtVendorHomepage.Location = new System.Drawing.Point(206, 304);
this.txtVendorHomepage.Name = "txtVendorHomepage";
this.txtVendorHomepage.Size = new System.Drawing.Size(146, 20);
- this.txtVendorHomepage.TabIndex = 55;
+ this.txtVendorHomepage.TabIndex = 93;
//
// label14
//
this.label14.AutoSize = true;
this.label14.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label14.Location = new System.Drawing.Point(512, 441);
+ this.label14.Location = new System.Drawing.Point(509, 449);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(27, 13);
- this.label14.TabIndex = 74;
+ this.label14.TabIndex = 112;
this.label14.Text = "Min:";
//
// openDevicePicture
//
this.openDevicePicture.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDevicePicture.Location = new System.Drawing.Point(470, 296);
+ this.openDevicePicture.Location = new System.Drawing.Point(467, 304);
this.openDevicePicture.Name = "openDevicePicture";
this.openDevicePicture.Size = new System.Drawing.Size(125, 23);
- this.openDevicePicture.TabIndex = 65;
- this.openDevicePicture.Text = "Pick Device Picture";
+ this.openDevicePicture.TabIndex = 103;
+ this.openDevicePicture.Text = "Add Device Picture";
this.openDevicePicture.UseVisualStyleBackColor = true;
//
// txtMinTemp
//
- this.txtMinTemp.Location = new System.Drawing.Point(548, 438);
+ this.txtMinTemp.Location = new System.Drawing.Point(545, 446);
this.txtMinTemp.Name = "txtMinTemp";
this.txtMinTemp.Size = new System.Drawing.Size(47, 20);
- this.txtMinTemp.TabIndex = 66;
+ this.txtMinTemp.TabIndex = 104;
//
// openVendorLogoBtn
//
this.openVendorLogoBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openVendorLogoBtn.Location = new System.Drawing.Point(470, 230);
+ this.openVendorLogoBtn.Location = new System.Drawing.Point(467, 238);
this.openVendorLogoBtn.Name = "openVendorLogoBtn";
this.openVendorLogoBtn.Size = new System.Drawing.Size(125, 23);
- this.openVendorLogoBtn.TabIndex = 62;
- this.openVendorLogoBtn.Text = "Pick Vendor Logo";
+ this.openVendorLogoBtn.TabIndex = 100;
+ this.openVendorLogoBtn.Text = "Add Vendor Logo\r\n";
this.openVendorLogoBtn.UseVisualStyleBackColor = true;
//
// label13
//
this.label13.AutoSize = true;
this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label13.Location = new System.Drawing.Point(440, 413);
+ this.label13.Location = new System.Drawing.Point(437, 421);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(155, 13);
- this.label13.TabIndex = 73;
+ this.label13.TabIndex = 111;
this.label13.Text = "Operating ambient temperature:";
//
// label10
//
this.label10.AutoSize = true;
this.label10.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label10.Location = new System.Drawing.Point(366, 130);
+ this.label10.Location = new System.Drawing.Point(363, 138);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(98, 13);
- this.label10.TabIndex = 70;
+ this.label10.TabIndex = 108;
this.label10.Text = "Hardware Release:";
//
// txtIpProduction
//
- this.txtIpProduction.Location = new System.Drawing.Point(548, 500);
+ this.txtIpProduction.Location = new System.Drawing.Point(545, 508);
this.txtIpProduction.Name = "txtIpProduction";
this.txtIpProduction.Size = new System.Drawing.Size(47, 20);
- this.txtIpProduction.TabIndex = 69;
+ this.txtIpProduction.TabIndex = 107;
//
// label11
//
this.label11.AutoSize = true;
this.label11.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label11.Location = new System.Drawing.Point(366, 162);
+ this.label11.Location = new System.Drawing.Point(363, 170);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(94, 13);
- this.label11.TabIndex = 71;
+ this.label11.TabIndex = 109;
this.label11.Text = "Software Release:";
//
// label12
//
this.label12.AutoSize = true;
this.label12.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label12.Location = new System.Drawing.Point(471, 503);
+ this.label12.Location = new System.Drawing.Point(468, 511);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(71, 13);
- this.label12.TabIndex = 72;
+ this.label12.TabIndex = 110;
this.label12.Text = "IP Protection:";
//
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.interfacePortMappingGrid);
- this.tabPage2.Controls.Add(this.label19);
- this.tabPage2.Controls.Add(this.txtPinCount);
- this.tabPage2.Controls.Add(this.label20);
- this.tabPage2.Controls.Add(this.label21);
- this.tabPage2.Controls.Add(this.cmbConnectorType);
- this.tabPage2.Controls.Add(this.createInterfaceBtn);
- this.tabPage2.Controls.Add(this.txtInterfaceDescription);
- this.tabPage2.Controls.Add(this.label22);
- this.tabPage2.Controls.Add(this.txtInterfaceNumber);
- this.tabPage2.Controls.Add(this.label23);
- this.tabPage2.Controls.Add(this.label24);
- this.tabPage2.Controls.Add(this.button1);
- this.tabPage2.Location = new System.Drawing.Point(4, 22);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(726, 637);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "Mechanical data";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
// tabPage3
//
+ this.tabPage3.Controls.Add(this.label1);
+ this.tabPage3.Controls.Add(this.label25);
+ this.tabPage3.Controls.Add(this.textBox1);
+ this.tabPage3.Controls.Add(this.textBox2);
+ this.tabPage3.Controls.Add(this.textBox3);
+ this.tabPage3.Controls.Add(this.label26);
+ this.tabPage3.Controls.Add(this.label27);
+ this.tabPage3.Controls.Add(this.label28);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Margin = new System.Windows.Forms.Padding(0);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(726, 637);
+ this.tabPage3.Size = new System.Drawing.Size(643, 560);
this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "Material";
+ this.tabPage3.Text = "Classification data";
this.tabPage3.UseVisualStyleBackColor = true;
//
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label1.Location = new System.Drawing.Point(286, 250);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(143, 13);
+ this.label1.TabIndex = 126;
+ this.label1.Text = "Optional Classifications:";
+ //
+ // label25
+ //
+ this.label25.AutoSize = true;
+ this.label25.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label25.Location = new System.Drawing.Point(358, 331);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(30, 13);
+ this.label25.TabIndex = 125;
+ this.label25.Text = "Max:";
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(394, 328);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(47, 20);
+ this.textBox1.TabIndex = 120;
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(394, 302);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(47, 20);
+ this.textBox2.TabIndex = 119;
+ //
+ // textBox3
+ //
+ this.textBox3.Location = new System.Drawing.Point(394, 364);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(47, 20);
+ this.textBox3.TabIndex = 121;
+ //
+ // label26
+ //
+ this.label26.AutoSize = true;
+ this.label26.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label26.Location = new System.Drawing.Point(358, 305);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(27, 13);
+ this.label26.TabIndex = 124;
+ this.label26.Text = "Min:";
+ //
+ // label27
+ //
+ this.label27.AutoSize = true;
+ this.label27.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label27.Location = new System.Drawing.Point(286, 277);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(155, 13);
+ this.label27.TabIndex = 123;
+ this.label27.Text = "Operating ambient temperature:";
+ //
+ // label28
+ //
+ this.label28.AutoSize = true;
+ this.label28.FlatStyle = System.Windows.Forms.FlatStyle.System;
+ this.label28.Location = new System.Drawing.Point(317, 367);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(71, 13);
+ this.label28.TabIndex = 122;
+ this.label28.Text = "IP Protection:";
+ //
// tabPage4
//
+ this.tabPage4.AutoScroll = true;
+ this.tabPage4.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage4.Controls.Add(this.panel3);
this.tabPage4.Location = new System.Drawing.Point(4, 22);
this.tabPage4.Name = "tabPage4";
- this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage4.Size = new System.Drawing.Size(726, 637);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "Electrical data";
- this.tabPage4.UseVisualStyleBackColor = true;
+ this.tabPage4.Size = new System.Drawing.Size(643, 560);
+ this.tabPage4.TabIndex = 8;
+ this.tabPage4.Text = "Identification data 1";
+ //
+ // panel3
+ //
+ this.panel3.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel3.Controls.Add(this.panel23);
+ this.panel3.Controls.Add(this.tableLayoutPanel1);
+ this.panel3.Location = new System.Drawing.Point(56, 33);
+ this.panel3.Margin = new System.Windows.Forms.Padding(10);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(700, 500);
+ this.panel3.TabIndex = 0;
+ //
+ // panel23
+ //
+ this.panel23.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel23.Controls.Add(this.button29);
+ this.panel23.Controls.Add(this.button30);
+ this.panel23.Controls.Add(this.button31);
+ this.panel23.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel23.Location = new System.Drawing.Point(0, 419);
+ this.panel23.Name = "panel23";
+ this.panel23.Size = new System.Drawing.Size(700, 25);
+ this.panel23.TabIndex = 3;
+ //
+ // button29
+ //
+ this.button29.BackColor = System.Drawing.Color.Silver;
+ this.button29.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button29.Location = new System.Drawing.Point(475, 0);
+ this.button29.Name = "button29";
+ this.button29.Size = new System.Drawing.Size(75, 25);
+ this.button29.TabIndex = 2;
+ this.button29.Text = "Add ";
+ this.button29.UseVisualStyleBackColor = false;
+ //
+ // button30
+ //
+ this.button30.BackColor = System.Drawing.Color.Silver;
+ this.button30.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button30.Location = new System.Drawing.Point(550, 0);
+ this.button30.Name = "button30";
+ this.button30.Size = new System.Drawing.Size(75, 25);
+ this.button30.TabIndex = 1;
+ this.button30.Text = "Clear";
+ this.button30.UseVisualStyleBackColor = false;
+ //
+ // button31
+ //
+ this.button31.BackColor = System.Drawing.Color.Silver;
+ this.button31.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button31.Location = new System.Drawing.Point(625, 0);
+ this.button31.Name = "button31";
+ this.button31.Size = new System.Drawing.Size(75, 25);
+ this.button31.TabIndex = 0;
+ this.button31.Text = "Cancel";
+ this.button31.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel1
+ //
+ this.tableLayoutPanel1.ColumnCount = 2;
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 23.41598F));
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 76.58402F));
+ this.tableLayoutPanel1.Controls.Add(this.label39, 0, 10);
+ this.tableLayoutPanel1.Controls.Add(this.label38, 0, 9);
+ this.tableLayoutPanel1.Controls.Add(this.textBox15, 1, 8);
+ this.tableLayoutPanel1.Controls.Add(this.label37, 0, 8);
+ this.tableLayoutPanel1.Controls.Add(this.textBox14, 1, 7);
+ this.tableLayoutPanel1.Controls.Add(this.label36, 0, 7);
+ this.tableLayoutPanel1.Controls.Add(this.textBox13, 1, 6);
+ this.tableLayoutPanel1.Controls.Add(this.label35, 0, 6);
+ this.tableLayoutPanel1.Controls.Add(this.textBox12, 1, 5);
+ this.tableLayoutPanel1.Controls.Add(this.label24, 0, 5);
+ this.tableLayoutPanel1.Controls.Add(this.textBox11, 1, 4);
+ this.tableLayoutPanel1.Controls.Add(this.label23, 0, 4);
+ this.tableLayoutPanel1.Controls.Add(this.textBox10, 1, 3);
+ this.tableLayoutPanel1.Controls.Add(this.label22, 0, 3);
+ this.tableLayoutPanel1.Controls.Add(this.label20, 0, 1);
+ this.tableLayoutPanel1.Controls.Add(this.textBox9, 1, 2);
+ this.tableLayoutPanel1.Controls.Add(this.label21, 0, 2);
+ this.tableLayoutPanel1.Controls.Add(this.textBox8, 1, 1);
+ this.tableLayoutPanel1.Controls.Add(this.textBox7, 1, 0);
+ this.tableLayoutPanel1.Controls.Add(this.label19, 0, 0);
+ this.tableLayoutPanel1.Controls.Add(this.richTextBox1, 1, 10);
+ this.tableLayoutPanel1.Controls.Add(this.comboBox2, 1, 9);
+ this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel1.Name = "tableLayoutPanel1";
+ this.tableLayoutPanel1.RowCount = 11;
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 88F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+ this.tableLayoutPanel1.Size = new System.Drawing.Size(700, 419);
+ this.tableLayoutPanel1.TabIndex = 0;
+ //
+ // label39
+ //
+ this.label39.AutoSize = true;
+ this.label39.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label39.Location = new System.Drawing.Point(10, 248);
+ this.label39.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(150, 171);
+ this.label39.TabIndex = 21;
+ this.label39.Text = "Product Text:";
+ this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label38
+ //
+ this.label38.AutoSize = true;
+ this.label38.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label38.Location = new System.Drawing.Point(10, 225);
+ this.label38.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(150, 23);
+ this.label38.TabIndex = 19;
+ this.label38.Text = "Communication Technology:";
+ this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox15
+ //
+ this.textBox15.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox15.Location = new System.Drawing.Point(163, 200);
+ this.textBox15.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox15.Name = "textBox15";
+ this.textBox15.Size = new System.Drawing.Size(200, 20);
+ this.textBox15.TabIndex = 18;
+ //
+ // label37
+ //
+ this.label37.AutoSize = true;
+ this.label37.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label37.Location = new System.Drawing.Point(10, 200);
+ this.label37.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(150, 25);
+ this.label37.TabIndex = 17;
+ this.label37.Text = "Vendor Homepage:";
+ this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox14
+ //
+ this.textBox14.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox14.Location = new System.Drawing.Point(163, 175);
+ this.textBox14.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox14.Name = "textBox14";
+ this.textBox14.Size = new System.Drawing.Size(200, 20);
+ this.textBox14.TabIndex = 16;
+ //
+ // label36
+ //
+ this.label36.AutoSize = true;
+ this.label36.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label36.Location = new System.Drawing.Point(10, 175);
+ this.label36.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(150, 25);
+ this.label36.TabIndex = 15;
+ this.label36.Text = "Order Number:";
+ this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox13
+ //
+ this.textBox13.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox13.Location = new System.Drawing.Point(163, 150);
+ this.textBox13.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox13.Name = "textBox13";
+ this.textBox13.Size = new System.Drawing.Size(200, 20);
+ this.textBox13.TabIndex = 14;
+ //
+ // label35
+ //
+ this.label35.AutoSize = true;
+ this.label35.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label35.Location = new System.Drawing.Point(10, 150);
+ this.label35.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(150, 25);
+ this.label35.TabIndex = 13;
+ this.label35.Text = "Product Name:";
+ this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox12
+ //
+ this.textBox12.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox12.Location = new System.Drawing.Point(163, 125);
+ this.textBox12.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox12.Name = "textBox12";
+ this.textBox12.Size = new System.Drawing.Size(200, 20);
+ this.textBox12.TabIndex = 12;
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label24.Location = new System.Drawing.Point(10, 125);
+ this.label24.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(150, 25);
+ this.label24.TabIndex = 11;
+ this.label24.Text = "Software Release:";
+ this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox11
+ //
+ this.textBox11.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox11.Location = new System.Drawing.Point(163, 100);
+ this.textBox11.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox11.Name = "textBox11";
+ this.textBox11.Size = new System.Drawing.Size(200, 20);
+ this.textBox11.TabIndex = 10;
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label23.Location = new System.Drawing.Point(10, 100);
+ this.label23.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(150, 25);
+ this.label23.TabIndex = 9;
+ this.label23.Text = "Hardware Release:";
+ this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.label23.Click += new System.EventHandler(this.Label23_Click);
+ //
+ // textBox10
+ //
+ this.textBox10.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox10.Location = new System.Drawing.Point(163, 75);
+ this.textBox10.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox10.Name = "textBox10";
+ this.textBox10.Size = new System.Drawing.Size(200, 20);
+ this.textBox10.TabIndex = 8;
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label22.Location = new System.Drawing.Point(10, 75);
+ this.label22.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(150, 25);
+ this.label22.TabIndex = 7;
+ this.label22.Text = "Vendor ID:";
+ this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label20
+ //
+ this.label20.AutoSize = true;
+ this.label20.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label20.Location = new System.Drawing.Point(10, 25);
+ this.label20.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label20.Name = "label20";
+ this.label20.Size = new System.Drawing.Size(150, 25);
+ this.label20.TabIndex = 6;
+ this.label20.Text = "Vendor Name:";
+ this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox9
+ //
+ this.textBox9.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox9.Location = new System.Drawing.Point(163, 50);
+ this.textBox9.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox9.Name = "textBox9";
+ this.textBox9.Size = new System.Drawing.Size(200, 20);
+ this.textBox9.TabIndex = 5;
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label21.Location = new System.Drawing.Point(10, 50);
+ this.label21.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(150, 25);
+ this.label21.TabIndex = 4;
+ this.label21.Text = "Device ID:";
+ this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox8
+ //
+ this.textBox8.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox8.Location = new System.Drawing.Point(163, 25);
+ this.textBox8.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox8.Name = "textBox8";
+ this.textBox8.Size = new System.Drawing.Size(200, 20);
+ this.textBox8.TabIndex = 3;
+ //
+ // textBox7
+ //
+ this.textBox7.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox7.Location = new System.Drawing.Point(163, 0);
+ this.textBox7.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox7.Name = "textBox7";
+ this.textBox7.Size = new System.Drawing.Size(200, 20);
+ this.textBox7.TabIndex = 0;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label19.Location = new System.Drawing.Point(10, 0);
+ this.label19.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(150, 25);
+ this.label19.TabIndex = 1;
+ this.label19.Text = "Device Name:";
+ this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.label19.Click += new System.EventHandler(this.Label19_Click);
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Location = new System.Drawing.Point(163, 248);
+ this.richTextBox1.Margin = new System.Windows.Forms.Padding(0);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(350, 135);
+ this.richTextBox1.TabIndex = 22;
+ this.richTextBox1.Text = "";
+ //
+ // comboBox2
+ //
+ this.comboBox2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.comboBox2.FormattingEnabled = true;
+ this.comboBox2.Items.AddRange(new object[] {
+ "IO-Link",
+ "ProfinetIO"});
+ this.comboBox2.Location = new System.Drawing.Point(163, 225);
+ this.comboBox2.Margin = new System.Windows.Forms.Padding(0);
+ this.comboBox2.Name = "comboBox2";
+ this.comboBox2.Size = new System.Drawing.Size(200, 21);
+ this.comboBox2.TabIndex = 23;
//
// tabPage5
//
+ this.tabPage5.AutoScroll = true;
+ this.tabPage5.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage5.Controls.Add(this.panel4);
this.tabPage5.Location = new System.Drawing.Point(4, 22);
+ this.tabPage5.Margin = new System.Windows.Forms.Padding(0);
this.tabPage5.Name = "tabPage5";
this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage5.Size = new System.Drawing.Size(726, 637);
- this.tabPage5.TabIndex = 4;
- this.tabPage5.Text = "Electrical Connection";
- this.tabPage5.UseVisualStyleBackColor = true;
+ this.tabPage5.Size = new System.Drawing.Size(643, 560);
+ this.tabPage5.TabIndex = 9;
+ this.tabPage5.Text = "Interfaces ";
+ this.tabPage5.Click += new System.EventHandler(this.TabPage5_Click);
+ //
+ // panel4
+ //
+ this.panel4.AutoScroll = true;
+ this.panel4.Controls.Add(this.panel24);
+ this.panel4.Controls.Add(this.panel8);
+ this.panel4.Controls.Add(this.panel7);
+ this.panel4.Controls.Add(this.panel5);
+ this.panel4.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel4.Location = new System.Drawing.Point(3, 3);
+ this.panel4.Margin = new System.Windows.Forms.Padding(0);
+ this.panel4.Name = "panel4";
+ this.panel4.Size = new System.Drawing.Size(791, 537);
+ this.panel4.TabIndex = 0;
+ this.panel4.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel4_Paint);
+ //
+ // panel24
+ //
+ this.panel24.Controls.Add(this.button2);
+ this.panel24.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel24.Location = new System.Drawing.Point(0, 75);
+ this.panel24.Margin = new System.Windows.Forms.Padding(0);
+ this.panel24.MaximumSize = new System.Drawing.Size(700, 300);
+ this.panel24.MinimumSize = new System.Drawing.Size(700, 25);
+ this.panel24.Name = "panel24";
+ this.panel24.Size = new System.Drawing.Size(700, 25);
+ this.panel24.TabIndex = 3;
+ //
+ // button2
+ //
+ this.button2.BackColor = System.Drawing.Color.LightGray;
+ this.button2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button2.Location = new System.Drawing.Point(0, 0);
+ this.button2.Margin = new System.Windows.Forms.Padding(0);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(700, 25);
+ this.button2.TabIndex = 0;
+ this.button2.Text = "+ Add Pneunmatic Interface";
+ this.button2.UseVisualStyleBackColor = false;
+ this.button2.Click += new System.EventHandler(this.Button2_Click);
+ //
+ // panel8
+ //
+ this.panel8.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel8.Controls.Add(this.panel22);
+ this.panel8.Controls.Add(this.tableLayoutPanel5);
+ this.panel8.Controls.Add(this.button8);
+ this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel8.Location = new System.Drawing.Point(0, 50);
+ this.panel8.Margin = new System.Windows.Forms.Padding(0);
+ this.panel8.MaximumSize = new System.Drawing.Size(700, 300);
+ this.panel8.MinimumSize = new System.Drawing.Size(700, 25);
+ this.panel8.Name = "panel8";
+ this.panel8.Size = new System.Drawing.Size(700, 25);
+ this.panel8.TabIndex = 2;
+ //
+ // panel22
+ //
+ this.panel22.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel22.Controls.Add(this.button26);
+ this.panel22.Controls.Add(this.button27);
+ this.panel22.Controls.Add(this.button28);
+ this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel22.Location = new System.Drawing.Point(0, 205);
+ this.panel22.Name = "panel22";
+ this.panel22.Size = new System.Drawing.Size(700, 25);
+ this.panel22.TabIndex = 3;
+ //
+ // button26
+ //
+ this.button26.BackColor = System.Drawing.Color.Silver;
+ this.button26.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button26.Location = new System.Drawing.Point(475, 0);
+ this.button26.Name = "button26";
+ this.button26.Size = new System.Drawing.Size(75, 25);
+ this.button26.TabIndex = 2;
+ this.button26.Text = "Add ";
+ this.button26.UseVisualStyleBackColor = false;
+ //
+ // button27
+ //
+ this.button27.BackColor = System.Drawing.Color.Silver;
+ this.button27.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button27.Location = new System.Drawing.Point(550, 0);
+ this.button27.Name = "button27";
+ this.button27.Size = new System.Drawing.Size(75, 25);
+ this.button27.TabIndex = 1;
+ this.button27.Text = "Clear";
+ this.button27.UseVisualStyleBackColor = false;
+ //
+ // button28
+ //
+ this.button28.BackColor = System.Drawing.Color.Silver;
+ this.button28.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button28.Location = new System.Drawing.Point(625, 0);
+ this.button28.Name = "button28";
+ this.button28.Size = new System.Drawing.Size(75, 25);
+ this.button28.TabIndex = 0;
+ this.button28.Text = "Cancel";
+ this.button28.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel5
+ //
+ this.tableLayoutPanel5.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.tableLayoutPanel5.ColumnCount = 2;
+ this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
+ this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.42857F));
+ this.tableLayoutPanel5.Controls.Add(this.label47, 0, 0);
+ this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 25);
+ this.tableLayoutPanel5.Name = "tableLayoutPanel5";
+ this.tableLayoutPanel5.RowCount = 4;
+ this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel5.Size = new System.Drawing.Size(700, 180);
+ this.tableLayoutPanel5.TabIndex = 1;
+ //
+ // label47
+ //
+ this.label47.AutoSize = true;
+ this.label47.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label47.Location = new System.Drawing.Point(3, 0);
+ this.label47.Name = "label47";
+ this.label47.Size = new System.Drawing.Size(194, 25);
+ this.label47.TabIndex = 0;
+ this.label47.Text = "Sensing Capacity";
+ this.label47.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // button8
+ //
+ this.button8.BackColor = System.Drawing.Color.LightGray;
+ this.button8.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button8.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button8.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button8.Location = new System.Drawing.Point(0, 0);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(700, 25);
+ this.button8.TabIndex = 0;
+ this.button8.Text = "+ Add Sensor Interface";
+ this.button8.UseVisualStyleBackColor = false;
+ this.button8.Click += new System.EventHandler(this.Button8_Click);
+ //
+ // panel7
+ //
+ this.panel7.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel7.Controls.Add(this.panel21);
+ this.panel7.Controls.Add(this.tableLayoutPanel4);
+ this.panel7.Controls.Add(this.button7);
+ this.panel7.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel7.Location = new System.Drawing.Point(0, 25);
+ this.panel7.MaximumSize = new System.Drawing.Size(700, 400);
+ this.panel7.MinimumSize = new System.Drawing.Size(700, 25);
+ this.panel7.Name = "panel7";
+ this.panel7.Size = new System.Drawing.Size(700, 25);
+ this.panel7.TabIndex = 1;
+ //
+ // panel21
+ //
+ this.panel21.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel21.Controls.Add(this.button23);
+ this.panel21.Controls.Add(this.button24);
+ this.panel21.Controls.Add(this.button25);
+ this.panel21.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel21.Location = new System.Drawing.Point(0, 125);
+ this.panel21.Name = "panel21";
+ this.panel21.Size = new System.Drawing.Size(700, 25);
+ this.panel21.TabIndex = 3;
+ //
+ // button23
+ //
+ this.button23.BackColor = System.Drawing.Color.Silver;
+ this.button23.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button23.Location = new System.Drawing.Point(475, 0);
+ this.button23.Name = "button23";
+ this.button23.Size = new System.Drawing.Size(75, 25);
+ this.button23.TabIndex = 2;
+ this.button23.Text = "Add ";
+ this.button23.UseVisualStyleBackColor = false;
+ //
+ // button24
+ //
+ this.button24.BackColor = System.Drawing.Color.Silver;
+ this.button24.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button24.Location = new System.Drawing.Point(550, 0);
+ this.button24.Name = "button24";
+ this.button24.Size = new System.Drawing.Size(75, 25);
+ this.button24.TabIndex = 1;
+ this.button24.Text = "Clear";
+ this.button24.UseVisualStyleBackColor = false;
+ //
+ // button25
+ //
+ this.button25.BackColor = System.Drawing.Color.Silver;
+ this.button25.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button25.Location = new System.Drawing.Point(625, 0);
+ this.button25.Name = "button25";
+ this.button25.Size = new System.Drawing.Size(75, 25);
+ this.button25.TabIndex = 0;
+ this.button25.Text = "Cancel";
+ this.button25.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel4
+ //
+ this.tableLayoutPanel4.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.tableLayoutPanel4.ColumnCount = 2;
+ this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 25);
+ this.tableLayoutPanel4.Name = "tableLayoutPanel4";
+ this.tableLayoutPanel4.RowCount = 2;
+ this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
+ this.tableLayoutPanel4.Size = new System.Drawing.Size(700, 100);
+ this.tableLayoutPanel4.TabIndex = 1;
+ //
+ // button7
+ //
+ this.button7.BackColor = System.Drawing.Color.LightGray;
+ this.button7.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button7.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button7.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button7.Location = new System.Drawing.Point(0, 0);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(700, 25);
+ this.button7.TabIndex = 0;
+ this.button7.Text = "+ Add Mechanical Interface";
+ this.button7.UseVisualStyleBackColor = false;
+ this.button7.Click += new System.EventHandler(this.Button7_Click);
+ //
+ // panel5
+ //
+ this.panel5.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel5.Controls.Add(this.panel20);
+ this.panel5.Controls.Add(this.tableLayoutPanel2);
+ this.panel5.Controls.Add(this.button6);
+ this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel5.Location = new System.Drawing.Point(0, 0);
+ this.panel5.MaximumSize = new System.Drawing.Size(700, 415);
+ this.panel5.MinimumSize = new System.Drawing.Size(700, 25);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(700, 25);
+ this.panel5.TabIndex = 0;
+ //
+ // panel20
+ //
+ this.panel20.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel20.Controls.Add(this.button20);
+ this.panel20.Controls.Add(this.button21);
+ this.panel20.Controls.Add(this.button22);
+ this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel20.Location = new System.Drawing.Point(0, 329);
+ this.panel20.Name = "panel20";
+ this.panel20.Size = new System.Drawing.Size(700, 25);
+ this.panel20.TabIndex = 3;
+ //
+ // button20
+ //
+ this.button20.BackColor = System.Drawing.Color.Silver;
+ this.button20.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button20.Location = new System.Drawing.Point(475, 0);
+ this.button20.Name = "button20";
+ this.button20.Size = new System.Drawing.Size(75, 25);
+ this.button20.TabIndex = 2;
+ this.button20.Text = "Add ";
+ this.button20.UseVisualStyleBackColor = false;
+ //
+ // button21
+ //
+ this.button21.BackColor = System.Drawing.Color.Silver;
+ this.button21.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button21.Location = new System.Drawing.Point(550, 0);
+ this.button21.Name = "button21";
+ this.button21.Size = new System.Drawing.Size(75, 25);
+ this.button21.TabIndex = 1;
+ this.button21.Text = "Clear";
+ this.button21.UseVisualStyleBackColor = false;
+ //
+ // button22
+ //
+ this.button22.BackColor = System.Drawing.Color.Silver;
+ this.button22.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button22.Location = new System.Drawing.Point(625, 0);
+ this.button22.Name = "button22";
+ this.button22.Size = new System.Drawing.Size(75, 25);
+ this.button22.TabIndex = 0;
+ this.button22.Text = "Cancel";
+ this.button22.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel2
+ //
+ this.tableLayoutPanel2.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.tableLayoutPanel2.ColumnCount = 2;
+ this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 26.47059F));
+ this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 73.52941F));
+ this.tableLayoutPanel2.Controls.Add(this.label44, 0, 4);
+ this.tableLayoutPanel2.Controls.Add(this.textBox18, 1, 3);
+ this.tableLayoutPanel2.Controls.Add(this.label43, 0, 3);
+ this.tableLayoutPanel2.Controls.Add(this.label42, 0, 2);
+ this.tableLayoutPanel2.Controls.Add(this.textBox17, 1, 1);
+ this.tableLayoutPanel2.Controls.Add(this.label41, 0, 1);
+ this.tableLayoutPanel2.Controls.Add(this.label40, 0, 0);
+ this.tableLayoutPanel2.Controls.Add(this.textBox16, 1, 0);
+ this.tableLayoutPanel2.Controls.Add(this.comboBox3, 1, 2);
+ this.tableLayoutPanel2.Controls.Add(this.panel6, 1, 4);
+ this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 25);
+ this.tableLayoutPanel2.Name = "tableLayoutPanel2";
+ this.tableLayoutPanel2.RowCount = 5;
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel2.Size = new System.Drawing.Size(700, 304);
+ this.tableLayoutPanel2.TabIndex = 1;
+ //
+ // label44
+ //
+ this.label44.AutoSize = true;
+ this.label44.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label44.Location = new System.Drawing.Point(3, 100);
+ this.label44.Name = "label44";
+ this.label44.Size = new System.Drawing.Size(179, 204);
+ this.label44.TabIndex = 9;
+ this.label44.Text = "Pins Description:";
+ this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox18
+ //
+ this.textBox18.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox18.Location = new System.Drawing.Point(188, 78);
+ this.textBox18.Name = "textBox18";
+ this.textBox18.Size = new System.Drawing.Size(250, 20);
+ this.textBox18.TabIndex = 7;
+ //
+ // label43
+ //
+ this.label43.AutoSize = true;
+ this.label43.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label43.Location = new System.Drawing.Point(3, 75);
+ this.label43.Name = "label43";
+ this.label43.Size = new System.Drawing.Size(179, 25);
+ this.label43.TabIndex = 6;
+ this.label43.Text = "Number of Pins:";
+ this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label42
+ //
+ this.label42.AutoSize = true;
+ this.label42.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label42.Location = new System.Drawing.Point(3, 50);
+ this.label42.Name = "label42";
+ this.label42.Size = new System.Drawing.Size(179, 25);
+ this.label42.TabIndex = 4;
+ this.label42.Text = "Connector Type:";
+ this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox17
+ //
+ this.textBox17.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox17.Location = new System.Drawing.Point(188, 28);
+ this.textBox17.Name = "textBox17";
+ this.textBox17.Size = new System.Drawing.Size(250, 20);
+ this.textBox17.TabIndex = 3;
+ //
+ // label41
+ //
+ this.label41.AutoSize = true;
+ this.label41.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label41.Location = new System.Drawing.Point(3, 25);
+ this.label41.Name = "label41";
+ this.label41.Size = new System.Drawing.Size(179, 25);
+ this.label41.TabIndex = 2;
+ this.label41.Text = "Interface Description:";
+ this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label40
+ //
+ this.label40.AutoSize = true;
+ this.label40.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label40.Location = new System.Drawing.Point(3, 0);
+ this.label40.Name = "label40";
+ this.label40.Size = new System.Drawing.Size(179, 25);
+ this.label40.TabIndex = 0;
+ this.label40.Text = "Interface Number:";
+ this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox16
+ //
+ this.textBox16.Dock = System.Windows.Forms.DockStyle.Left;
+ this.textBox16.Location = new System.Drawing.Point(188, 3);
+ this.textBox16.Name = "textBox16";
+ this.textBox16.Size = new System.Drawing.Size(250, 20);
+ this.textBox16.TabIndex = 1;
+ //
+ // comboBox3
+ //
+ this.comboBox3.Dock = System.Windows.Forms.DockStyle.Left;
+ this.comboBox3.FormattingEnabled = true;
+ this.comboBox3.Items.AddRange(new object[] {
+ "M12",
+ "M8"});
+ this.comboBox3.Location = new System.Drawing.Point(188, 53);
+ this.comboBox3.Name = "comboBox3";
+ this.comboBox3.Size = new System.Drawing.Size(250, 21);
+ this.comboBox3.TabIndex = 5;
+ //
+ // panel6
+ //
+ this.panel6.AccessibleRole = System.Windows.Forms.AccessibleRole.ScrollBar;
+ this.panel6.Controls.Add(this.tableLayoutPanel3);
+ this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel6.Location = new System.Drawing.Point(188, 103);
+ this.panel6.Name = "panel6";
+ this.panel6.Size = new System.Drawing.Size(509, 198);
+ this.panel6.TabIndex = 8;
+ //
+ // tableLayoutPanel3
+ //
+ this.tableLayoutPanel3.BackColor = System.Drawing.Color.White;
+ this.tableLayoutPanel3.ColumnCount = 2;
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
+ this.tableLayoutPanel3.Controls.Add(this.label45, 0, 0);
+ this.tableLayoutPanel3.Controls.Add(this.label46, 1, 0);
+ this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel3.Name = "tableLayoutPanel3";
+ this.tableLayoutPanel3.RowCount = 8;
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel3.Size = new System.Drawing.Size(509, 178);
+ this.tableLayoutPanel3.TabIndex = 0;
+ //
+ // label45
+ //
+ this.label45.AutoSize = true;
+ this.label45.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label45.Location = new System.Drawing.Point(3, 0);
+ this.label45.Name = "label45";
+ this.label45.Size = new System.Drawing.Size(184, 25);
+ this.label45.TabIndex = 7;
+ this.label45.Text = "Pins:";
+ this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label46
+ //
+ this.label46.AutoSize = true;
+ this.label46.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label46.Location = new System.Drawing.Point(193, 0);
+ this.label46.Name = "label46";
+ this.label46.Size = new System.Drawing.Size(313, 25);
+ this.label46.TabIndex = 8;
+ this.label46.Text = "Attribute:";
+ this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // button6
+ //
+ this.button6.BackColor = System.Drawing.Color.LightGray;
+ this.button6.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button6.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button6.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button6.Location = new System.Drawing.Point(0, 0);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(700, 25);
+ this.button6.TabIndex = 0;
+ this.button6.Text = "+ Add Electrical Interface";
+ this.button6.UseVisualStyleBackColor = false;
+ this.button6.Click += new System.EventHandler(this.Button6_Click);
//
// tabPage6
//
+ this.tabPage6.AutoScroll = true;
+ this.tabPage6.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage6.Controls.Add(this.panel9);
this.tabPage6.Location = new System.Drawing.Point(4, 22);
this.tabPage6.Name = "tabPage6";
this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(726, 659);
- this.tabPage6.TabIndex = 5;
- this.tabPage6.Text = "Environmental Conditions";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // tabPage7
- //
- this.tabPage7.Location = new System.Drawing.Point(4, 22);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(726, 659);
- this.tabPage7.TabIndex = 6;
- this.tabPage7.Text = "Functional Safety";
- this.tabPage7.UseVisualStyleBackColor = true;
- //
- // tabPage8
- //
- this.tabPage8.Location = new System.Drawing.Point(4, 22);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage8.Size = new System.Drawing.Size(726, 659);
- this.tabPage8.TabIndex = 7;
- this.tabPage8.Text = "Mechanical Interface";
- this.tabPage8.UseVisualStyleBackColor = true;
+ this.tabPage6.Size = new System.Drawing.Size(643, 560);
+ this.tabPage6.TabIndex = 10;
+ this.tabPage6.Text = "Field attachables";
+ //
+ // panel9
+ //
+ this.panel9.AutoScroll = true;
+ this.panel9.Controls.Add(this.panel14);
+ this.panel9.Controls.Add(this.panel10);
+ this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel9.Location = new System.Drawing.Point(3, 3);
+ this.panel9.Name = "panel9";
+ this.panel9.Size = new System.Drawing.Size(634, 554);
+ this.panel9.TabIndex = 0;
+ //
+ // panel14
+ //
+ this.panel14.Controls.Add(this.panel18);
+ this.panel14.Controls.Add(this.tableLayoutPanel7);
+ this.panel14.Controls.Add(this.button10);
+ this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel14.Location = new System.Drawing.Point(0, 25);
+ this.panel14.MaximumSize = new System.Drawing.Size(600, 250);
+ this.panel14.MinimumSize = new System.Drawing.Size(600, 25);
+ this.panel14.Name = "panel14";
+ this.panel14.Size = new System.Drawing.Size(600, 25);
+ this.panel14.TabIndex = 1;
+ //
+ // panel18
+ //
+ this.panel18.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel18.Controls.Add(this.button16);
+ this.panel18.Controls.Add(this.button15);
+ this.panel18.Controls.Add(this.button14);
+ this.panel18.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel18.Location = new System.Drawing.Point(0, 148);
+ this.panel18.Name = "panel18";
+ this.panel18.Size = new System.Drawing.Size(600, 25);
+ this.panel18.TabIndex = 2;
+ //
+ // button16
+ //
+ this.button16.BackColor = System.Drawing.Color.Silver;
+ this.button16.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button16.Location = new System.Drawing.Point(375, 0);
+ this.button16.Name = "button16";
+ this.button16.Size = new System.Drawing.Size(75, 25);
+ this.button16.TabIndex = 2;
+ this.button16.Text = "Add ";
+ this.button16.UseVisualStyleBackColor = false;
+ //
+ // button15
+ //
+ this.button15.BackColor = System.Drawing.Color.Silver;
+ this.button15.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button15.Location = new System.Drawing.Point(450, 0);
+ this.button15.Name = "button15";
+ this.button15.Size = new System.Drawing.Size(75, 25);
+ this.button15.TabIndex = 1;
+ this.button15.Text = "Clear";
+ this.button15.UseVisualStyleBackColor = false;
+ //
+ // button14
+ //
+ this.button14.BackColor = System.Drawing.Color.Silver;
+ this.button14.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button14.Location = new System.Drawing.Point(525, 0);
+ this.button14.Name = "button14";
+ this.button14.Size = new System.Drawing.Size(75, 25);
+ this.button14.TabIndex = 0;
+ this.button14.Text = "Cancel";
+ this.button14.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel7
+ //
+ this.tableLayoutPanel7.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.tableLayoutPanel7.ColumnCount = 2;
+ this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
+ this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.42857F));
+ this.tableLayoutPanel7.Controls.Add(this.label53, 0, 2);
+ this.tableLayoutPanel7.Controls.Add(this.label52, 0, 1);
+ this.tableLayoutPanel7.Controls.Add(this.label51, 0, 0);
+ this.tableLayoutPanel7.Controls.Add(this.panel15, 1, 0);
+ this.tableLayoutPanel7.Controls.Add(this.panel16, 1, 1);
+ this.tableLayoutPanel7.Controls.Add(this.panel17, 1, 2);
+ this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel7.Location = new System.Drawing.Point(0, 25);
+ this.tableLayoutPanel7.Name = "tableLayoutPanel7";
+ this.tableLayoutPanel7.RowCount = 5;
+ this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel7.Size = new System.Drawing.Size(600, 123);
+ this.tableLayoutPanel7.TabIndex = 1;
+ //
+ // label53
+ //
+ this.label53.AutoSize = true;
+ this.label53.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label53.Location = new System.Drawing.Point(3, 60);
+ this.label53.Name = "label53";
+ this.label53.Size = new System.Drawing.Size(165, 30);
+ this.label53.TabIndex = 4;
+ this.label53.Text = "Short Guide:";
+ this.label53.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label52
+ //
+ this.label52.AutoSize = true;
+ this.label52.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label52.Location = new System.Drawing.Point(3, 30);
+ this.label52.Name = "label52";
+ this.label52.Size = new System.Drawing.Size(165, 30);
+ this.label52.TabIndex = 3;
+ this.label52.Text = "Declaration of Conformity:";
+ this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label51
+ //
+ this.label51.AutoSize = true;
+ this.label51.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label51.Location = new System.Drawing.Point(3, 0);
+ this.label51.Name = "label51";
+ this.label51.Size = new System.Drawing.Size(165, 30);
+ this.label51.TabIndex = 0;
+ this.label51.Text = "MFFT Certificate:";
+ this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // panel15
+ //
+ this.panel15.Controls.Add(this.button11);
+ this.panel15.Controls.Add(this.textBox22);
+ this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel15.Location = new System.Drawing.Point(171, 0);
+ this.panel15.Margin = new System.Windows.Forms.Padding(0);
+ this.panel15.Name = "panel15";
+ this.panel15.Size = new System.Drawing.Size(429, 30);
+ this.panel15.TabIndex = 1;
+ //
+ // button11
+ //
+ this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button11.Location = new System.Drawing.Point(262, 2);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(30, 25);
+ this.button11.TabIndex = 4;
+ this.button11.UseVisualStyleBackColor = true;
+ //
+ // textBox22
+ //
+ this.textBox22.Location = new System.Drawing.Point(0, 5);
+ this.textBox22.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox22.Name = "textBox22";
+ this.textBox22.Size = new System.Drawing.Size(250, 20);
+ this.textBox22.TabIndex = 0;
+ //
+ // panel16
+ //
+ this.panel16.Controls.Add(this.button12);
+ this.panel16.Controls.Add(this.textBox23);
+ this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel16.Location = new System.Drawing.Point(171, 30);
+ this.panel16.Margin = new System.Windows.Forms.Padding(0);
+ this.panel16.Name = "panel16";
+ this.panel16.Size = new System.Drawing.Size(429, 30);
+ this.panel16.TabIndex = 2;
+ //
+ // button12
+ //
+ this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button12.Location = new System.Drawing.Point(262, 3);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(30, 25);
+ this.button12.TabIndex = 5;
+ this.button12.UseVisualStyleBackColor = true;
+ //
+ // textBox23
+ //
+ this.textBox23.Location = new System.Drawing.Point(0, 4);
+ this.textBox23.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox23.Name = "textBox23";
+ this.textBox23.Size = new System.Drawing.Size(250, 20);
+ this.textBox23.TabIndex = 0;
+ //
+ // panel17
+ //
+ this.panel17.Controls.Add(this.button13);
+ this.panel17.Controls.Add(this.textBox24);
+ this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel17.Location = new System.Drawing.Point(171, 60);
+ this.panel17.Margin = new System.Windows.Forms.Padding(0);
+ this.panel17.Name = "panel17";
+ this.panel17.Size = new System.Drawing.Size(429, 30);
+ this.panel17.TabIndex = 5;
+ //
+ // button13
+ //
+ this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button13.Location = new System.Drawing.Point(262, 3);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(30, 25);
+ this.button13.TabIndex = 6;
+ this.button13.UseVisualStyleBackColor = true;
+ //
+ // textBox24
+ //
+ this.textBox24.Location = new System.Drawing.Point(0, 5);
+ this.textBox24.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox24.Name = "textBox24";
+ this.textBox24.Size = new System.Drawing.Size(250, 20);
+ this.textBox24.TabIndex = 1;
+ //
+ // button10
+ //
+ this.button10.BackColor = System.Drawing.Color.DarkGray;
+ this.button10.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button10.Location = new System.Drawing.Point(0, 0);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(600, 25);
+ this.button10.TabIndex = 0;
+ this.button10.Text = "+ Add Documents ";
+ this.button10.UseVisualStyleBackColor = false;
+ this.button10.Click += new System.EventHandler(this.Button10_Click);
+ //
+ // panel10
+ //
+ this.panel10.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel10.Controls.Add(this.panel19);
+ this.panel10.Controls.Add(this.tableLayoutPanel6);
+ this.panel10.Controls.Add(this.button1);
+ this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel10.Location = new System.Drawing.Point(0, 0);
+ this.panel10.MaximumSize = new System.Drawing.Size(600, 250);
+ this.panel10.MinimumSize = new System.Drawing.Size(600, 25);
+ this.panel10.Name = "panel10";
+ this.panel10.Size = new System.Drawing.Size(600, 25);
+ this.panel10.TabIndex = 0;
+ //
+ // panel19
+ //
+ this.panel19.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.panel19.Controls.Add(this.button17);
+ this.panel19.Controls.Add(this.button18);
+ this.panel19.Controls.Add(this.button19);
+ this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel19.Location = new System.Drawing.Point(0, 160);
+ this.panel19.Name = "panel19";
+ this.panel19.Size = new System.Drawing.Size(600, 25);
+ this.panel19.TabIndex = 3;
+ //
+ // button17
+ //
+ this.button17.BackColor = System.Drawing.Color.Silver;
+ this.button17.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button17.Location = new System.Drawing.Point(375, 0);
+ this.button17.Name = "button17";
+ this.button17.Size = new System.Drawing.Size(75, 25);
+ this.button17.TabIndex = 2;
+ this.button17.Text = "Add ";
+ this.button17.UseVisualStyleBackColor = false;
+ //
+ // button18
+ //
+ this.button18.BackColor = System.Drawing.Color.Silver;
+ this.button18.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button18.Location = new System.Drawing.Point(450, 0);
+ this.button18.Name = "button18";
+ this.button18.Size = new System.Drawing.Size(75, 25);
+ this.button18.TabIndex = 1;
+ this.button18.Text = "Clear";
+ this.button18.UseVisualStyleBackColor = false;
+ //
+ // button19
+ //
+ this.button19.BackColor = System.Drawing.Color.Silver;
+ this.button19.Dock = System.Windows.Forms.DockStyle.Right;
+ this.button19.Location = new System.Drawing.Point(525, 0);
+ this.button19.Name = "button19";
+ this.button19.Size = new System.Drawing.Size(75, 25);
+ this.button19.TabIndex = 0;
+ this.button19.Text = "Cancel";
+ this.button19.UseVisualStyleBackColor = false;
+ //
+ // tableLayoutPanel6
+ //
+ this.tableLayoutPanel6.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.tableLayoutPanel6.ColumnCount = 2;
+ this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.66667F));
+ this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.33334F));
+ this.tableLayoutPanel6.Controls.Add(this.label50, 0, 2);
+ this.tableLayoutPanel6.Controls.Add(this.label49, 0, 1);
+ this.tableLayoutPanel6.Controls.Add(this.label48, 0, 0);
+ this.tableLayoutPanel6.Controls.Add(this.panel11, 1, 0);
+ this.tableLayoutPanel6.Controls.Add(this.panel12, 1, 1);
+ this.tableLayoutPanel6.Controls.Add(this.panel13, 1, 2);
+ this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 25);
+ this.tableLayoutPanel6.Name = "tableLayoutPanel6";
+ this.tableLayoutPanel6.RowCount = 4;
+ this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
+ this.tableLayoutPanel6.Size = new System.Drawing.Size(600, 135);
+ this.tableLayoutPanel6.TabIndex = 1;
+ this.tableLayoutPanel6.Paint += new System.Windows.Forms.PaintEventHandler(this.TableLayoutPanel6_Paint);
+ //
+ // label50
+ //
+ this.label50.AutoSize = true;
+ this.label50.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label50.Location = new System.Drawing.Point(3, 60);
+ this.label50.Name = "label50";
+ this.label50.Size = new System.Drawing.Size(165, 30);
+ this.label50.TabIndex = 4;
+ this.label50.Text = "Add Device Picture:";
+ this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label49
+ //
+ this.label49.AutoSize = true;
+ this.label49.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label49.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label49.Location = new System.Drawing.Point(3, 30);
+ this.label49.Name = "label49";
+ this.label49.Size = new System.Drawing.Size(165, 30);
+ this.label49.TabIndex = 2;
+ this.label49.Text = "Add Device Icon:";
+ this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label48
+ //
+ this.label48.AutoSize = true;
+ this.label48.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label48.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label48.Location = new System.Drawing.Point(3, 0);
+ this.label48.Name = "label48";
+ this.label48.Size = new System.Drawing.Size(165, 30);
+ this.label48.TabIndex = 0;
+ this.label48.Text = "Add Vendor Logo:";
+ this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // panel11
+ //
+ this.panel11.Controls.Add(this.button4);
+ this.panel11.Controls.Add(this.textBox19);
+ this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel11.Location = new System.Drawing.Point(171, 0);
+ this.panel11.Margin = new System.Windows.Forms.Padding(0);
+ this.panel11.Name = "panel11";
+ this.panel11.Size = new System.Drawing.Size(429, 30);
+ this.panel11.TabIndex = 1;
+ //
+ // button4
+ //
+ this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button4.Location = new System.Drawing.Point(262, 3);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(30, 25);
+ this.button4.TabIndex = 1;
+ this.button4.UseVisualStyleBackColor = true;
+ //
+ // textBox19
+ //
+ this.textBox19.Location = new System.Drawing.Point(0, 5);
+ this.textBox19.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox19.Name = "textBox19";
+ this.textBox19.Size = new System.Drawing.Size(250, 20);
+ this.textBox19.TabIndex = 0;
+ this.textBox19.TextChanged += new System.EventHandler(this.TextBox19_TextChanged);
+ //
+ // panel12
+ //
+ this.panel12.Controls.Add(this.button5);
+ this.panel12.Controls.Add(this.textBox20);
+ this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel12.Location = new System.Drawing.Point(171, 30);
+ this.panel12.Margin = new System.Windows.Forms.Padding(0);
+ this.panel12.Name = "panel12";
+ this.panel12.Size = new System.Drawing.Size(429, 30);
+ this.panel12.TabIndex = 5;
+ //
+ // button5
+ //
+ this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button5.Location = new System.Drawing.Point(262, 3);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(30, 25);
+ this.button5.TabIndex = 2;
+ this.button5.UseVisualStyleBackColor = true;
+ //
+ // textBox20
+ //
+ this.textBox20.Location = new System.Drawing.Point(0, 4);
+ this.textBox20.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox20.Name = "textBox20";
+ this.textBox20.Size = new System.Drawing.Size(250, 20);
+ this.textBox20.TabIndex = 1;
+ //
+ // panel13
+ //
+ this.panel13.Controls.Add(this.button9);
+ this.panel13.Controls.Add(this.textBox21);
+ this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel13.Location = new System.Drawing.Point(171, 60);
+ this.panel13.Margin = new System.Windows.Forms.Padding(0);
+ this.panel13.Name = "panel13";
+ this.panel13.Size = new System.Drawing.Size(429, 30);
+ this.panel13.TabIndex = 6;
+ //
+ // button9
+ //
+ this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button9.Location = new System.Drawing.Point(262, 3);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(30, 25);
+ this.button9.TabIndex = 3;
+ this.button9.UseVisualStyleBackColor = true;
+ //
+ // textBox21
+ //
+ this.textBox21.Location = new System.Drawing.Point(0, 5);
+ this.textBox21.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox21.Name = "textBox21";
+ this.textBox21.Size = new System.Drawing.Size(250, 20);
+ this.textBox21.TabIndex = 2;
+ //
+ // button1
+ //
+ this.button1.BackColor = System.Drawing.Color.DarkGray;
+ this.button1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button1.Location = new System.Drawing.Point(0, 0);
+ this.button1.Margin = new System.Windows.Forms.Padding(0);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(600, 25);
+ this.button1.TabIndex = 0;
+ this.button1.Text = "+ Add Logo";
+ this.button1.UseVisualStyleBackColor = false;
+ this.button1.Click += new System.EventHandler(this.Button1_Click);
+ //
+ // tabPage2
+ //
+ this.tabPage2.AutoScroll = true;
+ this.tabPage2.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage2.Controls.Add(this.panel29);
+ this.tabPage2.Controls.Add(this.panel28);
+ this.tabPage2.Controls.Add(this.panel27);
+ this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(643, 560);
+ this.tabPage2.TabIndex = 11;
+ this.tabPage2.Text = "Generic Data";
+ //
+ // panel29
+ //
+ this.panel29.Controls.Add(this.toolStrip8);
+ this.panel29.Controls.Add(this.tabControl4);
+ this.panel29.Controls.Add(this.button33);
+ this.panel29.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel29.Location = new System.Drawing.Point(3, 394);
+ this.panel29.Margin = new System.Windows.Forms.Padding(0);
+ this.panel29.MaximumSize = new System.Drawing.Size(637, 300);
+ this.panel29.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel29.Name = "panel29";
+ this.panel29.Size = new System.Drawing.Size(637, 300);
+ this.panel29.TabIndex = 2;
+ //
+ // toolStrip8
+ //
+ this.toolStrip8.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton12,
+ this.toolStripButton13,
+ this.toolStripButton14,
+ this.toolStripLabel12,
+ this.toolStripSeparator14,
+ this.toolStripTextBox8});
+ this.toolStrip8.Location = new System.Drawing.Point(0, 239);
+ this.toolStrip8.Name = "toolStrip8";
+ this.toolStrip8.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip8.TabIndex = 3;
+ this.toolStrip8.Text = "toolStrip8";
+ //
+ // toolStripButton12
+ //
+ this.toolStripButton12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
+ this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton12.Name = "toolStripButton12";
+ this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton12.Text = "Clear";
+ //
+ // toolStripButton13
+ //
+ this.toolStripButton13.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
+ this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton13.Name = "toolStripButton13";
+ this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton13.Text = "Cancel";
+ //
+ // toolStripButton14
+ //
+ this.toolStripButton14.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
+ this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton14.Name = "toolStripButton14";
+ this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton14.Text = "Save";
+ //
+ // toolStripLabel12
+ //
+ this.toolStripLabel12.Name = "toolStripLabel12";
+ this.toolStripLabel12.Size = new System.Drawing.Size(111, 22);
+ this.toolStripLabel12.Text = "Ref Semantic Prefix:";
+ //
+ // toolStripSeparator14
+ //
+ this.toolStripSeparator14.Name = "toolStripSeparator14";
+ this.toolStripSeparator14.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripTextBox8
+ //
+ this.toolStripTextBox8.Name = "toolStripTextBox8";
+ this.toolStripTextBox8.Size = new System.Drawing.Size(100, 25);
+ //
+ // tabControl4
+ //
+ this.tabControl4.Controls.Add(this.tabPage14);
+ this.tabControl4.Controls.Add(this.tabPage15);
+ this.tabControl4.Controls.Add(this.tabPage16);
+ this.tabControl4.Controls.Add(this.tabPage17);
+ this.tabControl4.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tabControl4.Location = new System.Drawing.Point(0, 23);
+ this.tabControl4.Margin = new System.Windows.Forms.Padding(0);
+ this.tabControl4.Name = "tabControl4";
+ this.tabControl4.SelectedIndex = 0;
+ this.tabControl4.Size = new System.Drawing.Size(637, 216);
+ this.tabControl4.TabIndex = 2;
+ //
+ // tabPage14
+ //
+ this.tabPage14.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage14.Controls.Add(this.dataGridViewPD);
+ this.tabPage14.Location = new System.Drawing.Point(4, 22);
+ this.tabPage14.Margin = new System.Windows.Forms.Padding(0);
+ this.tabPage14.Name = "tabPage14";
+ this.tabPage14.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage14.Size = new System.Drawing.Size(629, 190);
+ this.tabPage14.TabIndex = 0;
+ this.tabPage14.Text = "Product Details";
+ //
+ // dataGridViewPD
+ //
+ this.dataGridViewPD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewPD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.ReferenceID,
+ this.Attribute,
+ this.Description});
+ this.dataGridViewPD.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewPD.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewPD.Name = "dataGridViewPD";
+ this.dataGridViewPD.Size = new System.Drawing.Size(623, 184);
+ this.dataGridViewPD.TabIndex = 0;
+ //
+ // ReferenceID
+ //
+ this.ReferenceID.HeaderText = "ID";
+ this.ReferenceID.Name = "ReferenceID";
+ this.ReferenceID.Width = 175;
+ //
+ // Attribute
+ //
+ this.Attribute.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Attribute.HeaderText = "Attribute";
+ this.Attribute.Name = "Attribute";
+ //
+ // Description
+ //
+ this.Description.HeaderText = "Description";
+ this.Description.Name = "Description";
+ this.Description.Width = 250;
+ //
+ // tabPage15
+ //
+ this.tabPage15.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage15.Controls.Add(this.dataGridViewPOD);
+ this.tabPage15.Location = new System.Drawing.Point(4, 22);
+ this.tabPage15.Margin = new System.Windows.Forms.Padding(0);
+ this.tabPage15.Name = "tabPage15";
+ this.tabPage15.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage15.Size = new System.Drawing.Size(629, 190);
+ this.tabPage15.TabIndex = 1;
+ this.tabPage15.Text = "Product Order Details";
+ //
+ // dataGridViewPOD
+ //
+ this.dataGridViewPOD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewPOD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn1,
+ this.dataGridViewTextBoxColumn2,
+ this.dataGridViewTextBoxColumn3});
+ this.dataGridViewPOD.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewPOD.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewPOD.Name = "dataGridViewPOD";
+ this.dataGridViewPOD.Size = new System.Drawing.Size(623, 184);
+ this.dataGridViewPOD.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn1
+ //
+ this.dataGridViewTextBoxColumn1.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
+ this.dataGridViewTextBoxColumn1.Width = 175;
+ //
+ // dataGridViewTextBoxColumn2
+ //
+ this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn2.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
+ //
+ // dataGridViewTextBoxColumn3
+ //
+ this.dataGridViewTextBoxColumn3.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
+ this.dataGridViewTextBoxColumn3.Width = 250;
+ //
+ // tabPage16
+ //
+ this.tabPage16.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage16.Controls.Add(this.dataGridViewPPD);
+ this.tabPage16.Location = new System.Drawing.Point(4, 22);
+ this.tabPage16.Name = "tabPage16";
+ this.tabPage16.Size = new System.Drawing.Size(629, 190);
+ this.tabPage16.TabIndex = 2;
+ this.tabPage16.Text = "Product Price Details";
+ //
+ // dataGridViewPPD
+ //
+ this.dataGridViewPPD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewPPD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn4,
+ this.dataGridViewTextBoxColumn5,
+ this.dataGridViewTextBoxColumn6});
+ this.dataGridViewPPD.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewPPD.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewPPD.Name = "dataGridViewPPD";
+ this.dataGridViewPPD.Size = new System.Drawing.Size(629, 190);
+ this.dataGridViewPPD.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn4
+ //
+ this.dataGridViewTextBoxColumn4.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
+ this.dataGridViewTextBoxColumn4.Width = 175;
+ //
+ // dataGridViewTextBoxColumn5
+ //
+ this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn5.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
+ //
+ // dataGridViewTextBoxColumn6
+ //
+ this.dataGridViewTextBoxColumn6.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
+ this.dataGridViewTextBoxColumn6.Width = 250;
+ //
+ // tabPage17
+ //
+ this.tabPage17.AutoScroll = true;
+ this.tabPage17.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage17.Controls.Add(this.dataGridViewMD);
+ this.tabPage17.Location = new System.Drawing.Point(4, 22);
+ this.tabPage17.Name = "tabPage17";
+ this.tabPage17.Size = new System.Drawing.Size(629, 190);
+ this.tabPage17.TabIndex = 3;
+ this.tabPage17.Text = "Manufacturer Details";
+ //
+ // dataGridViewMD
+ //
+ this.dataGridViewMD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewMD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn7,
+ this.dataGridViewTextBoxColumn8,
+ this.dataGridViewTextBoxColumn9});
+ this.dataGridViewMD.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewMD.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewMD.Name = "dataGridViewMD";
+ this.dataGridViewMD.Size = new System.Drawing.Size(629, 190);
+ this.dataGridViewMD.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn7
+ //
+ this.dataGridViewTextBoxColumn7.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
+ this.dataGridViewTextBoxColumn7.Width = 175;
+ //
+ // dataGridViewTextBoxColumn8
+ //
+ this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn8.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
+ //
+ // dataGridViewTextBoxColumn9
+ //
+ this.dataGridViewTextBoxColumn9.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
+ this.dataGridViewTextBoxColumn9.Width = 250;
+ //
+ // button33
+ //
+ this.button33.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button33.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button33.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button33.Location = new System.Drawing.Point(0, 0);
+ this.button33.Margin = new System.Windows.Forms.Padding(0);
+ this.button33.Name = "button33";
+ this.button33.Size = new System.Drawing.Size(637, 23);
+ this.button33.TabIndex = 1;
+ this.button33.Text = "Commercial Data";
+ this.button33.UseVisualStyleBackColor = true;
+ this.button33.Click += new System.EventHandler(this.Button33_Click);
+ //
+ // panel28
+ //
+ this.panel28.Controls.Add(this.toolStrip7);
+ this.panel28.Controls.Add(this.tabControl3);
+ this.panel28.Controls.Add(this.button32);
+ this.panel28.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel28.Location = new System.Drawing.Point(3, 197);
+ this.panel28.Margin = new System.Windows.Forms.Padding(0);
+ this.panel28.MaximumSize = new System.Drawing.Size(637, 197);
+ this.panel28.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel28.Name = "panel28";
+ this.panel28.Size = new System.Drawing.Size(637, 197);
+ this.panel28.TabIndex = 1;
+ //
+ // toolStrip7
+ //
+ this.toolStrip7.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton9,
+ this.toolStripButton10,
+ this.toolStripButton11,
+ this.toolStripLabel11,
+ this.toolStripSeparator9,
+ this.toolStripTextBox7});
+ this.toolStrip7.Location = new System.Drawing.Point(0, 172);
+ this.toolStrip7.Name = "toolStrip7";
+ this.toolStrip7.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip7.TabIndex = 3;
+ this.toolStrip7.Text = "toolStrip7";
+ //
+ // toolStripButton9
+ //
+ this.toolStripButton9.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
+ this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton9.Name = "toolStripButton9";
+ this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton9.Text = "Clear";
+ //
+ // toolStripButton10
+ //
+ this.toolStripButton10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
+ this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton10.Name = "toolStripButton10";
+ this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton10.Text = "Cancel";
+ //
+ // toolStripButton11
+ //
+ this.toolStripButton11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
+ this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton11.Name = "toolStripButton11";
+ this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton11.Text = "Save";
+ //
+ // toolStripLabel11
+ //
+ this.toolStripLabel11.Name = "toolStripLabel11";
+ this.toolStripLabel11.Size = new System.Drawing.Size(111, 22);
+ this.toolStripLabel11.Text = "Ref Semantic Prefix:";
+ //
+ // toolStripSeparator9
+ //
+ this.toolStripSeparator9.Name = "toolStripSeparator9";
+ this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripTextBox7
+ //
+ this.toolStripTextBox7.Name = "toolStripTextBox7";
+ this.toolStripTextBox7.Size = new System.Drawing.Size(100, 25);
+ //
+ // tabControl3
+ //
+ this.tabControl3.Controls.Add(this.tabPage9);
+ this.tabControl3.Controls.Add(this.tabPage10);
+ this.tabControl3.Controls.Add(this.tabPage11);
+ this.tabControl3.Controls.Add(this.tabPage12);
+ this.tabControl3.Controls.Add(this.tabPage13);
+ this.tabControl3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tabControl3.Location = new System.Drawing.Point(0, 23);
+ this.tabControl3.Margin = new System.Windows.Forms.Padding(0);
+ this.tabControl3.Name = "tabControl3";
+ this.tabControl3.SelectedIndex = 0;
+ this.tabControl3.Size = new System.Drawing.Size(637, 149);
+ this.tabControl3.TabIndex = 2;
//
// tabPage9
//
+ this.tabPage9.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage9.Controls.Add(this.dataGridViewMechData);
this.tabPage9.Location = new System.Drawing.Point(4, 22);
+ this.tabPage9.Margin = new System.Windows.Forms.Padding(0);
this.tabPage9.Name = "tabPage9";
this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage9.Size = new System.Drawing.Size(726, 659);
- this.tabPage9.TabIndex = 8;
- this.tabPage9.Text = "Electrical Interface";
- this.tabPage9.UseVisualStyleBackColor = true;
+ this.tabPage9.Size = new System.Drawing.Size(629, 123);
+ this.tabPage9.TabIndex = 0;
+ this.tabPage9.Text = "Mechanical Data";
//
// tabPage10
//
- this.tabPage10.Controls.Add(this.splitContainer2);
+ this.tabPage10.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage10.Controls.Add(this.dataGridViewMaterialData);
this.tabPage10.Location = new System.Drawing.Point(4, 22);
+ this.tabPage10.Margin = new System.Windows.Forms.Padding(0);
this.tabPage10.Name = "tabPage10";
this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage10.Size = new System.Drawing.Size(726, 659);
- this.tabPage10.TabIndex = 9;
- this.tabPage10.Text = "Sensor Interface";
- this.tabPage10.UseVisualStyleBackColor = true;
+ this.tabPage10.Size = new System.Drawing.Size(629, 123);
+ this.tabPage10.TabIndex = 1;
+ this.tabPage10.Text = "Material Data";
//
// tabPage11
//
+ this.tabPage11.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage11.Controls.Add(this.dataGridViewElectricalConnection);
this.tabPage11.Location = new System.Drawing.Point(4, 22);
this.tabPage11.Name = "tabPage11";
- this.tabPage11.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage11.Size = new System.Drawing.Size(726, 659);
- this.tabPage11.TabIndex = 10;
- this.tabPage11.Text = "Hydraulic Interface";
- this.tabPage11.UseVisualStyleBackColor = true;
+ this.tabPage11.Size = new System.Drawing.Size(629, 123);
+ this.tabPage11.TabIndex = 2;
+ this.tabPage11.Text = "Electrical Connection";
//
// tabPage12
//
+ this.tabPage12.AutoScroll = true;
+ this.tabPage12.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage12.Controls.Add(this.dataGridViewElectricalData);
this.tabPage12.Location = new System.Drawing.Point(4, 22);
this.tabPage12.Name = "tabPage12";
- this.tabPage12.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage12.Size = new System.Drawing.Size(726, 637);
- this.tabPage12.TabIndex = 11;
- this.tabPage12.Text = "Pneumatic Interface";
- this.tabPage12.UseVisualStyleBackColor = true;
- //
- // interfacePortMappingGrid
- //
- this.interfacePortMappingGrid.AllowUserToAddRows = false;
- this.interfacePortMappingGrid.AllowUserToDeleteRows = false;
- this.interfacePortMappingGrid.AllowUserToResizeRows = false;
- this.interfacePortMappingGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.interfacePortMappingGrid.BackgroundColor = System.Drawing.SystemColors.Control;
- this.interfacePortMappingGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.interfacePortMappingGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.pinnumber,
- this.attribute});
- this.interfacePortMappingGrid.Location = new System.Drawing.Point(373, 202);
- this.interfacePortMappingGrid.Name = "interfacePortMappingGrid";
- this.interfacePortMappingGrid.RowHeadersVisible = false;
- this.interfacePortMappingGrid.Size = new System.Drawing.Size(253, 330);
- this.interfacePortMappingGrid.TabIndex = 59;
- //
- // pinnumber
- //
- this.pinnumber.FillWeight = 50F;
- this.pinnumber.HeaderText = "Pin";
- this.pinnumber.Name = "pinnumber";
- //
- // attribute
- //
- this.attribute.HeaderText = "Attribute";
- this.attribute.Name = "attribute";
+ this.tabPage12.Size = new System.Drawing.Size(629, 123);
+ this.tabPage12.TabIndex = 3;
+ this.tabPage12.Text = "Electrical Data";
+ //
+ // tabPage13
+ //
+ this.tabPage13.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage13.Controls.Add(this.tableLayoutPanel17);
+ this.tabPage13.Location = new System.Drawing.Point(4, 22);
+ this.tabPage13.Name = "tabPage13";
+ this.tabPage13.Size = new System.Drawing.Size(629, 123);
+ this.tabPage13.TabIndex = 4;
+ this.tabPage13.Text = "Display";
+ //
+ // tableLayoutPanel17
+ //
+ this.tableLayoutPanel17.ColumnCount = 4;
+ this.tableLayoutPanel17.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 23.81335F));
+ this.tableLayoutPanel17.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 26.06597F));
+ this.tableLayoutPanel17.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.06034F));
+ this.tableLayoutPanel17.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.06034F));
+ this.tableLayoutPanel17.Controls.Add(this.textBox83, 3, 0);
+ this.tableLayoutPanel17.Controls.Add(this.label115, 2, 0);
+ this.tableLayoutPanel17.Controls.Add(this.label116, 0, 0);
+ this.tableLayoutPanel17.Controls.Add(this.textBox84, 1, 0);
+ this.tableLayoutPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.tableLayoutPanel17.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel17.Name = "tableLayoutPanel17";
+ this.tableLayoutPanel17.RowCount = 5;
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
+ this.tableLayoutPanel17.Size = new System.Drawing.Size(629, 123);
+ this.tableLayoutPanel17.TabIndex = 2;
+ //
+ // textBox83
+ //
+ this.textBox83.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.textBox83.Location = new System.Drawing.Point(469, 0);
+ this.textBox83.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox83.Name = "textBox83";
+ this.textBox83.Size = new System.Drawing.Size(160, 20);
+ this.textBox83.TabIndex = 3;
+ //
+ // label115
+ //
+ this.label115.AutoSize = true;
+ this.label115.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label115.Location = new System.Drawing.Point(315, 0);
+ this.label115.Name = "label115";
+ this.label115.Size = new System.Drawing.Size(151, 25);
+ this.label115.TabIndex = 2;
+ this.label115.Text = "Power Indicator:";
+ this.label115.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label116
+ //
+ this.label116.AutoSize = true;
+ this.label116.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label116.Location = new System.Drawing.Point(3, 0);
+ this.label116.Name = "label116";
+ this.label116.Size = new System.Drawing.Size(143, 25);
+ this.label116.TabIndex = 0;
+ this.label116.Text = "Function Indicator:";
+ this.label116.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // textBox84
+ //
+ this.textBox84.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.textBox84.Location = new System.Drawing.Point(149, 0);
+ this.textBox84.Margin = new System.Windows.Forms.Padding(0);
+ this.textBox84.Name = "textBox84";
+ this.textBox84.Size = new System.Drawing.Size(163, 20);
+ this.textBox84.TabIndex = 1;
+ //
+ // button32
+ //
+ this.button32.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button32.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button32.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button32.Location = new System.Drawing.Point(0, 0);
+ this.button32.Margin = new System.Windows.Forms.Padding(0);
+ this.button32.Name = "button32";
+ this.button32.Size = new System.Drawing.Size(637, 23);
+ this.button32.TabIndex = 1;
+ this.button32.Text = "General Technical Data";
+ this.button32.UseVisualStyleBackColor = true;
+ this.button32.Click += new System.EventHandler(this.Button32_Click);
+ //
+ // panel27
+ //
+ this.panel27.Controls.Add(this.panel32);
+ this.panel27.Controls.Add(this.button3);
+ this.panel27.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel27.Location = new System.Drawing.Point(3, 3);
+ this.panel27.Margin = new System.Windows.Forms.Padding(0);
+ this.panel27.MaximumSize = new System.Drawing.Size(637, 194);
+ this.panel27.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel27.Name = "panel27";
+ this.panel27.Size = new System.Drawing.Size(637, 194);
+ this.panel27.TabIndex = 0;
+ //
+ // panel32
+ //
+ this.panel32.Controls.Add(this.panel33);
+ this.panel32.Controls.Add(this.toolStrip6);
+ this.panel32.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel32.Location = new System.Drawing.Point(0, 23);
+ this.panel32.Name = "panel32";
+ this.panel32.Size = new System.Drawing.Size(637, 157);
+ this.panel32.TabIndex = 3;
+ this.panel32.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel32_Paint);
+ //
+ // panel33
+ //
+ this.panel33.Controls.Add(this.dataGridViewIDT);
+ this.panel33.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel33.Location = new System.Drawing.Point(0, 0);
+ this.panel33.Name = "panel33";
+ this.panel33.Size = new System.Drawing.Size(637, 132);
+ this.panel33.TabIndex = 1;
+ //
+ // dataGridViewIDT
+ //
+ this.dataGridViewIDT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIDT.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column1,
+ this.Column2,
+ this.Column3});
+ this.dataGridViewIDT.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIDT.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIDT.Name = "dataGridViewIDT";
+ this.dataGridViewIDT.Size = new System.Drawing.Size(637, 132);
+ this.dataGridViewIDT.TabIndex = 0;
+ //
+ // Column1
+ //
+ this.Column1.HeaderText = "ID";
+ this.Column1.Name = "Column1";
+ this.Column1.Width = 175;
+ //
+ // Column2
+ //
+ this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column2.HeaderText = "Attributes";
+ this.Column2.Name = "Column2";
+ //
+ // Column3
+ //
+ this.Column3.HeaderText = "Value";
+ this.Column3.Name = "Column3";
+ this.Column3.Width = 250;
+ //
+ // toolStrip6
+ //
+ this.toolStrip6.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.toolStrip6.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton6,
+ this.toolStripButton7,
+ this.toolStripButton8});
+ this.toolStrip6.Location = new System.Drawing.Point(0, 132);
+ this.toolStrip6.Name = "toolStrip6";
+ this.toolStrip6.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip6.TabIndex = 2;
+ this.toolStrip6.Text = "toolStrip6";
+ //
+ // toolStripButton6
+ //
+ this.toolStripButton6.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
+ this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton6.Name = "toolStripButton6";
+ this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton6.Text = "Clear";
+ this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
+ //
+ // toolStripButton7
+ //
+ this.toolStripButton7.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
+ this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton7.Name = "toolStripButton7";
+ this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton7.Text = "Cancel";
+ //
+ // toolStripButton8
+ //
+ this.toolStripButton8.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
+ this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton8.Name = "toolStripButton8";
+ this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton8.Text = "Save";
+ //
+ // button3
+ //
+ this.button3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button3.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button3.Location = new System.Drawing.Point(0, 0);
+ this.button3.Margin = new System.Windows.Forms.Padding(0);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(637, 23);
+ this.button3.TabIndex = 0;
+ this.button3.Text = "Identification Data";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3_Click_1);
+ //
+ // panel25
+ //
+ this.panel25.BackColor = System.Drawing.Color.LightGray;
+ this.panel25.Controls.Add(this.treeView2);
+ this.panel25.Controls.Add(this.toolStrip11);
+ this.panel25.Dock = System.Windows.Forms.DockStyle.Right;
+ this.panel25.Location = new System.Drawing.Point(651, 50);
+ this.panel25.Margin = new System.Windows.Forms.Padding(0);
+ this.panel25.Name = "panel25";
+ this.panel25.Size = new System.Drawing.Size(200, 586);
+ this.panel25.TabIndex = 50;
+ //
+ // treeView2
+ //
+ this.treeView2.BackColor = System.Drawing.Color.LightGray;
+ this.treeView2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.treeView2.Location = new System.Drawing.Point(0, 25);
+ this.treeView2.Name = "treeView2";
+ treeNode1.Name = "Node10";
+ treeNode1.Text = "Node10";
+ treeNode2.Name = "Node11";
+ treeNode2.Text = "Node11";
+ treeNode3.Name = "Node6";
+ treeNode3.Text = "Node6";
+ treeNode4.Name = "Node7";
+ treeNode4.Text = "Node7";
+ treeNode5.Name = "Node0";
+ treeNode5.Text = "Node0";
+ treeNode6.Name = "Node8";
+ treeNode6.Text = "Node8";
+ treeNode7.Name = "Node9";
+ treeNode7.Text = "Node9";
+ treeNode8.Name = "Node1";
+ treeNode8.Text = "Node1";
+ treeNode9.Name = "Node2";
+ treeNode9.Text = "Node2";
+ treeNode10.Name = "Node3";
+ treeNode10.Text = "Node3";
+ treeNode11.Name = "Node4";
+ treeNode11.Text = "Node4";
+ treeNode12.Name = "Node5";
+ treeNode12.Text = "Node5";
+ this.treeView2.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
+ treeNode5,
+ treeNode8,
+ treeNode9,
+ treeNode10,
+ treeNode11,
+ treeNode12});
+ this.treeView2.Size = new System.Drawing.Size(200, 230);
+ this.treeView2.TabIndex = 2;
+ //
+ // toolStrip11
+ //
+ this.toolStrip11.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel10});
+ this.toolStrip11.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip11.Name = "toolStrip11";
+ this.toolStrip11.Size = new System.Drawing.Size(200, 25);
+ this.toolStrip11.TabIndex = 1;
+ this.toolStrip11.Text = "toolStrip11";
+ //
+ // toolStripLabel10
+ //
+ this.toolStripLabel10.Name = "toolStripLabel10";
+ this.toolStripLabel10.Size = new System.Drawing.Size(85, 22);
+ this.toolStripLabel10.Text = "Data Hierarchy";
+ //
+ // toolStrip5
+ //
+ this.toolStrip5.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel4,
+ this.toolStripSeparator5,
+ this.classificationSystemTextBox,
+ this.toolStripSeparator6,
+ this.toolStripLabel5,
+ this.toolStripSeparator7,
+ this.versionTextBox,
+ this.toolStripSeparator13});
+ this.toolStrip5.Location = new System.Drawing.Point(0, 25);
+ this.toolStrip5.Name = "toolStrip5";
+ this.toolStrip5.Size = new System.Drawing.Size(851, 25);
+ this.toolStrip5.TabIndex = 49;
+ this.toolStrip5.Text = "toolStrip5";
+ //
+ // toolStripLabel4
+ //
+ this.toolStripLabel4.Name = "toolStripLabel4";
+ this.toolStripLabel4.Size = new System.Drawing.Size(121, 22);
+ this.toolStripLabel4.Text = "Classification System:";
+ //
+ // toolStripSeparator5
+ //
+ this.toolStripSeparator5.Name = "toolStripSeparator5";
+ this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
+ //
+ // classificationSystemTextBox
+ //
+ this.classificationSystemTextBox.Name = "classificationSystemTextBox";
+ this.classificationSystemTextBox.Size = new System.Drawing.Size(100, 25);
+ //
+ // toolStripSeparator6
+ //
+ this.toolStripSeparator6.Name = "toolStripSeparator6";
+ this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel5
+ //
+ this.toolStripLabel5.Name = "toolStripLabel5";
+ this.toolStripLabel5.Size = new System.Drawing.Size(48, 22);
+ this.toolStripLabel5.Text = "Version:";
+ //
+ // toolStripSeparator7
+ //
+ this.toolStripSeparator7.Name = "toolStripSeparator7";
+ this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
+ //
+ // versionTextBox
+ //
+ this.versionTextBox.Name = "versionTextBox";
+ this.versionTextBox.Size = new System.Drawing.Size(100, 25);
+ //
+ // toolStripSeparator13
+ //
+ this.toolStripSeparator13.Name = "toolStripSeparator13";
+ this.toolStripSeparator13.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStrip4
+ //
+ this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.semanticSystemdrpdwn,
+ this.toolStripSeparator3,
+ this.semanticSystemCmbx,
+ this.toolStripSeparator4,
+ this.addSemanticSystems,
+ this.toolStripSeparator15,
+ this.cancelSemanticSystem,
+ this.toolStripSeparator8,
+ this.generaterAML});
+ this.toolStrip4.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip4.Name = "toolStrip4";
+ this.toolStrip4.Size = new System.Drawing.Size(851, 25);
+ this.toolStrip4.TabIndex = 48;
+ this.toolStrip4.Text = "toolStrip4";
//
- // label19
+ // semanticSystemdrpdwn
//
- this.label19.AutoSize = true;
- this.label19.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label19.Location = new System.Drawing.Point(447, 166);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(27, 13);
- this.label19.TabIndex = 62;
- this.label19.Text = "Pins";
+ this.semanticSystemdrpdwn.Name = "semanticSystemdrpdwn";
+ this.semanticSystemdrpdwn.Size = new System.Drawing.Size(110, 22);
+ this.semanticSystemdrpdwn.Text = "Semantic System";
//
- // txtPinCount
+ // toolStripSeparator3
//
- this.txtPinCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtPinCount.Location = new System.Drawing.Point(407, 164);
- this.txtPinCount.Name = "txtPinCount";
- this.txtPinCount.Size = new System.Drawing.Size(34, 20);
- this.txtPinCount.TabIndex = 57;
+ this.toolStripSeparator3.Name = "toolStripSeparator3";
+ this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
- // label20
+ // semanticSystemCmbx
//
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(375, 166);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(26, 13);
- this.label20.TabIndex = 61;
- this.label20.Text = "with";
+ this.semanticSystemCmbx.Items.AddRange(new object[] {
+ "eClass",
+ "Balluff",
+ "IEC",
+ "Daimler",
+ "IRDI"});
+ this.semanticSystemCmbx.Name = "semanticSystemCmbx";
+ this.semanticSystemCmbx.Size = new System.Drawing.Size(121, 25);
+ this.semanticSystemCmbx.Click += new System.EventHandler(this.SemanticSystemCmbx_Click);
//
- // label21
+ // toolStripSeparator4
//
- this.label21.AutoSize = true;
- this.label21.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label21.Location = new System.Drawing.Point(124, 166);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(82, 13);
- this.label21.TabIndex = 60;
- this.label21.Text = "Connector type:";
- //
- // cmbConnectorType
- //
- this.cmbConnectorType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbConnectorType.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.cmbConnectorType.FormattingEnabled = true;
- this.cmbConnectorType.Location = new System.Drawing.Point(212, 163);
- this.cmbConnectorType.Name = "cmbConnectorType";
- this.cmbConnectorType.Size = new System.Drawing.Size(157, 21);
- this.cmbConnectorType.TabIndex = 56;
- //
- // createInterfaceBtn
- //
- this.createInterfaceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createInterfaceBtn.Location = new System.Drawing.Point(529, 551);
- this.createInterfaceBtn.Name = "createInterfaceBtn";
- this.createInterfaceBtn.Size = new System.Drawing.Size(97, 23);
- this.createInterfaceBtn.TabIndex = 63;
- this.createInterfaceBtn.Text = "Create Interface";
- this.createInterfaceBtn.UseVisualStyleBackColor = true;
- //
- // txtInterfaceDescription
- //
- this.txtInterfaceDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtInterfaceDescription.Location = new System.Drawing.Point(212, 130);
- this.txtInterfaceDescription.Name = "txtInterfaceDescription";
- this.txtInterfaceDescription.Size = new System.Drawing.Size(157, 20);
- this.txtInterfaceDescription.TabIndex = 54;
+ this.toolStripSeparator4.Name = "toolStripSeparator4";
+ this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
- // label22
+ // addSemanticSystems
//
- this.label22.AutoSize = true;
- this.label22.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label22.Location = new System.Drawing.Point(100, 133);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(106, 13);
- this.label22.TabIndex = 58;
- this.label22.Text = "Interface description:";
+ this.addSemanticSystems.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.addSemanticSystems.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.addSemanticSystems.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addSemanticSystems.Name = "addSemanticSystems";
+ this.addSemanticSystems.Size = new System.Drawing.Size(23, 22);
+ this.addSemanticSystems.Text = "addSemanticSystems";
+ this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
//
- // txtInterfaceNumber
+ // toolStripSeparator15
//
- this.txtInterfaceNumber.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtInterfaceNumber.Location = new System.Drawing.Point(212, 99);
- this.txtInterfaceNumber.Name = "txtInterfaceNumber";
- this.txtInterfaceNumber.Size = new System.Drawing.Size(157, 20);
- this.txtInterfaceNumber.TabIndex = 52;
+ this.toolStripSeparator15.Name = "toolStripSeparator15";
+ this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
//
- // label23
+ // cancelSemanticSystem
//
- this.label23.AutoSize = true;
- this.label23.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label23.Location = new System.Drawing.Point(114, 103);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(92, 13);
- this.label23.TabIndex = 55;
- this.label23.Text = "Interface Number:";
+ this.cancelSemanticSystem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.cancelSemanticSystem.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_abo_kündigen_16;
+ this.cancelSemanticSystem.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.cancelSemanticSystem.Name = "cancelSemanticSystem";
+ this.cancelSemanticSystem.Size = new System.Drawing.Size(23, 22);
+ this.cancelSemanticSystem.Text = "toolStripButton3";
+ this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
//
- // label24
+ // toolStripSeparator8
//
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.label24.Location = new System.Drawing.Point(113, 62);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(193, 20);
- this.label24.TabIndex = 53;
- this.label24.Text = "Create a new Interface";
+ this.toolStripSeparator8.Name = "toolStripSeparator8";
+ this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
//
- // button1
+ // generaterAML
//
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.button1.Location = new System.Drawing.Point(117, 551);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(52, 23);
- this.button1.TabIndex = 64;
- this.button1.Text = "Back";
- this.button1.UseVisualStyleBackColor = true;
+ this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
+ this.generaterAML.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.generaterAML.Name = "generaterAML";
+ this.generaterAML.Size = new System.Drawing.Size(74, 22);
+ this.generaterAML.Text = "Generate";
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.Location = new System.Drawing.Point(0, 735);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
+ this.statusStrip1.TabIndex = 46;
+ this.statusStrip1.Text = "statusStrip1";
//
// toolStrip3
//
@@ -1678,40 +3775,145 @@ private void InitializeComponent()
this.toolStripTextBox1.Name = "toolStripTextBox1";
this.toolStripTextBox1.Size = new System.Drawing.Size(800, 25);
//
- // splitContainer2
+ // contextMenuStrip1
//
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(3, 3);
- this.splitContainer2.Name = "splitContainer2";
- this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
+ this.contextMenuStrip1.Name = "contextMenuStrip1";
+ this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
- // splitContainer2.Panel2
+ // dataGridViewMechData
//
- this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
- this.splitContainer2.Size = new System.Drawing.Size(720, 653);
- this.splitContainer2.SplitterDistance = 240;
- this.splitContainer2.TabIndex = 0;
+ this.dataGridViewMechData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewMechData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn10,
+ this.dataGridViewTextBoxColumn11,
+ this.dataGridViewTextBoxColumn12});
+ this.dataGridViewMechData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewMechData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMechData.Name = "dataGridViewMechData";
+ this.dataGridViewMechData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMechData.TabIndex = 1;
//
- // splitContainer3
+ // dataGridViewTextBoxColumn10
//
- this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer3.Location = new System.Drawing.Point(0, 0);
- this.splitContainer3.Name = "splitContainer3";
- this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
- this.splitContainer3.Size = new System.Drawing.Size(720, 409);
- this.splitContainer3.SplitterDistance = 240;
- this.splitContainer3.TabIndex = 0;
+ this.dataGridViewTextBoxColumn10.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
+ this.dataGridViewTextBoxColumn10.Width = 175;
+ //
+ // dataGridViewTextBoxColumn11
+ //
+ this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn11.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
+ //
+ // dataGridViewTextBoxColumn12
+ //
+ this.dataGridViewTextBoxColumn12.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
+ this.dataGridViewTextBoxColumn12.Width = 250;
+ //
+ // dataGridViewMaterialData
+ //
+ this.dataGridViewMaterialData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewMaterialData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn13,
+ this.dataGridViewTextBoxColumn14,
+ this.dataGridViewTextBoxColumn15});
+ this.dataGridViewMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewMaterialData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMaterialData.Name = "dataGridViewMaterialData";
+ this.dataGridViewMaterialData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMaterialData.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn13
+ //
+ this.dataGridViewTextBoxColumn13.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
+ this.dataGridViewTextBoxColumn13.Width = 175;
+ //
+ // dataGridViewTextBoxColumn14
+ //
+ this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn14.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
+ //
+ // dataGridViewTextBoxColumn15
+ //
+ this.dataGridViewTextBoxColumn15.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
+ this.dataGridViewTextBoxColumn15.Width = 250;
+ //
+ // dataGridViewElectricalConnection
+ //
+ this.dataGridViewElectricalConnection.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewElectricalConnection.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn16,
+ this.dataGridViewTextBoxColumn17,
+ this.dataGridViewTextBoxColumn18});
+ this.dataGridViewElectricalConnection.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewElectricalConnection.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalConnection.Name = "dataGridViewElectricalConnection";
+ this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalConnection.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn16
+ //
+ this.dataGridViewTextBoxColumn16.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
+ this.dataGridViewTextBoxColumn16.Width = 175;
+ //
+ // dataGridViewTextBoxColumn17
+ //
+ this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn17.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
+ //
+ // dataGridViewTextBoxColumn18
+ //
+ this.dataGridViewTextBoxColumn18.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
+ this.dataGridViewTextBoxColumn18.Width = 250;
+ //
+ // dataGridViewElectricalData
+ //
+ this.dataGridViewElectricalData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewElectricalData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn19,
+ this.dataGridViewTextBoxColumn20,
+ this.dataGridViewTextBoxColumn21});
+ this.dataGridViewElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewElectricalData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalData.Name = "dataGridViewElectricalData";
+ this.dataGridViewElectricalData.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalData.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn19
+ //
+ this.dataGridViewTextBoxColumn19.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
+ this.dataGridViewTextBoxColumn19.Width = 175;
+ //
+ // dataGridViewTextBoxColumn20
+ //
+ this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn20.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
+ //
+ // dataGridViewTextBoxColumn21
+ //
+ this.dataGridViewTextBoxColumn21.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
+ this.dataGridViewTextBoxColumn21.Width = 250;
//
// CreateDevice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
- this.Controls.Add(this.toolStrip3);
this.Controls.Add(this.panel1);
- this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.toolStrip2);
this.Controls.Add(this.toolStrip1);
+ this.Controls.Add(this.toolStrip3);
+ this.Controls.Add(this.statusStrip1);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "CreateDevice";
this.Size = new System.Drawing.Size(1090, 757);
@@ -1726,22 +3928,114 @@ private void InitializeComponent()
this.panel1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
+ this.splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
+ this.panel31.ResumeLayout(false);
+ this.panel31.PerformLayout();
+ this.toolStrip9.ResumeLayout(false);
+ this.toolStrip9.PerformLayout();
+ this.panel30.ResumeLayout(false);
+ this.panel30.PerformLayout();
+ this.toolStrip10.ResumeLayout(false);
+ this.toolStrip10.PerformLayout();
+ this.panel26.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
- this.tabPage1.PerformLayout();
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage3.PerformLayout();
+ this.tabPage4.ResumeLayout(false);
+ this.panel3.ResumeLayout(false);
+ this.panel23.ResumeLayout(false);
+ this.tableLayoutPanel1.ResumeLayout(false);
+ this.tableLayoutPanel1.PerformLayout();
+ this.tabPage5.ResumeLayout(false);
+ this.panel4.ResumeLayout(false);
+ this.panel24.ResumeLayout(false);
+ this.panel8.ResumeLayout(false);
+ this.panel22.ResumeLayout(false);
+ this.tableLayoutPanel5.ResumeLayout(false);
+ this.tableLayoutPanel5.PerformLayout();
+ this.panel7.ResumeLayout(false);
+ this.panel21.ResumeLayout(false);
+ this.panel5.ResumeLayout(false);
+ this.panel20.ResumeLayout(false);
+ this.tableLayoutPanel2.ResumeLayout(false);
+ this.tableLayoutPanel2.PerformLayout();
+ this.panel6.ResumeLayout(false);
+ this.tableLayoutPanel3.ResumeLayout(false);
+ this.tableLayoutPanel3.PerformLayout();
+ this.tabPage6.ResumeLayout(false);
+ this.panel9.ResumeLayout(false);
+ this.panel14.ResumeLayout(false);
+ this.panel18.ResumeLayout(false);
+ this.tableLayoutPanel7.ResumeLayout(false);
+ this.tableLayoutPanel7.PerformLayout();
+ this.panel15.ResumeLayout(false);
+ this.panel15.PerformLayout();
+ this.panel16.ResumeLayout(false);
+ this.panel16.PerformLayout();
+ this.panel17.ResumeLayout(false);
+ this.panel17.PerformLayout();
+ this.panel10.ResumeLayout(false);
+ this.panel19.ResumeLayout(false);
+ this.tableLayoutPanel6.ResumeLayout(false);
+ this.tableLayoutPanel6.PerformLayout();
+ this.panel11.ResumeLayout(false);
+ this.panel11.PerformLayout();
+ this.panel12.ResumeLayout(false);
+ this.panel12.PerformLayout();
+ this.panel13.ResumeLayout(false);
+ this.panel13.PerformLayout();
this.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
+ this.panel29.ResumeLayout(false);
+ this.panel29.PerformLayout();
+ this.toolStrip8.ResumeLayout(false);
+ this.toolStrip8.PerformLayout();
+ this.tabControl4.ResumeLayout(false);
+ this.tabPage14.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPD)).EndInit();
+ this.tabPage15.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPOD)).EndInit();
+ this.tabPage16.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPPD)).EndInit();
+ this.tabPage17.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMD)).EndInit();
+ this.panel28.ResumeLayout(false);
+ this.panel28.PerformLayout();
+ this.toolStrip7.ResumeLayout(false);
+ this.toolStrip7.PerformLayout();
+ this.tabControl3.ResumeLayout(false);
+ this.tabPage9.ResumeLayout(false);
this.tabPage10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.interfacePortMappingGrid)).EndInit();
+ this.tabPage11.ResumeLayout(false);
+ this.tabPage12.ResumeLayout(false);
+ this.tabPage13.ResumeLayout(false);
+ this.tableLayoutPanel17.ResumeLayout(false);
+ this.tableLayoutPanel17.PerformLayout();
+ this.panel27.ResumeLayout(false);
+ this.panel32.ResumeLayout(false);
+ this.panel32.PerformLayout();
+ this.panel33.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIDT)).EndInit();
+ this.toolStrip6.ResumeLayout(false);
+ this.toolStrip6.PerformLayout();
+ this.panel25.ResumeLayout(false);
+ this.panel25.PerformLayout();
+ this.toolStrip11.ResumeLayout(false);
+ this.toolStrip11.PerformLayout();
+ this.toolStrip5.ResumeLayout(false);
+ this.toolStrip5.PerformLayout();
+ this.toolStrip4.ResumeLayout(false);
+ this.toolStrip4.PerformLayout();
this.toolStrip3.ResumeLayout(false);
this.toolStrip3.PerformLayout();
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
- this.splitContainer3.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
@@ -1816,36 +4110,16 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripMenuItem pressureSensorsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem temperatureSensorsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ultrasonicSensorsToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem dataSheetToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
- private System.Windows.Forms.ToolStripMenuItem mechanicalDataToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem electricalDataToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem materialToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem electricalConnectionToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem environmentalConditionsToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem functionalSafetyToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem addInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem mechanicalInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem electricalInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem sensorInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem hydraulicInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem liquidicInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem pneumaticInterfaceToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem cADModelToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem modelToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem billOfMaterialsToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem billOfOperationsToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem cAEePlanToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem documentsToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem certificatesToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem shortGuidesToolStripMenuItem;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.StatusStrip statusStrip1;
+ private System.Windows.Forms.ToolStrip toolStrip3;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel1;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
+ private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.TabControl tabControl2;
private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtVendorId;
private System.Windows.Forms.Label label3;
@@ -1883,36 +4157,234 @@ private void InitializeComponent()
private System.Windows.Forms.TextBox txtIpProduction;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label12;
- private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.TabPage tabPage4;
+ private System.Windows.Forms.Panel panel3;
+ private System.Windows.Forms.Panel panel23;
+ private System.Windows.Forms.Button button29;
+ private System.Windows.Forms.Button button30;
+ private System.Windows.Forms.Button button31;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
+ private System.Windows.Forms.Label label39;
+ private System.Windows.Forms.Label label38;
+ private System.Windows.Forms.TextBox textBox15;
+ private System.Windows.Forms.Label label37;
+ private System.Windows.Forms.TextBox textBox14;
+ private System.Windows.Forms.Label label36;
+ private System.Windows.Forms.TextBox textBox13;
+ private System.Windows.Forms.Label label35;
+ private System.Windows.Forms.TextBox textBox12;
+ private System.Windows.Forms.Label label24;
+ private System.Windows.Forms.TextBox textBox11;
+ private System.Windows.Forms.Label label23;
+ private System.Windows.Forms.TextBox textBox10;
+ private System.Windows.Forms.Label label22;
+ private System.Windows.Forms.Label label20;
+ private System.Windows.Forms.TextBox textBox9;
+ private System.Windows.Forms.Label label21;
+ private System.Windows.Forms.TextBox textBox8;
+ private System.Windows.Forms.TextBox textBox7;
+ private System.Windows.Forms.Label label19;
+ private System.Windows.Forms.RichTextBox richTextBox1;
+ private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.TabPage tabPage5;
+ private System.Windows.Forms.Panel panel4;
+ private System.Windows.Forms.Panel panel8;
+ private System.Windows.Forms.Panel panel22;
+ private System.Windows.Forms.Button button26;
+ private System.Windows.Forms.Button button27;
+ private System.Windows.Forms.Button button28;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
+ private System.Windows.Forms.Label label47;
+ private System.Windows.Forms.Button button8;
+ private System.Windows.Forms.Panel panel7;
+ private System.Windows.Forms.Panel panel21;
+ private System.Windows.Forms.Button button23;
+ private System.Windows.Forms.Button button24;
+ private System.Windows.Forms.Button button25;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
+ private System.Windows.Forms.Button button7;
+ private System.Windows.Forms.Panel panel5;
+ private System.Windows.Forms.Panel panel20;
+ private System.Windows.Forms.Button button20;
+ private System.Windows.Forms.Button button21;
+ private System.Windows.Forms.Button button22;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
+ private System.Windows.Forms.Label label44;
+ private System.Windows.Forms.TextBox textBox18;
+ private System.Windows.Forms.Label label43;
+ private System.Windows.Forms.Label label42;
+ private System.Windows.Forms.TextBox textBox17;
+ private System.Windows.Forms.Label label41;
+ private System.Windows.Forms.Label label40;
+ private System.Windows.Forms.TextBox textBox16;
+ private System.Windows.Forms.ComboBox comboBox3;
+ private System.Windows.Forms.Panel panel6;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
+ private System.Windows.Forms.Label label45;
+ private System.Windows.Forms.Label label46;
+ private System.Windows.Forms.Button button6;
private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.TabPage tabPage7;
- private System.Windows.Forms.TabPage tabPage8;
+ private System.Windows.Forms.Panel panel9;
+ private System.Windows.Forms.Panel panel14;
+ private System.Windows.Forms.Panel panel18;
+ private System.Windows.Forms.Button button16;
+ private System.Windows.Forms.Button button15;
+ private System.Windows.Forms.Button button14;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel7;
+ private System.Windows.Forms.Label label53;
+ private System.Windows.Forms.Label label52;
+ private System.Windows.Forms.Label label51;
+ private System.Windows.Forms.Panel panel15;
+ private System.Windows.Forms.Button button11;
+ private System.Windows.Forms.TextBox textBox22;
+ private System.Windows.Forms.Panel panel16;
+ private System.Windows.Forms.Button button12;
+ private System.Windows.Forms.TextBox textBox23;
+ private System.Windows.Forms.Panel panel17;
+ private System.Windows.Forms.Button button13;
+ private System.Windows.Forms.TextBox textBox24;
+ private System.Windows.Forms.Button button10;
+ private System.Windows.Forms.Panel panel10;
+ private System.Windows.Forms.Panel panel19;
+ private System.Windows.Forms.Button button17;
+ private System.Windows.Forms.Button button18;
+ private System.Windows.Forms.Button button19;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
+ private System.Windows.Forms.Label label50;
+ private System.Windows.Forms.Label label49;
+ private System.Windows.Forms.Label label48;
+ private System.Windows.Forms.Panel panel11;
+ private System.Windows.Forms.Button button4;
+ private System.Windows.Forms.TextBox textBox19;
+ private System.Windows.Forms.Panel panel12;
+ private System.Windows.Forms.Button button5;
+ private System.Windows.Forms.TextBox textBox20;
+ private System.Windows.Forms.Panel panel13;
+ private System.Windows.Forms.Button button9;
+ private System.Windows.Forms.TextBox textBox21;
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.Panel panel24;
+ private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label label25;
+ private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.TextBox textBox2;
+ private System.Windows.Forms.TextBox textBox3;
+ private System.Windows.Forms.Label label26;
+ private System.Windows.Forms.Label label27;
+ private System.Windows.Forms.Label label28;
+ private System.Windows.Forms.SaveFileDialog saveFileDialog1;
+ private System.Windows.Forms.ToolStrip toolStrip5;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel4;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
+ private System.Windows.Forms.ToolStripTextBox classificationSystemTextBox;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel5;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
+ private System.Windows.Forms.ToolStripTextBox versionTextBox;
+ private System.Windows.Forms.ToolStrip toolStrip4;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
+ private System.Windows.Forms.ToolStripComboBox semanticSystemCmbx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
+ private System.Windows.Forms.TabPage tabPage2;
+ private System.Windows.Forms.Panel panel26;
+ private System.Windows.Forms.Panel panel25;
+ private System.Windows.Forms.Panel panel27;
+ private System.Windows.Forms.ToolStrip toolStrip6;
+ private System.Windows.Forms.ToolStripButton toolStripButton6;
+ private System.Windows.Forms.ToolStripButton toolStripButton7;
+ private System.Windows.Forms.ToolStripButton toolStripButton8;
+ private System.Windows.Forms.Button button3;
+ private System.Windows.Forms.Panel panel28;
+ private System.Windows.Forms.ToolStrip toolStrip7;
+ private System.Windows.Forms.ToolStripButton toolStripButton9;
+ private System.Windows.Forms.ToolStripButton toolStripButton10;
+ private System.Windows.Forms.ToolStripButton toolStripButton11;
+ private System.Windows.Forms.TabControl tabControl3;
private System.Windows.Forms.TabPage tabPage9;
private System.Windows.Forms.TabPage tabPage10;
private System.Windows.Forms.TabPage tabPage11;
private System.Windows.Forms.TabPage tabPage12;
- private System.Windows.Forms.DataGridView interfacePortMappingGrid;
- private System.Windows.Forms.DataGridViewTextBoxColumn pinnumber;
- private System.Windows.Forms.DataGridViewTextBoxColumn attribute;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.TextBox txtPinCount;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.ComboBox cmbConnectorType;
- private System.Windows.Forms.Button createInterfaceBtn;
- private System.Windows.Forms.TextBox txtInterfaceDescription;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.TextBox txtInterfaceNumber;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private System.Windows.Forms.SplitContainer splitContainer3;
- private System.Windows.Forms.ToolStrip toolStrip3;
- private System.Windows.Forms.ToolStripLabel toolStripLabel1;
- private System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
+ private System.Windows.Forms.TabPage tabPage13;
+ private System.Windows.Forms.Button button32;
+ private System.Windows.Forms.Panel panel29;
+ private System.Windows.Forms.ToolStrip toolStrip8;
+ private System.Windows.Forms.ToolStripButton toolStripButton12;
+ private System.Windows.Forms.ToolStripButton toolStripButton13;
+ private System.Windows.Forms.ToolStripButton toolStripButton14;
+ private System.Windows.Forms.TabControl tabControl4;
+ private System.Windows.Forms.TabPage tabPage14;
+ private System.Windows.Forms.TabPage tabPage15;
+ private System.Windows.Forms.TabPage tabPage17;
+ private System.Windows.Forms.Button button33;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel17;
+ private System.Windows.Forms.TextBox textBox83;
+ private System.Windows.Forms.Label label115;
+ private System.Windows.Forms.Label label116;
+ private System.Windows.Forms.TextBox textBox84;
+ private System.Windows.Forms.Panel panel30;
+ private System.Windows.Forms.Panel panel31;
+ private System.Windows.Forms.ToolStrip toolStrip10;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel9;
+ private System.Windows.Forms.TreeView treeView2;
+ private System.Windows.Forms.ToolStrip toolStrip11;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel10;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel12;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox8;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel11;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox7;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
+ private System.Windows.Forms.ToolStripButton addSemanticSystems;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
+ private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
+ private System.Windows.Forms.ToolStripDropDownButton semanticSystemdrpdwn;
+ private System.Windows.Forms.ToolStripButton cancelSemanticSystem;
+ private System.Windows.Forms.Panel panel32;
+ private System.Windows.Forms.DataGridView dataGridViewIDT;
+ private System.Windows.Forms.Panel panel33;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
+ private System.Windows.Forms.DataGridView dataGridViewPD;
+ private System.Windows.Forms.DataGridViewTextBoxColumn ReferenceID;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Attribute;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Description;
+ private System.Windows.Forms.DataGridView dataGridViewPOD;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
+ private System.Windows.Forms.TabPage tabPage16;
+ private System.Windows.Forms.DataGridView dataGridViewPPD;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
+ private System.Windows.Forms.DataGridView dataGridViewMD;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
+ private System.Windows.Forms.TreeView treeViewCH;
+ private System.Windows.Forms.ToolStrip toolStrip9;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel2;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
+ private System.Windows.Forms.ToolStripButton generaterAML;
+ private System.Windows.Forms.DataGridView dataGridViewMechData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
+ private System.Windows.Forms.DataGridView dataGridViewMaterialData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
+ private System.Windows.Forms.DataGridView dataGridViewElectricalConnection;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
+ private System.Windows.Forms.DataGridView dataGridViewElectricalData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index a7f17ee..ebcdefe 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -1,11 +1,18 @@
-using System;
+using Aml.Editor.Plugin.Properties;
+using System;
using System.Windows.Forms;
+using System.Data;
+using System.Text;
+using System.Drawing;
+using System.Collections.Generic;
+
namespace Aml.Editor.Plugin
{
public partial class CreateDevice
: UserControl
{
+
// Controller class to pass the data to
MWController mWController;
@@ -273,10 +280,7 @@ private void MenuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs
}
- private void ToolStripMenuItem1_Click(object sender, EventArgs e)
- {
- tabControl2.SelectTab(tabPage2);
- }
+
private void SensorInterfaceToolStripMenuItem_Click(object sender, EventArgs e)
{
@@ -298,14 +302,373 @@ private void ToolStripMenuItem1_Click_1(object sender, EventArgs e)
tabControl2.SelectTab(tabPage1);
}
- private void MechanicalDataToolStripMenuItem_Click_1(object sender, EventArgs e)
+
+
+ private void ElectricalDataToolStripMenuItem_Click(object sender, EventArgs e)
{
- tabControl2.SelectTab(tabPage2);
+ tabControl2.SelectTab(tabPage4);
}
- private void ElectricalDataToolStripMenuItem_Click(object sender, EventArgs e)
+ private void VScrollBar1_Scroll(object sender, ScrollEventArgs e)
+ {
+
+ }
+
+ private void MaterialToolStripMenuItem_Click(object sender, EventArgs e)
{
tabControl2.SelectTab(tabPage3);
}
+
+ private void BackBtn_Click_1(object sender, EventArgs e)
+ {
+
+ }
+
+ private void CreateDeviceBtn_Click_1(object sender, EventArgs e)
+ {
+
+ }
+
+ private void TreeView1_AfterSelect(object sender, TreeViewEventArgs e)
+ {
+ menuStrip1.Select();
+ }
+
+ private void TxtDeviceName_TextChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void ToolStrip4_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
+ {
+
+ }
+
+ private void ToolStripSplitButton1_ButtonClick(object sender, EventArgs e)
+ {
+
+ }
+
+ private void Label19_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void Label23_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
+ {
+
+ }
+
+
+
+ private void TabPage5_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void Panel4_Paint(object sender, PaintEventArgs e)
+ {
+
+ }
+
+ private void Button6_Click(object sender, EventArgs e)
+ {
+ if (panel5.Size == panel5.MaximumSize)
+ {
+ panel5.Size = panel5.MinimumSize;
+ button6.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel5.Size = panel5.MaximumSize;
+ button6.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void Button7_Click(object sender, EventArgs e)
+ {
+ if (panel7.Size == panel7.MaximumSize)
+ {
+ panel7.Size = panel7.MinimumSize;
+ button7.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel7.Size = panel7.MaximumSize;
+ button7.Image = Resources.icons8_collapse_arrow_24;
+ }
+
+ }
+
+ private void Button8_Click(object sender, EventArgs e)
+ {
+ if (panel8.Size == panel8.MaximumSize)
+ {
+ panel8.Size = panel8.MinimumSize;
+ button8.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel8.Size = panel8.MaximumSize;
+ button8.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void SplitContainer1_SplitterMoved(object sender, SplitterEventArgs e)
+ {
+
+ }
+
+ private void TextBox19_TextChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void TableLayoutPanel6_Paint(object sender, PaintEventArgs e)
+ {
+
+ }
+
+ private void Button1_Click(object sender, EventArgs e)
+ {
+ if (panel10.Size == panel10.MaximumSize)
+ {
+ panel10.Size = panel10.MinimumSize;
+ button1.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel10.Size = panel10.MaximumSize;
+ button1.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void Button10_Click(object sender, EventArgs e)
+ {
+ if (panel14.Size == panel14.MaximumSize)
+ {
+ panel14.Size = panel14.MinimumSize;
+ button10.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel14.Size = panel14.MaximumSize;
+ button10.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void Button2_Click(object sender, EventArgs e)
+ {
+ if (panel24.Size == panel24.MaximumSize)
+ {
+ panel24.Size = panel24.MinimumSize;
+ button2.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel24.Size = panel24.MaximumSize;
+ button2.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void TextBox4_TextChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void Button3_Click(object sender, EventArgs e)
+ {
+
+
+ }
+
+
+
+ private void SaveToolStripButton_Click(object sender, EventArgs e)
+ {
+ saveFileDialog1.OpenFile();
+ }
+
+ private void Panel28_Paint(object sender, PaintEventArgs e)
+ {
+
+ }
+
+ private void Button3_Click_1(object sender, EventArgs e)
+ {
+ if (panel27.Size == panel27.MaximumSize)
+ {
+ panel27.Size = panel27.MinimumSize;
+ button3.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel27.Size = panel27.MaximumSize;
+ button3.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void Button32_Click(object sender, EventArgs e)
+ {
+ if (panel28.Size == panel28.MaximumSize)
+ {
+ panel28.Size = panel28.MinimumSize;
+ button32.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel28.Size = panel28.MaximumSize;
+ button32.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+ private void Button33_Click(object sender, EventArgs e)
+ {
+ if (panel29.Size == panel29.MaximumSize)
+ {
+ panel29.Size = panel29.MinimumSize;
+ button33.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panel29.Size = panel29.MaximumSize;
+ button33.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
+
+
+
+
+ private void AddSemanticSystems_Click(object sender, EventArgs e)
+ {
+
+ if(semanticSystemCmbx.Text == "eClass")
+ {
+
+ /* Datatables productDetails = new Datatables();
+ DataTable createProductDetailsdatatable = productDetails.ThreeParametersdatatable();
+
+
+ CommercialDataDictionary productDetailsDictionary = new CommercialDataDictionary();
+ Dictionary productDetailsDictionaryParameters = productDetailsDictionary.ProductDetails();
+
+ productDetails.CreateParameter(productDetailsDictionaryParameters, createProductDetailsdatatable, dataGridViewPD);
+
+ semanticSystemdrpdwn.DropDownItems.Add(semanticSystemCmbx.Text);*/
+
+ Datatables a = new Datatables();
+ DataTable b = a.ThreeParametersdatatable();
+
+
+ DictionaryeClass n = new DictionaryeClass();
+ Dictionary IDP = n.eClassIdentificationdataParameters();
+
+ a.CreateParameter(IDP,b,dataGridViewIDT);
+
+
+ /* DataTable ProductDetailsdatatable = new DataTable();
+ ProductDetailsdatatable.Columns.Add("ReferenceID");
+ ProductDetailsdatatable.Columns.Add("Attribute");
+ ProductDetailsdatatable.Columns.Add("Value");
+ CommercialDataDictionary p = new CommercialDataDictionary();
+ Dictionary PDP = p.ProductDetails();
+
+ // Foreach loop for looping every parameters in the Dictionary
+ foreach (KeyValuePair eClassKeyValuePair in PDP)
+ {
+ Parameters par = eClassKeyValuePair.Value;
+
+ DataRow row = ProductDetailsdatatable.NewRow();
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Value"] = "";
+ ProductDetailsdatatable.Rows.Add(row);
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in ProductDetailsdatatable.Rows)
+ {
+ int num = dataGridViewPD.Rows.Add();
+ dataGridViewPD.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ dataGridViewPD.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ dataGridViewPD.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+ }*/
+
+
+
+ }
+ if (semanticSystemCmbx.Text == "IRDI")
+ {
+ semanticSystemdrpdwn.DropDownItems.Add(semanticSystemCmbx.Text);
+ Datatables a = new Datatables();
+ DataTable b = a.ThreeParametersdatatable();
+
+ DictionaryIRDI n = new DictionaryIRDI();
+ Dictionary IDP = n.IRDIIdentificationdata();
+
+ // Foreach loop for looping every parameters in the Dictionary
+ foreach (KeyValuePair eClassKeyValuePair in IDP)
+ {
+ Parameters par = eClassKeyValuePair.Value;
+
+ DataRow row = b.NewRow();
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Value"] = "";
+ b.Rows.Add(row);
+
+
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in b.Rows)
+ {
+ int num = dataGridViewIDT.Rows.Add();
+ dataGridViewIDT.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ dataGridViewIDT.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ dataGridViewIDT.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+
+ }
+ }
+ }
+
+ private void ToolStripButton3_Click(object sender, EventArgs e)
+ {
+ semanticSystemCmbx.Text = "";
+ classificationSystemTextBox.Text = "";
+ versionTextBox.Text = "";
+ dataGridViewIDT.Rows.Clear();
+ dataGridViewPD.Rows.Clear();
+ dataGridViewElectricalConnection.Rows.Clear();
+ }
+
+ private void Panel32_Paint(object sender, PaintEventArgs e)
+ {
+
+ }
+
+ private void ToolStripButton6_Click(object sender, EventArgs e)
+ {
+ dataGridViewIDT.Rows.Clear();
+ }
+
+ private void SemanticSystemCmbx_Click(object sender, EventArgs e)
+ {
+
+ }
}
-}
\ No newline at end of file
+
+
+
+
+}
+
+
diff --git a/CreateDevice.resx b/CreateDevice.resx
index a14075a..453df0b 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -252,88 +252,328 @@
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
- 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
+ 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
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAa8SURBVHhe7VvdjxNVFN9EjR9PGv8AX1DpzBRETESFoBL1
- QYNgRB8wYFQwwRgToz5oVPw2kRe/EOODMSJGfTAx6osfGEk6M93uLp+C7BesrrDtdNpuu/3atuM507OB
- tqe30+3MtE34Jb+02d577vndmXvvOffeHbgAj5HSl15thOUH4rq809CVr+FzKBpSpqJ6wITPis3q9yn8
- jcpg2Y1Yl8z0F2IRZSmIeBtEHARh5biuWIsh1jU0ZTiuKW+iTTLfm7AiKy8xdGkrOKtzYtyhrGIb1v61
- F1Oz3Qc6E9Okp2K6PMk77T5jujQBHf1k1zvC1IJroqp8hHPSD8b0wKH4oHwbueMfpkKrLjd0eQ9OYJxj
- fhJ9MFTpk8n911xG7nkLnIy6+dSb0VCVkai+7Dpy0xvE9OA6aGy2vvEeYiqmyXeQu+7C0KQHYUnKM432
- FNFH9JXcdgdxPbgpqkslrkHXGF5hJQ7eA5/L+d/bIPqKgRS53xlgibsTJpoC15AbNAdXWrkzX1qV0pyF
- qMybVmb8JbZsO0Sf0XeSsTjYE15ISnINuMWC+astvB7Z6T1s+XaIvi96YpyOrLzCXmcZw24x9dcWkssj
- d3YflAs21GuHGEovaonEtZUz6CbnTr9HUpujYPwI88INbP02+BHJcgY7wvMhyEmPPU8yxSgm9ttzBWfD
- CW0tYflWkicGxte+BTrwZEtzJ0imGPOzg5YZWcXbcUAMlBzlDmZY3sEZ8IqJ4bXQCcdJphjzmWOWObSG
- teOIWnA7yeRhZ3Y+ZnULNCO3wBMeIplilHITVmLkLtZOKxqhwLjwLTD04KNcRT9oDt4EY/1PkilGOT9t
- JQ/dx9ppRTOsPEJyGxFXlTBXyTdCNFgwfiKZYpSLcSt5ZBNvR0hZJbm1MFQ5wFfwmeFlVn7mG5IpRqWU
- hlhiK29HwKgauJZknwP88FZ9wW4yO/0ZyRSjUs5bs3/vYG00pSa/TrLPATcw2cJd5NzULpRYVSpCZR5i
- ihdYGzylCMmuArefIVhY9O6tl8xMvIqPmZSKULYyk2+wNuqJ2WLyQPAqkg9P39635wv3AtOjz0InFEmo
- GNl/PmRt1DOmBe8n+Tj+5Z1coV7i7Ilt8CJkSaYYuTNfQB1xEgVJ0isk3x7/+7hCvcbUsc0w3FMkU4x8
- 9Ht7ReHsIA1N3kvyoQPw9IUptMDE8O1W7r/P7Xgcw9FuslyYIYmtUTB/gU64kdUUDwUGSf7AQFRVTrOF
- gJiAYOTVrygm/gAdjW8Caib50AGCXR+cVPod6ZPPNOiCYChB8rEDmi+BxeQBMtO/qE6KtbpwKST54g4o
- mL+Rmf5FdvrTBl11HdB8CGBw0e+YPf5Yg67aISCYBHHXxmmu3ovgXn9kzSTYahnEw4r06HO2sfzMd11l
- KTtK0loj++9uXg/y/GWwXwKhzPiLDvOCijV36h3WxgJrAqF+CIXnTr9rC2uJSsnuKM7G+awPhTdyhXqF
- +Co7Ae4NpE8+zdqoZ00y1LvpcNDKnd1L8sSolDLsbM+xIR1GtJwI/SZMvPnYDyRPjMp8wkodfZi3w/H8
- CXABeBWNLdwF4ilQwfyd5IlRLpy1kofXs3aaU36NZJ9D9W4fV9hfmpGbrWJKJ3lilHKnrMTBu1k7Is6E
- pCUkuxbwo1Zf2E+aQ6sh5T1K8sTA0yQ8VeLsiBhVpRDJbQSsjVu4Sn4wMbIOgpxxkifGfHrYPk3i7LSi
- qSubSW4jqkdj0gRX0UsmD93reM8Bs1M8ReLstCJM9GMtD0jxBiZX2SsmD2+wykWD5IlRMH6G1WEFa8cZ
- 5SdIZnNU3wJvb4YsEF9jPOJyAjwtEu3xtaJ9PP7tpotIphimKq22LxUwhtxkZnInyRMDT4k6uSqDQZ6h
- BVeRPGeA8bKbM+Ymq/G9CJDUTO1i67ZFTf6AZDlH9T6wt8dlOP7xRIcFZH14KsTVa4/yUOXkkktJVnuI
- hYPXe31Njk10KgX7NIgr3w7R96ZBj1N4fVESiWKLKc1eDfCSROroQ2y5dghDON/xRckF4NkhZlBcQ71I
- 9DWmSuvJfXfQL5elgTnc3yC33QVeRfd6TuiEuNNrhpW15K43wOslGFRwDnSTuJ/BXn3xAnj3Fhr82I9g
- qRXtnSxNen/RS10nwOunXscKIuJTbzvCcxuYO8R1aZufWSQIH4PU/fGWmZ2fQGfwEiJuOHBOu0G0jW30
- lHAO+E8KuO+Gt7E6iR/suqHAINrqOKLrFnD7OaYpG2CueNlQ5a+qnaKcon+YLtvE7/A3FItlsCzu2ydG
- ll9JZi7AGwwM/A88Eq1/MQwdqAAAAABJRU5ErkJggg==
+ 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
755, 20
-
+
+ 17, 98
+
+
+ 1043, 59
+
+
+ 833, 59
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 728, 59
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
True
-
+
True
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 623, 59
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ 1155, 59
+
+
+ 518, 59
+
+
+ 413, 59
+
870, 20
1102, 20
+
+ 122, 59
+
+
+ 277, 59
+
- 141
+ 72
\ No newline at end of file
diff --git a/Datatables.cs b/Datatables.cs
new file mode 100644
index 0000000..d43f30b
--- /dev/null
+++ b/Datatables.cs
@@ -0,0 +1,69 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using System.Data;
+
+namespace Aml.Editor.Plugin
+{
+ class Datatables
+ {
+ /* public Dictionary DictName { get; set; }
+ public DataTable DataRowName { get; set; }
+ public DataGridView DataGridViewName { get; set; }*/
+ /*public Datatables()
+ {
+
+ }
+ public Datatables(string dictName, string dataRowName)
+ : this()
+ {
+ this.DictName = dictName;
+ this.DictName = dataRowName;
+ }*/
+ public DataTable ThreeParametersdatatable( )
+ {
+ DataTable threeParametersdatatable = new DataTable();
+ threeParametersdatatable.Columns.Add("ReferenceID");
+ threeParametersdatatable.Columns.Add("Attribute");
+ threeParametersdatatable.Columns.Add("Value");
+
+ return threeParametersdatatable;
+
+ }
+ // method to iterate
+ public void CreateParameter(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
+ {
+ Dictionary DictName = dictName;
+ DataTable DataRowName = dataRowName;
+ DataGridView DataGridViewName = dataGridViewName;
+ foreach (KeyValuePair eClassKeyValuePair in DictName)
+ {
+ Parameters par = eClassKeyValuePair.Value;
+
+ DataRow row = DataRowName.NewRow();
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Value"] = "";
+ DataRowName.Rows.Add(row);
+
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in DataRowName.Rows)
+ {
+ int num = DataGridViewName.Rows.Add();
+ DataGridViewName.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ DataGridViewName.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+ }
+ }
+
+
+
+
+ }
+}
diff --git a/Dictionary.cs b/Dictionary.cs
new file mode 100644
index 0000000..b1b3f03
--- /dev/null
+++ b/Dictionary.cs
@@ -0,0 +1,143 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Aml.Editor.Plugin
+{
+ public class Parameters
+ {
+ public int ID { get; set; }
+ public string Parameter { get; set; }
+ public string RefSemanticPrefix { get; set; }
+
+
+ }
+
+ public class CommercialDataDictionary
+ {
+ public Dictionary ProductDetails()
+ {
+ Parameters ProductDetails1 = new Parameters() { ID = 001, Parameter = "Description Short", RefSemanticPrefix = "" };
+ Parameters ProductDetails2 = new Parameters() { ID = 002, Parameter = "Manufacturer PID", RefSemanticPrefix = "" };
+ Parameters ProductDetails3 = new Parameters() { ID = 003, Parameter = "International PID", RefSemanticPrefix = "" };
+ Parameters ProductDetails4 = new Parameters() { ID = 004, Parameter = "Description Long", RefSemanticPrefix = "" };
+ Parameters ProductDetails5 = new Parameters() { ID = 005, Parameter = "Special Treaatment Class", RefSemanticPrefix = "" };
+ Parameters ProductDetails6 = new Parameters() { ID = 006, Parameter = "Keyword", RefSemanticPrefix = "" };
+ Parameters ProductDetails7 = new Parameters() { ID = 007, Parameter = "Remarks", RefSemanticPrefix = "" };
+
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary ProductDetailsdataParameters = new Dictionary();
+ ProductDetailsdataParameters.Add(ProductDetails1.ID, ProductDetails1);
+ ProductDetailsdataParameters.Add(ProductDetails2.ID, ProductDetails2);
+ ProductDetailsdataParameters.Add(ProductDetails3.ID, ProductDetails3);
+ ProductDetailsdataParameters.Add(ProductDetails4.ID, ProductDetails4);
+ ProductDetailsdataParameters.Add(ProductDetails5.ID, ProductDetails5);
+ ProductDetailsdataParameters.Add(ProductDetails6.ID, ProductDetails6);
+ ProductDetailsdataParameters.Add(ProductDetails7.ID, ProductDetails7);
+
+ return ProductDetailsdataParameters;
+
+ }
+ }
+ public class DictionaryeClass
+ {
+
+ public Dictionary eClassIdentificationdataParameters()
+ {
+ Parameters Identificationdata1 = new Parameters() { ID = 001, Parameter = "GTIN(Global Trade Item Number)", RefSemanticPrefix = "0173-1#02-AA0663#003" };
+ Parameters Identificationdata2 = new Parameters() { ID = 002, Parameter = "Manufacturer Name", RefSemanticPrefix = "0173-1#02-AAO677#002" };
+ Parameters Identificationdata3 = new Parameters() { ID = 003, Parameter = "Manufacturer Product Number", RefSemanticPrefix = "0173-1#02-AAO676#003" };
+ Parameters Identificationdata4 = new Parameters() { ID = 004, Parameter = "Product Family", RefSemanticPrefix = "0173-1#02-AAU731#001" };
+ Parameters Identificationdata5 = new Parameters() { ID = 005, Parameter = "Product Name", RefSemanticPrefix = "0173-1#02-AAW338#001" };
+ Parameters Identificationdata6 = new Parameters() { ID = 006, Parameter = "Supplier Name", RefSemanticPrefix = "0173-1#02-AAO735#003" };
+ Parameters Identificationdata7 = new Parameters() { ID = 007, Parameter = "Product Online Information URL", RefSemanticPrefix = "0173-1#02-AAQ326#002" };
+ Parameters Identificationdata8 = new Parameters() { ID = 008, Parameter = "Customs Tariff Number", RefSemanticPrefix = "0173-1#02-AAQ326#002" };
+ Parameters Identificationdata9 = new Parameters() { ID = 009, Parameter = "Supplier Product Number", RefSemanticPrefix = "0173-1#02-AAO736#004" };
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary IdentificationdataParameters = new Dictionary();
+ IdentificationdataParameters.Add(Identificationdata1.ID, Identificationdata1);
+ IdentificationdataParameters.Add(Identificationdata2.ID, Identificationdata2);
+ IdentificationdataParameters.Add(Identificationdata3.ID, Identificationdata3);
+ IdentificationdataParameters.Add(Identificationdata4.ID, Identificationdata4);
+ IdentificationdataParameters.Add(Identificationdata5.ID, Identificationdata5);
+ IdentificationdataParameters.Add(Identificationdata6.ID, Identificationdata6);
+ IdentificationdataParameters.Add(Identificationdata7.ID, Identificationdata7);
+ IdentificationdataParameters.Add(Identificationdata8.ID, Identificationdata8);
+ IdentificationdataParameters.Add(Identificationdata9.ID, Identificationdata9);
+
+ return IdentificationdataParameters;
+ }
+
+
+
+ }
+ public class DictionaryIRDI
+ {
+ public Dictionary IRDIIdentificationdata()
+ {
+ Parameters IRDIIdentificationdata1 = new Parameters() { ID = 001, Parameter = "GTIN(Global Trade Item Number)", RefSemanticPrefix = "0112/2///62683#ACE101" };
+ Parameters IRDIIdentificationdata2 = new Parameters() { ID = 002, Parameter = "Manufacturer Name", RefSemanticPrefix = "0112/2///62683#ACE102" };
+ Parameters IRDIIdentificationdata3 = new Parameters() { ID = 003, Parameter = "Manufacturer Product Number", RefSemanticPrefix = "0112/2///62683#ACE103" };
+ Parameters IRDIIdentificationdata4 = new Parameters() { ID = 004, Parameter = "Product Family", RefSemanticPrefix = "0112/2///62683#ACE104" };
+ Parameters IRDIIdentificationdata5 = new Parameters() { ID = 005, Parameter = "Product Name", RefSemanticPrefix = "0112/2///62683#ACE105" };
+ Parameters IRDIIdentificationdata6 = new Parameters() { ID = 006, Parameter = "Supplier Name", RefSemanticPrefix = "0112/2///62683#ACE106" };
+ Parameters IRDIIdentificationdata7 = new Parameters() { ID = 007, Parameter = "Product Online Information URL", RefSemanticPrefix = "0112/2///62683#ACE108" };
+ Parameters IRDIIdentificationdata8 = new Parameters() { ID = 008, Parameter = "Customs Tariff Number", RefSemanticPrefix = "0112/2///62683#ACE109" };
+ Parameters IRDIIdentificationdata9 = new Parameters() { ID = 009, Parameter = "Supplier Product Number", RefSemanticPrefix = "0112/2///62683#ACE107" };
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary IRDIIdentificationdataParameters = new Dictionary();
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata1.ID, IRDIIdentificationdata1);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata2.ID, IRDIIdentificationdata2);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata3.ID, IRDIIdentificationdata3);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata4.ID, IRDIIdentificationdata4);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata5.ID, IRDIIdentificationdata5);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata6.ID, IRDIIdentificationdata6);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata7.ID, IRDIIdentificationdata7);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata8.ID, IRDIIdentificationdata8);
+ IRDIIdentificationdataParameters.Add(IRDIIdentificationdata9.ID, IRDIIdentificationdata9);
+
+
+ return IRDIIdentificationdataParameters;
+ }
+ public Dictionary IRDIMechanicalData()
+ {
+ Parameters IRDIMechanicalData1 = new Parameters() { ID = 001, Parameter = "Width of the device", RefSemanticPrefix = "0112/2///62683#ACE802" };
+ Parameters IRDIMechanicalData2 = new Parameters() { ID = 002, Parameter = "Height of the device", RefSemanticPrefix = "0112/2///62683#ACE801" };
+ Parameters IRDIMechanicalData3 = new Parameters() { ID = 003, Parameter = "Length of the device", RefSemanticPrefix = "0112/2///62683#ACE803" };
+ Parameters IRDIMechanicalData4 = new Parameters() { ID = 004, Parameter = "Diameter of the device", RefSemanticPrefix = "0112/2///62683#ACE810" };
+ Parameters IRDIMechanicalData5 = new Parameters() { ID = 005, Parameter = "Mounting position of the sensor", RefSemanticPrefix = "0112/2///62683#ACE811" };
+ Parameters IRDIMechanicalData6 = new Parameters() { ID = 005, Parameter = "Housing construction", RefSemanticPrefix = "0112/2///62683#ACE813" };
+
+ Dictionary IRDIMechanicalDataParameters = new Dictionary();
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData1.ID, IRDIMechanicalData1);
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData2.ID, IRDIMechanicalData2);
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData3.ID, IRDIMechanicalData3);
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData4.ID, IRDIMechanicalData4);
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData5.ID, IRDIMechanicalData5);
+ IRDIMechanicalDataParameters.Add(IRDIMechanicalData6.ID, IRDIMechanicalData6);
+
+ return IRDIMechanicalDataParameters;
+ }
+ public Dictionary IRDIMaterialData()
+ {
+ Parameters IRDIMaterialData1 = new Parameters() { ID = 001, Parameter = "Housing or Body material", RefSemanticPrefix = "0112/2///62683#ACE260" };
+ Parameters IRDIMaterialData2 = new Parameters() { ID = 002, Parameter = "Sensing face material", RefSemanticPrefix = "0112/2///62683#ACE261" };
+ Parameters IRDIMaterialData3 = new Parameters() { ID = 003, Parameter = "Surface Protection", RefSemanticPrefix = "" };
+
+ Dictionary IRDIMaterialDataParameters = new Dictionary();
+ IRDIMaterialDataParameters.Add(IRDIMaterialData1.ID, IRDIMaterialData1);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData2.ID, IRDIMaterialData2);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData3.ID, IRDIMaterialData3);
+
+ return IRDIMaterialDataParameters;
+ }
+
+ }
+
+
+}
diff --git a/MWController.cs b/MWController.cs
index a1130e7..aa6f5d6 100644
--- a/MWController.cs
+++ b/MWController.cs
@@ -12,6 +12,7 @@ public class MWController
private CreateDevice createDeviceForm;
private CreateInterface createInterfaceForm;
private StartGUI startGUI;
+
// the interface class to the AML Editor
private ModellingWizard modellingWizard;
@@ -75,6 +76,7 @@ public StartGUI GetStartGUI()
return startGUI;
}
+
// OnClickFunktion für CreateDevice
@@ -217,13 +219,15 @@ public void ChangeGui(MWGUIType targetGUI)
case MWGUIType.Start:
modellingWizard.changeGUI(GetStartGUI());
break;
+
+
}
}
///
/// Enum to represent the GUI
///
- public enum MWGUIType { CreateDevice, CreateInterface, Start }
+ public enum MWGUIType { CreateDevice, CreateInterface, Start, StartGUI02 }
///
/// Call the Converter with the given file
diff --git a/ModellingWizard.csproj b/ModellingWizard.csproj
index e24a4bd..840c91b 100644
--- a/ModellingWizard.csproj
+++ b/ModellingWizard.csproj
@@ -99,6 +99,8 @@
About.xaml
+
+
True
True
@@ -162,6 +164,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ModellingWizard.csproj.user b/ModellingWizard.csproj.user
new file mode 100644
index 0000000..6ea09b3
--- /dev/null
+++ b/ModellingWizard.csproj.user
@@ -0,0 +1,12 @@
+
+
+
+ Program
+ C:\Program Files\AutomationML\AutomationML Editor\AMLEditor.exe
+ G:\Master thesis\ModellingWizard\Plugins\ModellingWizard\
+
+
+ Program
+ C:\Program Files\AutomationML\AutomationML Editor\AMLEditor.exe
+
+
\ No newline at end of file
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
index 1a92998..e491906 100644
--- a/Properties/Resources.Designer.cs
+++ b/Properties/Resources.Designer.cs
@@ -59,5 +59,125 @@ internal Resources() {
resourceCulture = value;
}
}
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_abo_kündigen_16 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-abo-kündigen-16", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_collapse_arrow_24 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-collapse-arrow-24", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_datei_hinzufügen_16 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-datei-hinzufügen-16", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_datei_hinzufügen_161 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-datei-hinzufügen-161", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_dateiuntermodul_16 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-dateiuntermodul-16", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_dateiuntermodul_16__1_ {
+ get {
+ object obj = ResourceManager.GetObject("icons8-dateiuntermodul-16 (1)", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_dienstleistungen_26__1_ {
+ get {
+ object obj = ResourceManager.GetObject("icons8-dienstleistungen-26 (1)", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_eingekreist_links_2_32 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-eingekreist-links-2-32", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_expand_arrow_24 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-expand-arrow-24", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_expand_arrow_30 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-expand-arrow-30", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_liste_hinzufügen_26 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-liste-hinzufügen-26", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_stornieren_16 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-stornieren-16", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
}
}
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
index 1af7de1..67c4a75 100644
--- a/Properties/Resources.resx
+++ b/Properties/Resources.resx
@@ -117,4 +117,41 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ..\Resources\icons8-expand-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-collapse-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-dateiuntermodul-16 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-expand-arrow-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-dienstleistungen-26 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-liste-hinzufügen-26.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-datei-hinzufügen-161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-dateiuntermodul-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-stornieren-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-eingekreist-links-2-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-datei-hinzufügen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-abo-kündigen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git "a/Resources/icons8-abo-k\303\274ndigen-16.png" "b/Resources/icons8-abo-k\303\274ndigen-16.png"
new file mode 100644
index 0000000000000000000000000000000000000000..e95caecd8d45da909871f325a09a47141e0aa019
GIT binary patch
literal 350
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}X@F0Nt9yYDkV$7y_J30W&`PzE
zAirRSyX9MMJF&66wAHQ9`N_FY`-hg-{zs4Ru%AEn%Hg=p)ptjKZK^u>E4qIZP)Cuc
zi(`ny<=*~qt^*DnF22#1tKa|q=YGa3f>Tjm&@sJ&nd`%1ztEgL&!!i$TYOdUQ%iY&
za@AQy;fkD<9g8_X9f!c&h
zg8YIRk
literal 0
HcmV?d00001
diff --git "a/Resources/icons8-datei-hinzuf\303\274gen-16.png" "b/Resources/icons8-datei-hinzuf\303\274gen-16.png"
new file mode 100644
index 0000000000000000000000000000000000000000..eb654f5f250154717b821e09d30d461fd8369814
GIT binary patch
literal 351
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}QGic~t9yYDkV#Llg>_de&_30Y
zAirP+Hiz=toA3T)`Bk-rQ@27#dy`f>Z!5pkE1Ra5`+poc_-)1EJM6AerfonC<(@8%
zArhB+`%m&UDDb#Ay1wfAy-)l9|86H49l(N>`CLfwxXAZoip!>m6fx=
pPBo_*1INi3Ouq$|sDF=9FkcqN{;|$}!7)%6dAj_de&_30Y
zAirP+Hiz=toA3T)`Bk-rQ@27#dy`f>Z!5pkE1Ra5`+poc_-)1EJM6AerfonC<(@8%
zArhB+`%m&UDDb#Ay1wfAy-)l9|86H49l(N>`CLfwxXAZoip!>m6fx=
pPBo_*1INi3Ouq$|sDF=9FkcqN{;|$}!7)%6dAj$EDD
z+Z$59o@>3jCV5%A-}WgXZ;v;8dd0&ARLoKm6
zxOh6pVbd)EjHfun3mKUdn0cHgNb2bYEAnh#Bi13c-9*7dvG*YpYe6^z!}?c>7auYH
RvI3gG;OXk;vd$@?2>==3H@W}-
literal 0
HcmV?d00001
diff --git a/Resources/icons8-dateiuntermodul-16.png b/Resources/icons8-dateiuntermodul-16.png
new file mode 100644
index 0000000000000000000000000000000000000000..323c5adb882ddc7da6a8e5f664caa266d8408005
GIT binary patch
literal 172
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnYbuaK)(BwI@#$`sW>$EDD
z+Z$59o@>3jCV5%A-}WgXZ;v;8dd0&ARLoKm6
zxOh6pVbd)EjHfun3mKUdn0cHgNb2bYEAnh#Bi13c-9*7dvG*YpYe6^z!}?c>7auYH
RvI3gG;OXk;vd$@?2>==3H@W}-
literal 0
HcmV?d00001
diff --git a/Resources/icons8-dienstleistungen-26 (1).png b/Resources/icons8-dienstleistungen-26 (1).png
new file mode 100644
index 0000000000000000000000000000000000000000..3bf114772f9a4bef8c7014b3afcfb70321f99fd6
GIT binary patch
literal 860
zcmeAS@N?(olHy`uVBq!ia0vp^QXtI13?%1G+4F~ifiXV7C&bmgzy~NY3TPAp*TQct
z02*CV666=m@R5J|qTfP{4*z%--rmOg>5Jd{hz}XL-LJD#7te8Tp4G=YZK=(ly~|Hu
zK6|}>a&O4HD_i#;`5rDg|JxmjhqBCT^B=tOw~A{zdWy~S^Ixe(!-G9{Z<(x!d275R
zr`07%H}hrtgq3f8rMErz_UY(~x1FNeKToOR&hb~ksJ8HQaSYKopF4@Q_>hA@D?f+f
zlA{ZET)DgV%H6wnWAFW+pV#-Y#e1{y&h4M~t#Ogq?6Oj0^Pc5LavpKtw`Uc36Cm5O
z$)x6`}22}3#y(h-EVXJ&JtI_r@;qAUur*?s4IKE(d4A?hfKvy>?bDJG05-g
z$jdkut5%zIX41bi$JXg4AAWs8_x=Z?iJ`o=J*SJ$o~m=|V&u{UJGp=>RV?K<>we5w
zI>FXQ>G;VgdxK;7ciH&9TvncYvN~&NmQY&Dk*$ABpO|{yEqNCqm)5q2BiT#(rJJcl
z)EZW)9-mCML$zPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0su)wK~z{r?Uy%B
z1ThqbN2CUkS`ZznBpm>800dlxbO1t$NF@laK|BVbg&GP(s0jb(-6svB^^9j`(So$U
z^hvh&`Pt+2-bPLRH;sxlaUpKROBKrJVpWWYx@%foiLXGI;Djixc5xs+1&*J@p_mh_
zMrReu^WsQggDrjbMVlz3K4D+|DmFy7$Wo8M_Fd5Tvf7qQ9fFQHxEDp1b5cAAn?$P!
z)}Ejv4*F>*r~zS<*rg#v960vxO{9H!ix{gEQ#B>z}eu~aX4p1mNWb1^t#?%_EiwBkpuk
zWd=u!g1%?2=Fy$NDEXY09US44{34
zRwD!+o4TasNs&zOSh1}3$Aq{2S}-WFJ~iQJ>W?Xkz5%Cw%8BD8ia-DW002ovPDHLk
FV1m_I42b{$
literal 0
HcmV?d00001
diff --git a/Resources/icons8-expand-arrow-24.png b/Resources/icons8-expand-arrow-24.png
new file mode 100644
index 0000000000000000000000000000000000000000..e5204e241051fc78795e5125bb129cfc2d07a884
GIT binary patch
literal 254
zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM3?#3wJbMaAc?9@`xVjhk0GX5n&o;HoKvTp^
zg8YIReyn3=Ene%___HtXpHy?Wv?Y^inRlga>H>A35Um3k_DF;PbJJ`Tz0L+;pe*L2c~>F
z$YgLfMVW2s(S?sVc|5ohE*Y>EWOgvMn7A-bGVyQ}oMduA)o`J^?1Z~7s?=DHp4Hhc
dE5WA9z##oZ=-)g(p+z9KdAjPZ!4!jq_6{T^DLH5OEQow7|t-$*t<^zyI%7*S&IP#qSA{MKgA%Pilxi
zXTo7@$uN0~q4ALu#}yPe=BPHQ9epQmqRtqhJk^ssaO;XK6BbA&TuHh0e$#QSZ~0PT
z_x@~en`j;`)qnjn@11cs<=d#Wzp$P!icZ`+*
literal 0
HcmV?d00001
diff --git a/Resources/icons8-stornieren-16.png b/Resources/icons8-stornieren-16.png
new file mode 100644
index 0000000000000000000000000000000000000000..f76c33cbd41cf40eb5d80467f6c96661dc1e0e0f
GIT binary patch
literal 423
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbMf%mAMdSN8&+lWuOuU0fdL7GuU~(zS@Uz{%1`a>KbJ56xq9{U($a5zeV^Le
zo|Tk5D=q!CcklPUzW@LJ{W@^q_x}CA4<7v5+k5wwr5DhV3MD~)!3>Ij{(Mk+&-D4v
z`|CF&4@CXFbtC+9#5;vU2jB18yKm3$bCaHX0M*X*ba4!kxE$)w&e!a~WBmBRjnvZq
zEw*Lf|I1&u*64`pQi}F_#Lys{>vNZfS(-WGjCNpm*YBJMw^?}$Vtju-p6IPQF<4Mt
z%j@K+CXLgLrLHBm@xK=3vCn9l@+oLe3+s!mv-a8ETUF~f`SDF_sh1qjt#2s{oLP6L
zQmgpKxhaP~gj7B2>)IIe_2yQU?Ag0s?pXeJ-{#NFOQV06{P`vyzs5~u?~AKaYk&@A
N@O1TaS?83{1OOJL&$9pk
literal 0
HcmV?d00001
diff --git a/StartGUI.Designer.cs b/StartGUI.Designer.cs
index a716024..91eb1c9 100644
--- a/StartGUI.Designer.cs
+++ b/StartGUI.Designer.cs
@@ -38,24 +38,26 @@ private void InitializeComponent()
this.importGSDFileBtn = new System.Windows.Forms.Button();
this.editFileBtn = new System.Windows.Forms.Button();
this.openEditDialog = new System.Windows.Forms.OpenFileDialog();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.panel1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
- this.label1.Location = new System.Drawing.Point(172, 0);
+ this.label1.Location = new System.Drawing.Point(30, 38);
this.label1.Name = "label1";
- this.label1.Padding = new System.Windows.Forms.Padding(0, 50, 0, 0);
this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.label1.Size = new System.Drawing.Size(240, 70);
+ this.label1.Size = new System.Drawing.Size(240, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Modelling Wizard for Devices";
+ this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// createDeviceBtn
//
this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createDeviceBtn.Location = new System.Drawing.Point(200, 137);
+ this.createDeviceBtn.Location = new System.Drawing.Point(73, 111);
this.createDeviceBtn.Name = "createDeviceBtn";
this.createDeviceBtn.Size = new System.Drawing.Size(151, 23);
this.createDeviceBtn.TabIndex = 1;
@@ -71,7 +73,7 @@ private void InitializeComponent()
// createInterfaceBtn
//
this.createInterfaceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createInterfaceBtn.Location = new System.Drawing.Point(200, 178);
+ this.createInterfaceBtn.Location = new System.Drawing.Point(73, 152);
this.createInterfaceBtn.Name = "createInterfaceBtn";
this.createInterfaceBtn.Size = new System.Drawing.Size(151, 23);
this.createInterfaceBtn.TabIndex = 2;
@@ -82,7 +84,7 @@ private void InitializeComponent()
// importIODDFileBtn
//
this.importIODDFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.importIODDFileBtn.Location = new System.Drawing.Point(200, 266);
+ this.importIODDFileBtn.Location = new System.Drawing.Point(73, 240);
this.importIODDFileBtn.Name = "importIODDFileBtn";
this.importIODDFileBtn.Size = new System.Drawing.Size(151, 23);
this.importIODDFileBtn.TabIndex = 3;
@@ -97,7 +99,7 @@ private void InitializeComponent()
this.devicesComboBox.FormattingEnabled = true;
this.devicesComboBox.Items.AddRange(new object[] {
""});
- this.devicesComboBox.Location = new System.Drawing.Point(200, 398);
+ this.devicesComboBox.Location = new System.Drawing.Point(73, 372);
this.devicesComboBox.Name = "devicesComboBox";
this.devicesComboBox.Size = new System.Drawing.Size(151, 21);
this.devicesComboBox.TabIndex = 5;
@@ -106,7 +108,7 @@ private void InitializeComponent()
// label2
//
this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(197, 379);
+ this.label2.Location = new System.Drawing.Point(70, 353);
this.label2.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(153, 13);
@@ -116,7 +118,7 @@ private void InitializeComponent()
// importGSDFileBtn
//
this.importGSDFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.importGSDFileBtn.Location = new System.Drawing.Point(200, 295);
+ this.importGSDFileBtn.Location = new System.Drawing.Point(73, 269);
this.importGSDFileBtn.Name = "importGSDFileBtn";
this.importGSDFileBtn.Size = new System.Drawing.Size(151, 23);
this.importGSDFileBtn.TabIndex = 4;
@@ -127,7 +129,7 @@ private void InitializeComponent()
// editFileBtn
//
this.editFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.editFileBtn.Location = new System.Drawing.Point(199, 442);
+ this.editFileBtn.Location = new System.Drawing.Point(72, 416);
this.editFileBtn.Name = "editFileBtn";
this.editFileBtn.Size = new System.Drawing.Size(151, 23);
this.editFileBtn.TabIndex = 7;
@@ -141,24 +143,34 @@ private void InitializeComponent()
this.openEditDialog.Filter = "AMLX File (*.amlx)|*.amlx";
this.openEditDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openEditDialog_FileOk);
//
+ // panel1
+ //
+ this.panel1.Controls.Add(this.createDeviceBtn);
+ this.panel1.Controls.Add(this.label1);
+ this.panel1.Controls.Add(this.editFileBtn);
+ this.panel1.Controls.Add(this.createInterfaceBtn);
+ this.panel1.Controls.Add(this.importGSDFileBtn);
+ this.panel1.Controls.Add(this.importIODDFileBtn);
+ this.panel1.Controls.Add(this.label2);
+ this.panel1.Controls.Add(this.devicesComboBox);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(300, 554);
+ this.panel1.TabIndex = 8;
+ //
// StartGUI
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
- this.Controls.Add(this.editFileBtn);
- this.Controls.Add(this.importGSDFileBtn);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.devicesComboBox);
- this.Controls.Add(this.importIODDFileBtn);
- this.Controls.Add(this.createInterfaceBtn);
- this.Controls.Add(this.createDeviceBtn);
- this.Controls.Add(this.label1);
+ this.Controls.Add(this.panel1);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "StartGUI";
- this.Size = new System.Drawing.Size(556, 554);
+ this.Size = new System.Drawing.Size(304, 554);
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
this.ResumeLayout(false);
- this.PerformLayout();
}
@@ -173,5 +185,6 @@ private void InitializeComponent()
private System.Windows.Forms.Button importGSDFileBtn;
private System.Windows.Forms.Button editFileBtn;
private System.Windows.Forms.OpenFileDialog openEditDialog;
+ private System.Windows.Forms.Panel panel1;
}
}
diff --git a/StartGUI.cs b/StartGUI.cs
index 72707cd..2893766 100644
--- a/StartGUI.cs
+++ b/StartGUI.cs
@@ -104,5 +104,10 @@ private void editFileBtn_Click(object sender, EventArgs e)
{
openEditDialog.ShowDialog();
}
+
+ private void Button1_Click(object sender, EventArgs e)
+ {
+
+ }
}
}
\ No newline at end of file
From 9072a28c8f2737429279fe12b412579b08f01aa2 Mon Sep 17 00:00:00 2001
From: Rajkumarpulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Tue, 13 Aug 2019 10:37:07 +0200
Subject: [PATCH 04/34] Dimensional Data for Electrial Connectors Datatables
Updated in "Electrical Interface"
---
AnimationClass.cs | 27 +
CreateDevice.Designer.cs | 2855 ++++++++++-------
CreateDevice.cs | 383 ++-
CreateDevice.resx | 904 ++++--
Datatables.cs | 140 +-
Dictionary.cs | 235 +-
ModellingWizard.csproj | 5 +
Properties/Resources.Designer.cs | 40 +
Properties/Resources.resx | 46 +-
...icons8-datenbank-hinzuf\303\274gen-30.png" | Bin 0 -> 440 bytes
"Resources/icons8-l\303\266schen-26.png" | Bin 0 -> 330 bytes
Resources/icons8-plus-2-24.png | Bin 0 -> 224 bytes
Resources/icons8-plus-mathe-30.png | Bin 0 -> 152 bytes
13 files changed, 2986 insertions(+), 1649 deletions(-)
create mode 100644 "Resources/icons8-datenbank-hinzuf\303\274gen-30.png"
create mode 100644 "Resources/icons8-l\303\266schen-26.png"
create mode 100644 Resources/icons8-plus-2-24.png
create mode 100644 Resources/icons8-plus-mathe-30.png
diff --git a/AnimationClass.cs b/AnimationClass.cs
index 787fab9..b98bff0 100644
--- a/AnimationClass.cs
+++ b/AnimationClass.cs
@@ -3,10 +3,37 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using System.Windows.Forms;
+using Aml.Editor.Plugin.Properties;
namespace Aml.Editor.Plugin
{
class AnimationClass
{
+ public Panel PanelNumber { get; set; }
+ public Button ButtonNumber { get; set; }
+
+ public AnimationClass()
+ {
+
+ }
+ // Method for window size maximum nd minimum
+ public void WindowSizeChanger(Panel panelNumber,Button buttonNumber)
+ {
+ PanelNumber = panelNumber;
+ ButtonNumber = buttonNumber;
+ if (panelNumber.Size == panelNumber.MaximumSize)
+ {
+ panelNumber.Size = panelNumber.MinimumSize;
+ buttonNumber.Image = Resources.icons8_expand_arrow_24;
+ }
+ else
+ {
+ panelNumber.Size = panelNumber.MaximumSize;
+ buttonNumber.Image = Resources.icons8_collapse_arrow_24;
+ }
+ }
+
}
+
}
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index aa62e5f..649a716 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -29,44 +29,34 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
+ System.Windows.Forms.TreeNode treeNode25 = new System.Windows.Forms.TreeNode("Node10");
+ System.Windows.Forms.TreeNode treeNode26 = new System.Windows.Forms.TreeNode("Node11");
+ System.Windows.Forms.TreeNode treeNode27 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
+ treeNode25,
+ treeNode26});
+ System.Windows.Forms.TreeNode treeNode28 = new System.Windows.Forms.TreeNode("Node7");
+ System.Windows.Forms.TreeNode treeNode29 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
+ treeNode27,
+ treeNode28});
+ System.Windows.Forms.TreeNode treeNode30 = new System.Windows.Forms.TreeNode("Node8");
+ System.Windows.Forms.TreeNode treeNode31 = new System.Windows.Forms.TreeNode("Node9");
+ System.Windows.Forms.TreeNode treeNode32 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
+ treeNode30,
+ treeNode31});
+ System.Windows.Forms.TreeNode treeNode33 = new System.Windows.Forms.TreeNode("Node2");
+ System.Windows.Forms.TreeNode treeNode34 = new System.Windows.Forms.TreeNode("Node3");
+ System.Windows.Forms.TreeNode treeNode35 = new System.Windows.Forms.TreeNode("Node4");
+ System.Windows.Forms.TreeNode treeNode36 = new System.Windows.Forms.TreeNode("Node5");
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDevice));
- System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node10");
- System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node11");
- System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
- treeNode1,
- treeNode2});
- System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node7");
- System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
- treeNode3,
- treeNode4});
- System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node8");
- System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node9");
- System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
- treeNode6,
- treeNode7});
- System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node2");
- System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Node3");
- System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Node4");
- System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Node5");
this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
this.openDevicePictureDialog = new System.Windows.Forms.OpenFileDialog();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
- this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
- this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
- this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.automationComponentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.accessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@@ -206,43 +196,81 @@ private void InitializeComponent()
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.panel4 = new System.Windows.Forms.Panel();
- this.panel24 = new System.Windows.Forms.Panel();
- this.button2 = new System.Windows.Forms.Button();
- this.panel8 = new System.Windows.Forms.Panel();
- this.panel22 = new System.Windows.Forms.Panel();
- this.button26 = new System.Windows.Forms.Button();
- this.button27 = new System.Windows.Forms.Button();
- this.button28 = new System.Windows.Forms.Button();
- this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
- this.label47 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.panel7 = new System.Windows.Forms.Panel();
- this.panel21 = new System.Windows.Forms.Panel();
- this.button23 = new System.Windows.Forms.Button();
- this.button24 = new System.Windows.Forms.Button();
- this.button25 = new System.Windows.Forms.Button();
- this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
- this.button7 = new System.Windows.Forms.Button();
this.panel5 = new System.Windows.Forms.Panel();
+ this.tabControl1 = new System.Windows.Forms.TabControl();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.dataGridViewPinInfo = new System.Windows.Forms.DataGridView();
+ this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip18 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel17 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator30 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel18 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator32 = new System.Windows.Forms.ToolStripSeparator();
+ this.pinNumberTxtBx = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator31 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator33 = new System.Windows.Forms.ToolStripSeparator();
this.panel20 = new System.Windows.Forms.Panel();
- this.button20 = new System.Windows.Forms.Button();
- this.button21 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
- this.label44 = new System.Windows.Forms.Label();
- this.textBox18 = new System.Windows.Forms.TextBox();
- this.label43 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.textBox17 = new System.Windows.Forms.TextBox();
- this.label41 = new System.Windows.Forms.Label();
- this.label40 = new System.Windows.Forms.Label();
- this.textBox16 = new System.Windows.Forms.TextBox();
- this.comboBox3 = new System.Windows.Forms.ComboBox();
+ this.panel21 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIElectricalData = new System.Windows.Forms.DataGridView();
+ this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip17 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel16 = new System.Windows.Forms.ToolStripLabel();
+ this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.panel7 = new System.Windows.Forms.Panel();
+ this.panel8 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIConnectorDimensions = new System.Windows.Forms.DataGridView();
+ this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip16 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel15 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator28 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel20 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator35 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator39 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator40 = new System.Windows.Forms.ToolStripSeparator();
this.panel6 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
- this.label45 = new System.Windows.Forms.Label();
- this.label46 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
+ this.dataGridViewIRDIMountingData = new System.Windows.Forms.DataGridView();
+ this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip15 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator24 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorStyleCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel14 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator();
+ this.mountingCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator36 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorVersion = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorVersionCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator37 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator38 = new System.Windows.Forms.ToolStripSeparator();
+ this.tabPage18 = new System.Windows.Forms.TabPage();
+ this.tabPage19 = new System.Windows.Forms.TabPage();
+ this.tabPage20 = new System.Windows.Forms.TabPage();
+ this.toolStrip13 = new System.Windows.Forms.ToolStrip();
+ this.interfaceNumberdrpdwn = new System.Windows.Forms.ToolStripDropDownButton();
+ this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
+ this.interfacesNumberTxtbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.panel9 = new System.Windows.Forms.Panel();
this.panel14 = new System.Windows.Forms.Panel();
@@ -255,15 +283,11 @@ private void InitializeComponent()
this.label52 = new System.Windows.Forms.Label();
this.label51 = new System.Windows.Forms.Label();
this.panel15 = new System.Windows.Forms.Panel();
- this.button11 = new System.Windows.Forms.Button();
this.textBox22 = new System.Windows.Forms.TextBox();
this.panel16 = new System.Windows.Forms.Panel();
- this.button12 = new System.Windows.Forms.Button();
this.textBox23 = new System.Windows.Forms.TextBox();
this.panel17 = new System.Windows.Forms.Panel();
- this.button13 = new System.Windows.Forms.Button();
this.textBox24 = new System.Windows.Forms.TextBox();
- this.button10 = new System.Windows.Forms.Button();
this.panel10 = new System.Windows.Forms.Panel();
this.panel19 = new System.Windows.Forms.Panel();
this.button17 = new System.Windows.Forms.Button();
@@ -274,21 +298,14 @@ private void InitializeComponent()
this.label49 = new System.Windows.Forms.Label();
this.label48 = new System.Windows.Forms.Label();
this.panel11 = new System.Windows.Forms.Panel();
- this.button4 = new System.Windows.Forms.Button();
this.textBox19 = new System.Windows.Forms.TextBox();
this.panel12 = new System.Windows.Forms.Panel();
- this.button5 = new System.Windows.Forms.Button();
this.textBox20 = new System.Windows.Forms.TextBox();
this.panel13 = new System.Windows.Forms.Panel();
- this.button9 = new System.Windows.Forms.Button();
this.textBox21 = new System.Windows.Forms.TextBox();
- this.button1 = new System.Windows.Forms.Button();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.panel29 = new System.Windows.Forms.Panel();
this.toolStrip8 = new System.Windows.Forms.ToolStrip();
- this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel12 = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripTextBox8 = new System.Windows.Forms.ToolStripTextBox();
@@ -304,36 +321,56 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage16 = new System.Windows.Forms.TabPage();
+ this.panel34 = new System.Windows.Forms.Panel();
this.dataGridViewPPD = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip12 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox2 = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox3 = new System.Windows.Forms.ToolStripTextBox();
this.tabPage17 = new System.Windows.Forms.TabPage();
this.dataGridViewMD = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.button33 = new System.Windows.Forms.Button();
this.panel28 = new System.Windows.Forms.Panel();
this.toolStrip7 = new System.Windows.Forms.ToolStrip();
- this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripTextBox7 = new System.Windows.Forms.ToolStripTextBox();
this.tabControl3 = new System.Windows.Forms.TabControl();
this.tabPage9 = new System.Windows.Forms.TabPage();
+ this.dataGridViewMechData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage10 = new System.Windows.Forms.TabPage();
+ this.dataGridViewMaterialData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage11 = new System.Windows.Forms.TabPage();
+ this.dataGridViewElectricalConnection = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage12 = new System.Windows.Forms.TabPage();
+ this.dataGridViewElectricalData = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPage13 = new System.Windows.Forms.TabPage();
this.tableLayoutPanel17 = new System.Windows.Forms.TableLayoutPanel();
this.textBox83 = new System.Windows.Forms.TextBox();
this.label115 = new System.Windows.Forms.Label();
this.label116 = new System.Windows.Forms.Label();
this.textBox84 = new System.Windows.Forms.TextBox();
- this.button32 = new System.Windows.Forms.Button();
this.panel27 = new System.Windows.Forms.Panel();
this.panel32 = new System.Windows.Forms.Panel();
this.panel33 = new System.Windows.Forms.Panel();
@@ -342,10 +379,6 @@ private void InitializeComponent()
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.toolStrip6 = new System.Windows.Forms.ToolStrip();
- this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
- this.button3 = new System.Windows.Forms.Button();
this.panel25 = new System.Windows.Forms.Panel();
this.treeView2 = new System.Windows.Forms.TreeView();
this.toolStrip11 = new System.Windows.Forms.ToolStrip();
@@ -364,33 +397,69 @@ private void InitializeComponent()
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.semanticSystemCmbx = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
- this.addSemanticSystems = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
- this.cancelSemanticSystem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
- this.generaterAML = new System.Windows.Forms.ToolStripButton();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStrip3 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.dataGridViewMechData = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewMaterialData = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewElectricalConnection = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewElectricalData = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.connectorTypelabel = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator41 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorTypeCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripLabel13 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripSeparator34 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel19 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStrip14 = new System.Windows.Forms.ToolStrip();
+ this.addPinsButton = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton15 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton18 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton19 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton16 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton17 = new System.Windows.Forms.ToolStripButton();
+ this.addInterfaces = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
+ this.button2 = new System.Windows.Forms.Button();
+ this.button11 = new System.Windows.Forms.Button();
+ this.button12 = new System.Windows.Forms.Button();
+ this.button13 = new System.Windows.Forms.Button();
+ this.button10 = new System.Windows.Forms.Button();
+ this.button4 = new System.Windows.Forms.Button();
+ this.button5 = new System.Windows.Forms.Button();
+ this.button9 = new System.Windows.Forms.Button();
+ this.button1 = new System.Windows.Forms.Button();
+ this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
+ this.button33 = new System.Windows.Forms.Button();
+ this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
+ this.button32 = new System.Windows.Forms.Button();
+ this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
+ this.button3 = new System.Windows.Forms.Button();
+ this.addSemanticSystems = new System.Windows.Forms.ToolStripButton();
+ this.cancelSemanticSystem = new System.Windows.Forms.ToolStripButton();
+ this.generaterAML = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
+ this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.addConnector = new System.Windows.Forms.ToolStripButton();
this.toolStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@@ -414,17 +483,24 @@ private void InitializeComponent()
this.tableLayoutPanel1.SuspendLayout();
this.tabPage5.SuspendLayout();
this.panel4.SuspendLayout();
- this.panel24.SuspendLayout();
- this.panel8.SuspendLayout();
- this.panel22.SuspendLayout();
- this.tableLayoutPanel5.SuspendLayout();
- this.panel7.SuspendLayout();
- this.panel21.SuspendLayout();
this.panel5.SuspendLayout();
+ this.tabControl1.SuspendLayout();
+ this.tabPage7.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPinInfo)).BeginInit();
+ this.toolStrip18.SuspendLayout();
this.panel20.SuspendLayout();
- this.tableLayoutPanel2.SuspendLayout();
+ this.panel21.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIElectricalData)).BeginInit();
+ this.toolStrip17.SuspendLayout();
+ this.tabPage8.SuspendLayout();
+ this.panel7.SuspendLayout();
+ this.panel8.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorDimensions)).BeginInit();
+ this.toolStrip16.SuspendLayout();
this.panel6.SuspendLayout();
- this.tableLayoutPanel3.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIMountingData)).BeginInit();
+ this.toolStrip15.SuspendLayout();
+ this.toolStrip13.SuspendLayout();
this.tabPage6.SuspendLayout();
this.panel9.SuspendLayout();
this.panel14.SuspendLayout();
@@ -448,16 +524,22 @@ private void InitializeComponent()
this.tabPage15.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPOD)).BeginInit();
this.tabPage16.SuspendLayout();
+ this.panel34.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPPD)).BeginInit();
+ this.toolStrip12.SuspendLayout();
this.tabPage17.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewMD)).BeginInit();
this.panel28.SuspendLayout();
this.toolStrip7.SuspendLayout();
this.tabControl3.SuspendLayout();
this.tabPage9.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).BeginInit();
this.tabPage10.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).BeginInit();
this.tabPage11.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).BeginInit();
this.tabPage12.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).BeginInit();
this.tabPage13.SuspendLayout();
this.tableLayoutPanel17.SuspendLayout();
this.panel27.SuspendLayout();
@@ -470,10 +552,7 @@ private void InitializeComponent()
this.toolStrip5.SuspendLayout();
this.toolStrip4.SuspendLayout();
this.toolStrip3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).BeginInit();
+ this.toolStrip14.SuspendLayout();
this.SuspendLayout();
//
// elementHost1
@@ -517,89 +596,16 @@ private void InitializeComponent()
this.toolStrip1.TabIndex = 43;
this.toolStrip1.Text = "toolStrip1";
//
- // newToolStripButton
- //
- this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
- this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.newToolStripButton.Name = "newToolStripButton";
- this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.newToolStripButton.Text = "&New";
- //
- // openToolStripButton
- //
- this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
- this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.openToolStripButton.Name = "openToolStripButton";
- this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.openToolStripButton.Text = "&Open";
- //
- // saveToolStripButton
- //
- this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
- this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.saveToolStripButton.Name = "saveToolStripButton";
- this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.saveToolStripButton.Text = "&Save";
- this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
- //
- // printToolStripButton
- //
- this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
- this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.printToolStripButton.Name = "printToolStripButton";
- this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.printToolStripButton.Text = "&Print";
- //
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
- // cutToolStripButton
- //
- this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
- this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.cutToolStripButton.Name = "cutToolStripButton";
- this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.cutToolStripButton.Text = "C&ut";
- //
- // copyToolStripButton
- //
- this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
- this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.copyToolStripButton.Name = "copyToolStripButton";
- this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.copyToolStripButton.Text = "&Copy";
- //
- // pasteToolStripButton
- //
- this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
- this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.pasteToolStripButton.Name = "pasteToolStripButton";
- this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.pasteToolStripButton.Text = "&Paste";
- //
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
- // helpToolStripButton
- //
- this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
- this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.helpToolStripButton.Name = "helpToolStripButton";
- this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.helpToolStripButton.Text = "He&lp";
- //
// toolStrip2
//
this.toolStrip2.BackColor = System.Drawing.SystemColors.ControlLight;
@@ -613,30 +619,11 @@ private void InitializeComponent()
this.toolStrip2.TabIndex = 44;
this.toolStrip2.Text = "toolStrip2";
//
- // toolStripButton1
- //
- this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
- this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton1.Name = "toolStripButton1";
- this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
- this.toolStripButton1.Text = "toolStripButton1";
- this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
- //
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
- // toolStripButton2
- //
- this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
- this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton2.Name = "toolStripButton2";
- this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
- this.toolStripButton2.Text = "toolStripButton2";
- //
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.Color.LightGray;
@@ -1045,6 +1032,7 @@ private void InitializeComponent()
this.treeViewCH.Name = "treeViewCH";
this.treeViewCH.Size = new System.Drawing.Size(235, 255);
this.treeViewCH.TabIndex = 1;
+ this.treeViewCH.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeViewCH_AfterSelect);
//
// toolStrip9
//
@@ -1059,8 +1047,7 @@ private void InitializeComponent()
// toolStripLabel2
//
this.toolStripLabel2.Name = "toolStripLabel2";
- this.toolStripLabel2.Size = new System.Drawing.Size(86, 22);
- this.toolStripLabel2.Text = "toolStripLabel2";
+ this.toolStripLabel2.Size = new System.Drawing.Size(0, 22);
//
// panel30
//
@@ -1965,506 +1952,627 @@ private void InitializeComponent()
//
// panel4
//
- this.panel4.AutoScroll = true;
- this.panel4.Controls.Add(this.panel24);
- this.panel4.Controls.Add(this.panel8);
- this.panel4.Controls.Add(this.panel7);
this.panel4.Controls.Add(this.panel5);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel4.Controls.Add(this.toolStrip13);
+ this.panel4.Controls.Add(this.button2);
+ this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
this.panel4.Location = new System.Drawing.Point(3, 3);
- this.panel4.Margin = new System.Windows.Forms.Padding(0);
+ this.panel4.MaximumSize = new System.Drawing.Size(637, 450);
+ this.panel4.MinimumSize = new System.Drawing.Size(637, 23);
this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(791, 537);
+ this.panel4.Size = new System.Drawing.Size(637, 450);
this.panel4.TabIndex = 0;
- this.panel4.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel4_Paint);
//
- // panel24
+ // panel5
//
- this.panel24.Controls.Add(this.button2);
- this.panel24.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel24.Location = new System.Drawing.Point(0, 75);
- this.panel24.Margin = new System.Windows.Forms.Padding(0);
- this.panel24.MaximumSize = new System.Drawing.Size(700, 300);
- this.panel24.MinimumSize = new System.Drawing.Size(700, 25);
- this.panel24.Name = "panel24";
- this.panel24.Size = new System.Drawing.Size(700, 25);
- this.panel24.TabIndex = 3;
+ this.panel5.Controls.Add(this.tabControl1);
+ this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel5.Location = new System.Drawing.Point(0, 48);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(637, 390);
+ this.panel5.TabIndex = 3;
+ //
+ // tabControl1
+ //
+ this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage8);
+ this.tabControl1.Controls.Add(this.tabPage18);
+ this.tabControl1.Controls.Add(this.tabPage19);
+ this.tabControl1.Controls.Add(this.tabPage20);
+ this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.tabControl1.Location = new System.Drawing.Point(0, 0);
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.Size = new System.Drawing.Size(637, 390);
+ this.tabControl1.TabIndex = 1;
+ //
+ // tabPage7
//
- // button2
+ this.tabPage7.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage7.Controls.Add(this.dataGridViewPinInfo);
+ this.tabPage7.Controls.Add(this.toolStrip18);
+ this.tabPage7.Controls.Add(this.panel20);
+ this.tabPage7.Controls.Add(this.toolStrip14);
+ this.tabPage7.Location = new System.Drawing.Point(4, 22);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(629, 364);
+ this.tabPage7.TabIndex = 0;
+ this.tabPage7.Text = "Interface Type";
//
- this.button2.BackColor = System.Drawing.Color.LightGray;
- this.button2.Dock = System.Windows.Forms.DockStyle.Top;
- this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button2.Location = new System.Drawing.Point(0, 0);
- this.button2.Margin = new System.Windows.Forms.Padding(0);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(700, 25);
- this.button2.TabIndex = 0;
- this.button2.Text = "+ Add Pneunmatic Interface";
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.Button2_Click);
+ // dataGridViewPinInfo
//
- // panel8
+ this.dataGridViewPinInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewPinInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column18,
+ this.dataGridViewTextBoxColumn22,
+ this.dataGridViewTextBoxColumn23,
+ this.dataGridViewTextBoxColumn24,
+ this.dataGridViewTextBoxColumn25});
+ this.dataGridViewPinInfo.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewPinInfo.Location = new System.Drawing.Point(3, 213);
+ this.dataGridViewPinInfo.Name = "dataGridViewPinInfo";
+ this.dataGridViewPinInfo.Size = new System.Drawing.Size(623, 148);
+ this.dataGridViewPinInfo.TabIndex = 3;
//
- this.panel8.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel8.Controls.Add(this.panel22);
- this.panel8.Controls.Add(this.tableLayoutPanel5);
- this.panel8.Controls.Add(this.button8);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel8.Location = new System.Drawing.Point(0, 50);
- this.panel8.Margin = new System.Windows.Forms.Padding(0);
- this.panel8.MaximumSize = new System.Drawing.Size(700, 300);
- this.panel8.MinimumSize = new System.Drawing.Size(700, 25);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(700, 25);
- this.panel8.TabIndex = 2;
- //
- // panel22
- //
- this.panel22.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel22.Controls.Add(this.button26);
- this.panel22.Controls.Add(this.button27);
- this.panel22.Controls.Add(this.button28);
- this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel22.Location = new System.Drawing.Point(0, 205);
- this.panel22.Name = "panel22";
- this.panel22.Size = new System.Drawing.Size(700, 25);
- this.panel22.TabIndex = 3;
- //
- // button26
- //
- this.button26.BackColor = System.Drawing.Color.Silver;
- this.button26.Dock = System.Windows.Forms.DockStyle.Right;
- this.button26.Location = new System.Drawing.Point(475, 0);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(75, 25);
- this.button26.TabIndex = 2;
- this.button26.Text = "Add ";
- this.button26.UseVisualStyleBackColor = false;
- //
- // button27
- //
- this.button27.BackColor = System.Drawing.Color.Silver;
- this.button27.Dock = System.Windows.Forms.DockStyle.Right;
- this.button27.Location = new System.Drawing.Point(550, 0);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(75, 25);
- this.button27.TabIndex = 1;
- this.button27.Text = "Clear";
- this.button27.UseVisualStyleBackColor = false;
- //
- // button28
- //
- this.button28.BackColor = System.Drawing.Color.Silver;
- this.button28.Dock = System.Windows.Forms.DockStyle.Right;
- this.button28.Location = new System.Drawing.Point(625, 0);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(75, 25);
- this.button28.TabIndex = 0;
- this.button28.Text = "Cancel";
- this.button28.UseVisualStyleBackColor = false;
- //
- // tableLayoutPanel5
- //
- this.tableLayoutPanel5.BackColor = System.Drawing.Color.WhiteSmoke;
- this.tableLayoutPanel5.ColumnCount = 2;
- this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
- this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.42857F));
- this.tableLayoutPanel5.Controls.Add(this.label47, 0, 0);
- this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 25);
- this.tableLayoutPanel5.Name = "tableLayoutPanel5";
- this.tableLayoutPanel5.RowCount = 4;
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel5.Size = new System.Drawing.Size(700, 180);
- this.tableLayoutPanel5.TabIndex = 1;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label47.Location = new System.Drawing.Point(3, 0);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(194, 25);
- this.label47.TabIndex = 0;
- this.label47.Text = "Sensing Capacity";
- this.label47.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.LightGray;
- this.button8.Dock = System.Windows.Forms.DockStyle.Top;
- this.button8.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button8.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button8.Location = new System.Drawing.Point(0, 0);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(700, 25);
- this.button8.TabIndex = 0;
- this.button8.Text = "+ Add Sensor Interface";
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.Button8_Click);
+ // Column18
//
- // panel7
+ this.Column18.HeaderText = "Pin";
+ this.Column18.Name = "Column18";
+ this.Column18.Width = 30;
//
- this.panel7.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel7.Controls.Add(this.panel21);
- this.panel7.Controls.Add(this.tableLayoutPanel4);
- this.panel7.Controls.Add(this.button7);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel7.Location = new System.Drawing.Point(0, 25);
- this.panel7.MaximumSize = new System.Drawing.Size(700, 400);
- this.panel7.MinimumSize = new System.Drawing.Size(700, 25);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(700, 25);
- this.panel7.TabIndex = 1;
+ // dataGridViewTextBoxColumn22
//
- // panel21
+ this.dataGridViewTextBoxColumn22.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
+ this.dataGridViewTextBoxColumn22.Width = 150;
//
- this.panel21.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel21.Controls.Add(this.button23);
- this.panel21.Controls.Add(this.button24);
- this.panel21.Controls.Add(this.button25);
- this.panel21.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel21.Location = new System.Drawing.Point(0, 125);
- this.panel21.Name = "panel21";
- this.panel21.Size = new System.Drawing.Size(700, 25);
- this.panel21.TabIndex = 3;
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Silver;
- this.button23.Dock = System.Windows.Forms.DockStyle.Right;
- this.button23.Location = new System.Drawing.Point(475, 0);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(75, 25);
- this.button23.TabIndex = 2;
- this.button23.Text = "Add ";
- this.button23.UseVisualStyleBackColor = false;
- //
- // button24
- //
- this.button24.BackColor = System.Drawing.Color.Silver;
- this.button24.Dock = System.Windows.Forms.DockStyle.Right;
- this.button24.Location = new System.Drawing.Point(550, 0);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(75, 25);
- this.button24.TabIndex = 1;
- this.button24.Text = "Clear";
- this.button24.UseVisualStyleBackColor = false;
- //
- // button25
- //
- this.button25.BackColor = System.Drawing.Color.Silver;
- this.button25.Dock = System.Windows.Forms.DockStyle.Right;
- this.button25.Location = new System.Drawing.Point(625, 0);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(75, 25);
- this.button25.TabIndex = 0;
- this.button25.Text = "Cancel";
- this.button25.UseVisualStyleBackColor = false;
- //
- // tableLayoutPanel4
- //
- this.tableLayoutPanel4.BackColor = System.Drawing.Color.WhiteSmoke;
- this.tableLayoutPanel4.ColumnCount = 2;
- this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 25);
- this.tableLayoutPanel4.Name = "tableLayoutPanel4";
- this.tableLayoutPanel4.RowCount = 2;
- this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel4.Size = new System.Drawing.Size(700, 100);
- this.tableLayoutPanel4.TabIndex = 1;
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.LightGray;
- this.button7.Dock = System.Windows.Forms.DockStyle.Top;
- this.button7.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button7.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button7.Location = new System.Drawing.Point(0, 0);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(700, 25);
- this.button7.TabIndex = 0;
- this.button7.Text = "+ Add Mechanical Interface";
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.Button7_Click);
+ // dataGridViewTextBoxColumn23
//
- // panel5
+ this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn23.HeaderText = "Attribute/Function";
+ this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
//
- this.panel5.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel5.Controls.Add(this.panel20);
- this.panel5.Controls.Add(this.tableLayoutPanel2);
- this.panel5.Controls.Add(this.button6);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel5.Location = new System.Drawing.Point(0, 0);
- this.panel5.MaximumSize = new System.Drawing.Size(700, 415);
- this.panel5.MinimumSize = new System.Drawing.Size(700, 25);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(700, 25);
- this.panel5.TabIndex = 0;
+ // dataGridViewTextBoxColumn24
//
- // panel20
+ this.dataGridViewTextBoxColumn24.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
//
- this.panel20.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel20.Controls.Add(this.button20);
- this.panel20.Controls.Add(this.button21);
- this.panel20.Controls.Add(this.button22);
- this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel20.Location = new System.Drawing.Point(0, 329);
- this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(700, 25);
- this.panel20.TabIndex = 3;
- //
- // button20
- //
- this.button20.BackColor = System.Drawing.Color.Silver;
- this.button20.Dock = System.Windows.Forms.DockStyle.Right;
- this.button20.Location = new System.Drawing.Point(475, 0);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(75, 25);
- this.button20.TabIndex = 2;
- this.button20.Text = "Add ";
- this.button20.UseVisualStyleBackColor = false;
- //
- // button21
- //
- this.button21.BackColor = System.Drawing.Color.Silver;
- this.button21.Dock = System.Windows.Forms.DockStyle.Right;
- this.button21.Location = new System.Drawing.Point(550, 0);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(75, 25);
- this.button21.TabIndex = 1;
- this.button21.Text = "Clear";
- this.button21.UseVisualStyleBackColor = false;
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Silver;
- this.button22.Dock = System.Windows.Forms.DockStyle.Right;
- this.button22.Location = new System.Drawing.Point(625, 0);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(75, 25);
- this.button22.TabIndex = 0;
- this.button22.Text = "Cancel";
- this.button22.UseVisualStyleBackColor = false;
- //
- // tableLayoutPanel2
- //
- this.tableLayoutPanel2.BackColor = System.Drawing.Color.WhiteSmoke;
- this.tableLayoutPanel2.ColumnCount = 2;
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 26.47059F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 73.52941F));
- this.tableLayoutPanel2.Controls.Add(this.label44, 0, 4);
- this.tableLayoutPanel2.Controls.Add(this.textBox18, 1, 3);
- this.tableLayoutPanel2.Controls.Add(this.label43, 0, 3);
- this.tableLayoutPanel2.Controls.Add(this.label42, 0, 2);
- this.tableLayoutPanel2.Controls.Add(this.textBox17, 1, 1);
- this.tableLayoutPanel2.Controls.Add(this.label41, 0, 1);
- this.tableLayoutPanel2.Controls.Add(this.label40, 0, 0);
- this.tableLayoutPanel2.Controls.Add(this.textBox16, 1, 0);
- this.tableLayoutPanel2.Controls.Add(this.comboBox3, 1, 2);
- this.tableLayoutPanel2.Controls.Add(this.panel6, 1, 4);
- this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 25);
- this.tableLayoutPanel2.Name = "tableLayoutPanel2";
- this.tableLayoutPanel2.RowCount = 5;
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(700, 304);
- this.tableLayoutPanel2.TabIndex = 1;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label44.Location = new System.Drawing.Point(3, 100);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(179, 204);
- this.label44.TabIndex = 9;
- this.label44.Text = "Pins Description:";
- this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox18
- //
- this.textBox18.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox18.Location = new System.Drawing.Point(188, 78);
- this.textBox18.Name = "textBox18";
- this.textBox18.Size = new System.Drawing.Size(250, 20);
- this.textBox18.TabIndex = 7;
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label43.Location = new System.Drawing.Point(3, 75);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(179, 25);
- this.label43.TabIndex = 6;
- this.label43.Text = "Number of Pins:";
- this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label42.Location = new System.Drawing.Point(3, 50);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(179, 25);
- this.label42.TabIndex = 4;
- this.label42.Text = "Connector Type:";
- this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox17
- //
- this.textBox17.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox17.Location = new System.Drawing.Point(188, 28);
- this.textBox17.Name = "textBox17";
- this.textBox17.Size = new System.Drawing.Size(250, 20);
- this.textBox17.TabIndex = 3;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label41.Location = new System.Drawing.Point(3, 25);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(179, 25);
- this.label41.TabIndex = 2;
- this.label41.Text = "Interface Description:";
- this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label40.Location = new System.Drawing.Point(3, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(179, 25);
- this.label40.TabIndex = 0;
- this.label40.Text = "Interface Number:";
- this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // textBox16
- //
- this.textBox16.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox16.Location = new System.Drawing.Point(188, 3);
- this.textBox16.Name = "textBox16";
- this.textBox16.Size = new System.Drawing.Size(250, 20);
- this.textBox16.TabIndex = 1;
- //
- // comboBox3
- //
- this.comboBox3.Dock = System.Windows.Forms.DockStyle.Left;
- this.comboBox3.FormattingEnabled = true;
- this.comboBox3.Items.AddRange(new object[] {
- "M12",
- "M8"});
- this.comboBox3.Location = new System.Drawing.Point(188, 53);
- this.comboBox3.Name = "comboBox3";
- this.comboBox3.Size = new System.Drawing.Size(250, 21);
- this.comboBox3.TabIndex = 5;
+ // dataGridViewTextBoxColumn25
//
- // panel6
+ this.dataGridViewTextBoxColumn25.HeaderText = "Units";
+ this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
//
- this.panel6.AccessibleRole = System.Windows.Forms.AccessibleRole.ScrollBar;
- this.panel6.Controls.Add(this.tableLayoutPanel3);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel6.Location = new System.Drawing.Point(188, 103);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(509, 198);
- this.panel6.TabIndex = 8;
- //
- // tableLayoutPanel3
- //
- this.tableLayoutPanel3.BackColor = System.Drawing.Color.White;
- this.tableLayoutPanel3.ColumnCount = 2;
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
- this.tableLayoutPanel3.Controls.Add(this.label45, 0, 0);
- this.tableLayoutPanel3.Controls.Add(this.label46, 1, 0);
- this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel3.Name = "tableLayoutPanel3";
- this.tableLayoutPanel3.RowCount = 8;
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(509, 178);
- this.tableLayoutPanel3.TabIndex = 0;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label45.Location = new System.Drawing.Point(3, 0);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(184, 25);
- this.label45.TabIndex = 7;
- this.label45.Text = "Pins:";
- this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label46.Location = new System.Drawing.Point(193, 0);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(313, 25);
- this.label46.TabIndex = 8;
- this.label46.Text = "Attribute:";
- this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.LightGray;
- this.button6.Dock = System.Windows.Forms.DockStyle.Top;
- this.button6.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button6.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button6.Location = new System.Drawing.Point(0, 0);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(700, 25);
- this.button6.TabIndex = 0;
- this.button6.Text = "+ Add Electrical Interface";
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.Button6_Click);
+ // toolStrip18
//
- // tabPage6
+ this.toolStrip18.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel17,
+ this.toolStripSeparator30,
+ this.toolStripLabel18,
+ this.toolStripSeparator32,
+ this.pinNumberTxtBx,
+ this.toolStripSeparator31,
+ this.addPinsButton,
+ this.toolStripSeparator33,
+ this.toolStripButton3});
+ this.toolStrip18.Location = new System.Drawing.Point(3, 188);
+ this.toolStrip18.Name = "toolStrip18";
+ this.toolStrip18.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip18.TabIndex = 2;
+ this.toolStrip18.Text = "toolStrip18";
//
- this.tabPage6.AutoScroll = true;
- this.tabPage6.BackColor = System.Drawing.Color.LightGray;
- this.tabPage6.Controls.Add(this.panel9);
- this.tabPage6.Location = new System.Drawing.Point(4, 22);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(643, 560);
- this.tabPage6.TabIndex = 10;
- this.tabPage6.Text = "Field attachables";
+ // toolStripLabel17
//
- // panel9
+ this.toolStripLabel17.Name = "toolStripLabel17";
+ this.toolStripLabel17.Size = new System.Drawing.Size(90, 22);
+ this.toolStripLabel17.Text = "Pin Information";
//
- this.panel9.AutoScroll = true;
- this.panel9.Controls.Add(this.panel14);
- this.panel9.Controls.Add(this.panel10);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel9.Location = new System.Drawing.Point(3, 3);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(634, 554);
- this.panel9.TabIndex = 0;
+ // toolStripSeparator30
+ //
+ this.toolStripSeparator30.Name = "toolStripSeparator30";
+ this.toolStripSeparator30.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel18
+ //
+ this.toolStripLabel18.Name = "toolStripLabel18";
+ this.toolStripLabel18.Size = new System.Drawing.Size(90, 22);
+ this.toolStripLabel18.Text = "Number of Pins";
+ //
+ // toolStripSeparator32
+ //
+ this.toolStripSeparator32.Name = "toolStripSeparator32";
+ this.toolStripSeparator32.Size = new System.Drawing.Size(6, 25);
+ //
+ // pinNumberTxtBx
+ //
+ this.pinNumberTxtBx.Name = "pinNumberTxtBx";
+ this.pinNumberTxtBx.Size = new System.Drawing.Size(50, 25);
+ //
+ // toolStripSeparator31
+ //
+ this.toolStripSeparator31.Name = "toolStripSeparator31";
+ this.toolStripSeparator31.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator33
+ //
+ this.toolStripSeparator33.Name = "toolStripSeparator33";
+ this.toolStripSeparator33.Size = new System.Drawing.Size(6, 25);
+ //
+ // panel20
+ //
+ this.panel20.Controls.Add(this.panel21);
+ this.panel20.Controls.Add(this.toolStrip17);
+ this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel20.Location = new System.Drawing.Point(3, 28);
+ this.panel20.Name = "panel20";
+ this.panel20.Size = new System.Drawing.Size(623, 160);
+ this.panel20.TabIndex = 1;
+ //
+ // panel21
+ //
+ this.panel21.Controls.Add(this.dataGridViewIRDIElectricalData);
+ this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel21.Location = new System.Drawing.Point(0, 25);
+ this.panel21.Name = "panel21";
+ this.panel21.Size = new System.Drawing.Size(623, 135);
+ this.panel21.TabIndex = 1;
+ //
+ // dataGridViewIRDIElectricalData
+ //
+ this.dataGridViewIRDIElectricalData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIElectricalData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column14,
+ this.Column15,
+ this.Column16,
+ this.Column17});
+ this.dataGridViewIRDIElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIElectricalData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIElectricalData.Name = "dataGridViewIRDIElectricalData";
+ this.dataGridViewIRDIElectricalData.Size = new System.Drawing.Size(623, 135);
+ this.dataGridViewIRDIElectricalData.TabIndex = 0;
+ //
+ // Column14
+ //
+ this.Column14.HeaderText = "ID";
+ this.Column14.Name = "Column14";
+ this.Column14.Width = 150;
+ //
+ // Column15
+ //
+ this.Column15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column15.HeaderText = "Attribute";
+ this.Column15.Name = "Column15";
+ //
+ // Column16
+ //
+ this.Column16.HeaderText = "Value";
+ this.Column16.Name = "Column16";
+ //
+ // Column17
+ //
+ this.Column17.HeaderText = "Units";
+ this.Column17.Name = "Column17";
+ //
+ // toolStrip17
+ //
+ this.toolStrip17.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel16});
+ this.toolStrip17.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip17.Name = "toolStrip17";
+ this.toolStrip17.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip17.TabIndex = 0;
+ this.toolStrip17.Text = "toolStrip17";
+ //
+ // toolStripLabel16
+ //
+ this.toolStripLabel16.Name = "toolStripLabel16";
+ this.toolStripLabel16.Size = new System.Drawing.Size(81, 22);
+ this.toolStripLabel16.Text = "Electrical Data";
+ //
+ // tabPage8
+ //
+ this.tabPage8.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage8.Controls.Add(this.panel7);
+ this.tabPage8.Controls.Add(this.panel6);
+ this.tabPage8.Controls.Add(this.toolStrip15);
+ this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(629, 364);
+ this.tabPage8.TabIndex = 1;
+ this.tabPage8.Text = "Dimensional Info";
+ //
+ // panel7
+ //
+ this.panel7.Controls.Add(this.panel8);
+ this.panel7.Controls.Add(this.toolStrip16);
+ this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel7.Location = new System.Drawing.Point(3, 128);
+ this.panel7.Name = "panel7";
+ this.panel7.Size = new System.Drawing.Size(623, 233);
+ this.panel7.TabIndex = 2;
+ //
+ // panel8
+ //
+ this.panel8.Controls.Add(this.dataGridViewIRDIConnectorDimensions);
+ this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel8.Location = new System.Drawing.Point(0, 25);
+ this.panel8.Name = "panel8";
+ this.panel8.Size = new System.Drawing.Size(623, 208);
+ this.panel8.TabIndex = 1;
+ //
+ // dataGridViewIRDIConnectorDimensions
+ //
+ this.dataGridViewIRDIConnectorDimensions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIConnectorDimensions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column8,
+ this.Column9,
+ this.Column10,
+ this.Column11,
+ this.Column12,
+ this.Column13});
+ this.dataGridViewIRDIConnectorDimensions.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIConnectorDimensions.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorDimensions.Name = "dataGridViewIRDIConnectorDimensions";
+ this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(623, 208);
+ this.dataGridViewIRDIConnectorDimensions.TabIndex = 0;
+ //
+ // Column8
+ //
+ this.Column8.HeaderText = "ID";
+ this.Column8.Name = "Column8";
+ this.Column8.Width = 150;
+ //
+ // Column9
+ //
+ this.Column9.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column9.HeaderText = "Attribute";
+ this.Column9.Name = "Column9";
+ //
+ // Column10
+ //
+ this.Column10.HeaderText = "Minimum";
+ this.Column10.Name = "Column10";
+ this.Column10.Width = 65;
+ //
+ // Column11
+ //
+ this.Column11.HeaderText = "Nominal";
+ this.Column11.Name = "Column11";
+ this.Column11.Width = 65;
+ //
+ // Column12
+ //
+ this.Column12.HeaderText = "Maximum";
+ this.Column12.Name = "Column12";
+ this.Column12.Width = 65;
+ //
+ // Column13
+ //
+ this.Column13.HeaderText = "Units";
+ this.Column13.Name = "Column13";
+ this.Column13.Width = 50;
+ //
+ // toolStrip16
+ //
+ this.toolStrip16.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel15,
+ this.toolStripSeparator28,
+ this.toolStripLabel20,
+ this.toolStripSeparator35,
+ this.toolStripComboBox2,
+ this.toolStripSeparator39,
+ this.connectorTypelabel,
+ this.toolStripSeparator41,
+ this.connectorTypeCmbx,
+ this.toolStripButton18,
+ this.toolStripSeparator40,
+ this.toolStripButton19});
+ this.toolStrip16.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip16.Name = "toolStrip16";
+ this.toolStrip16.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip16.TabIndex = 0;
+ this.toolStrip16.Text = "toolStrip16";
+ //
+ // toolStripLabel15
+ //
+ this.toolStripLabel15.Name = "toolStripLabel15";
+ this.toolStripLabel15.Size = new System.Drawing.Size(69, 22);
+ this.toolStripLabel15.Text = "Dimensions";
+ //
+ // toolStripSeparator28
+ //
+ this.toolStripSeparator28.Name = "toolStripSeparator28";
+ this.toolStripSeparator28.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel20
+ //
+ this.toolStripLabel20.Name = "toolStripLabel20";
+ this.toolStripLabel20.Size = new System.Drawing.Size(94, 22);
+ this.toolStripLabel20.Text = "Connector Code";
+ //
+ // toolStripSeparator35
+ //
+ this.toolStripSeparator35.Name = "toolStripSeparator35";
+ this.toolStripSeparator35.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripComboBox2
+ //
+ this.toolStripComboBox2.Items.AddRange(new object[] {
+ "E - Coding"});
+ this.toolStripComboBox2.Name = "toolStripComboBox2";
+ this.toolStripComboBox2.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripSeparator39
+ //
+ this.toolStripSeparator39.Name = "toolStripSeparator39";
+ this.toolStripSeparator39.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator40
+ //
+ this.toolStripSeparator40.Name = "toolStripSeparator40";
+ this.toolStripSeparator40.Size = new System.Drawing.Size(6, 25);
+ //
+ // panel6
+ //
+ this.panel6.Controls.Add(this.dataGridViewIRDIMountingData);
+ this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel6.Location = new System.Drawing.Point(3, 28);
+ this.panel6.Name = "panel6";
+ this.panel6.Size = new System.Drawing.Size(623, 100);
+ this.panel6.TabIndex = 1;
+ //
+ // dataGridViewIRDIMountingData
+ //
+ this.dataGridViewIRDIMountingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIMountingData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column4,
+ this.Column5,
+ this.Column6,
+ this.Column7});
+ this.dataGridViewIRDIMountingData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIMountingData.Name = "dataGridViewIRDIMountingData";
+ this.dataGridViewIRDIMountingData.Size = new System.Drawing.Size(623, 100);
+ this.dataGridViewIRDIMountingData.TabIndex = 0;
+ //
+ // Column4
+ //
+ this.Column4.HeaderText = "ID";
+ this.Column4.Name = "Column4";
+ this.Column4.Width = 150;
+ //
+ // Column5
+ //
+ this.Column5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column5.HeaderText = "Attribute";
+ this.Column5.Name = "Column5";
+ //
+ // Column6
+ //
+ this.Column6.HeaderText = "Value";
+ this.Column6.Name = "Column6";
+ //
+ // Column7
+ //
+ this.Column7.HeaderText = "Units";
+ this.Column7.Name = "Column7";
+ //
+ // toolStrip15
+ //
+ this.toolStrip15.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel8,
+ this.toolStripSeparator24,
+ this.connectorStyleCmbx,
+ this.toolStripSeparator23,
+ this.toolStripLabel14,
+ this.toolStripSeparator25,
+ this.mountingCmbx,
+ this.toolStripSeparator36,
+ this.connectorVersion,
+ this.toolStripSeparator22,
+ this.connectorVersionCmbx,
+ this.toolStripSeparator37,
+ this.toolStripButton16,
+ this.toolStripSeparator38,
+ this.toolStripButton17});
+ this.toolStrip15.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip15.Name = "toolStrip15";
+ this.toolStrip15.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip15.TabIndex = 0;
+ this.toolStrip15.Text = "toolStrip15";
+ //
+ // toolStripLabel8
+ //
+ this.toolStripLabel8.Name = "toolStripLabel8";
+ this.toolStripLabel8.Size = new System.Drawing.Size(91, 22);
+ this.toolStripLabel8.Text = "Connector Style";
+ //
+ // toolStripSeparator24
+ //
+ this.toolStripSeparator24.Name = "toolStripSeparator24";
+ this.toolStripSeparator24.Size = new System.Drawing.Size(6, 25);
+ //
+ // connectorStyleCmbx
+ //
+ this.connectorStyleCmbx.Items.AddRange(new object[] {
+ "Fixed Connectors",
+ "Free Connectors"});
+ this.connectorStyleCmbx.Name = "connectorStyleCmbx";
+ this.connectorStyleCmbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripSeparator23
+ //
+ this.toolStripSeparator23.Name = "toolStripSeparator23";
+ this.toolStripSeparator23.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel14
+ //
+ this.toolStripLabel14.Name = "toolStripLabel14";
+ this.toolStripLabel14.Size = new System.Drawing.Size(63, 22);
+ this.toolStripLabel14.Text = "Mounting ";
+ //
+ // toolStripSeparator25
+ //
+ this.toolStripSeparator25.Name = "toolStripSeparator25";
+ this.toolStripSeparator25.Size = new System.Drawing.Size(6, 25);
+ //
+ // mountingCmbx
+ //
+ this.mountingCmbx.Items.AddRange(new object[] {
+ "Square flange mounting",
+ "Single hole mounting",
+ "Locking nut"});
+ this.mountingCmbx.Name = "mountingCmbx";
+ this.mountingCmbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripSeparator36
+ //
+ this.toolStripSeparator36.Name = "toolStripSeparator36";
+ this.toolStripSeparator36.Size = new System.Drawing.Size(6, 25);
+ //
+ // connectorVersion
+ //
+ this.connectorVersion.Enabled = false;
+ this.connectorVersion.Name = "connectorVersion";
+ this.connectorVersion.Size = new System.Drawing.Size(104, 22);
+ this.connectorVersion.Text = "Connector Version";
+ //
+ // toolStripSeparator22
+ //
+ this.toolStripSeparator22.Name = "toolStripSeparator22";
+ this.toolStripSeparator22.Size = new System.Drawing.Size(6, 25);
+ //
+ // connectorVersionCmbx
+ //
+ this.connectorVersionCmbx.Enabled = false;
+ this.connectorVersionCmbx.Items.AddRange(new object[] {
+ "Straight",
+ "Right Angled"});
+ this.connectorVersionCmbx.Name = "connectorVersionCmbx";
+ this.connectorVersionCmbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripSeparator37
+ //
+ this.toolStripSeparator37.Name = "toolStripSeparator37";
+ this.toolStripSeparator37.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator38
+ //
+ this.toolStripSeparator38.Name = "toolStripSeparator38";
+ this.toolStripSeparator38.Size = new System.Drawing.Size(6, 25);
+ //
+ // tabPage18
+ //
+ this.tabPage18.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage18.Location = new System.Drawing.Point(4, 22);
+ this.tabPage18.Name = "tabPage18";
+ this.tabPage18.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage18.Size = new System.Drawing.Size(629, 364);
+ this.tabPage18.TabIndex = 2;
+ this.tabPage18.Text = "Material Info";
+ //
+ // tabPage19
+ //
+ this.tabPage19.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage19.Location = new System.Drawing.Point(4, 22);
+ this.tabPage19.Name = "tabPage19";
+ this.tabPage19.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage19.Size = new System.Drawing.Size(629, 364);
+ this.tabPage19.TabIndex = 3;
+ this.tabPage19.Text = "Orientation Info";
+ //
+ // tabPage20
+ //
+ this.tabPage20.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage20.Location = new System.Drawing.Point(4, 22);
+ this.tabPage20.Name = "tabPage20";
+ this.tabPage20.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage20.Size = new System.Drawing.Size(629, 364);
+ this.tabPage20.TabIndex = 4;
+ this.tabPage20.Text = "Cable Info";
+ //
+ // toolStrip13
+ //
+ this.toolStrip13.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.interfaceNumberdrpdwn,
+ this.toolStripSeparator17,
+ this.interfacesNumberTxtbx,
+ this.toolStripSeparator18,
+ this.addInterfaces,
+ this.toolStripSeparator19,
+ this.toolStripButton4,
+ this.toolStripSeparator20,
+ this.toolStripButton5,
+ this.toolStripSeparator21});
+ this.toolStrip13.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip13.Name = "toolStrip13";
+ this.toolStrip13.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip13.TabIndex = 2;
+ this.toolStrip13.Text = "toolStrip13";
+ //
+ // interfaceNumberdrpdwn
+ //
+ this.interfaceNumberdrpdwn.Name = "interfaceNumberdrpdwn";
+ this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(132, 22);
+ this.interfaceNumberdrpdwn.Text = "Number of Interfaces";
+ //
+ // toolStripSeparator17
+ //
+ this.toolStripSeparator17.Name = "toolStripSeparator17";
+ this.toolStripSeparator17.Size = new System.Drawing.Size(6, 25);
+ //
+ // interfacesNumberTxtbx
+ //
+ this.interfacesNumberTxtbx.Items.AddRange(new object[] {
+ "1",
+ "2",
+ "3",
+ "4"});
+ this.interfacesNumberTxtbx.Name = "interfacesNumberTxtbx";
+ this.interfacesNumberTxtbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripSeparator18
+ //
+ this.toolStripSeparator18.Name = "toolStripSeparator18";
+ this.toolStripSeparator18.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator19
+ //
+ this.toolStripSeparator19.Name = "toolStripSeparator19";
+ this.toolStripSeparator19.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator20
+ //
+ this.toolStripSeparator20.Name = "toolStripSeparator20";
+ this.toolStripSeparator20.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator21
+ //
+ this.toolStripSeparator21.Name = "toolStripSeparator21";
+ this.toolStripSeparator21.Size = new System.Drawing.Size(6, 25);
+ //
+ // tabPage6
+ //
+ this.tabPage6.AutoScroll = true;
+ this.tabPage6.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage6.Controls.Add(this.panel9);
+ this.tabPage6.Location = new System.Drawing.Point(4, 22);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(643, 560);
+ this.tabPage6.TabIndex = 10;
+ this.tabPage6.Text = "Field attachables";
+ //
+ // panel9
+ //
+ this.panel9.AutoScroll = true;
+ this.panel9.Controls.Add(this.panel14);
+ this.panel9.Controls.Add(this.panel10);
+ this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel9.Location = new System.Drawing.Point(3, 3);
+ this.panel9.Name = "panel9";
+ this.panel9.Size = new System.Drawing.Size(634, 554);
+ this.panel9.TabIndex = 0;
//
// panel14
//
@@ -2592,15 +2700,6 @@ private void InitializeComponent()
this.panel15.Size = new System.Drawing.Size(429, 30);
this.panel15.TabIndex = 1;
//
- // button11
- //
- this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button11.Location = new System.Drawing.Point(262, 2);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(30, 25);
- this.button11.TabIndex = 4;
- this.button11.UseVisualStyleBackColor = true;
- //
// textBox22
//
this.textBox22.Location = new System.Drawing.Point(0, 5);
@@ -2620,15 +2719,6 @@ private void InitializeComponent()
this.panel16.Size = new System.Drawing.Size(429, 30);
this.panel16.TabIndex = 2;
//
- // button12
- //
- this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button12.Location = new System.Drawing.Point(262, 3);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(30, 25);
- this.button12.TabIndex = 5;
- this.button12.UseVisualStyleBackColor = true;
- //
// textBox23
//
this.textBox23.Location = new System.Drawing.Point(0, 4);
@@ -2648,15 +2738,6 @@ private void InitializeComponent()
this.panel17.Size = new System.Drawing.Size(429, 30);
this.panel17.TabIndex = 5;
//
- // button13
- //
- this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button13.Location = new System.Drawing.Point(262, 3);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(30, 25);
- this.button13.TabIndex = 6;
- this.button13.UseVisualStyleBackColor = true;
- //
// textBox24
//
this.textBox24.Location = new System.Drawing.Point(0, 5);
@@ -2665,20 +2746,6 @@ private void InitializeComponent()
this.textBox24.Size = new System.Drawing.Size(250, 20);
this.textBox24.TabIndex = 1;
//
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.DarkGray;
- this.button10.Dock = System.Windows.Forms.DockStyle.Top;
- this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button10.Location = new System.Drawing.Point(0, 0);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(600, 25);
- this.button10.TabIndex = 0;
- this.button10.Text = "+ Add Documents ";
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.Button10_Click);
- //
// panel10
//
this.panel10.BackColor = System.Drawing.Color.WhiteSmoke;
@@ -2809,15 +2876,6 @@ private void InitializeComponent()
this.panel11.Size = new System.Drawing.Size(429, 30);
this.panel11.TabIndex = 1;
//
- // button4
- //
- this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button4.Location = new System.Drawing.Point(262, 3);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(30, 25);
- this.button4.TabIndex = 1;
- this.button4.UseVisualStyleBackColor = true;
- //
// textBox19
//
this.textBox19.Location = new System.Drawing.Point(0, 5);
@@ -2838,15 +2896,6 @@ private void InitializeComponent()
this.panel12.Size = new System.Drawing.Size(429, 30);
this.panel12.TabIndex = 5;
//
- // button5
- //
- this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button5.Location = new System.Drawing.Point(262, 3);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(30, 25);
- this.button5.TabIndex = 2;
- this.button5.UseVisualStyleBackColor = true;
- //
// textBox20
//
this.textBox20.Location = new System.Drawing.Point(0, 4);
@@ -2866,15 +2915,6 @@ private void InitializeComponent()
this.panel13.Size = new System.Drawing.Size(429, 30);
this.panel13.TabIndex = 6;
//
- // button9
- //
- this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button9.Location = new System.Drawing.Point(262, 3);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(30, 25);
- this.button9.TabIndex = 3;
- this.button9.UseVisualStyleBackColor = true;
- //
// textBox21
//
this.textBox21.Location = new System.Drawing.Point(0, 5);
@@ -2883,21 +2923,6 @@ private void InitializeComponent()
this.textBox21.Size = new System.Drawing.Size(250, 20);
this.textBox21.TabIndex = 2;
//
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.DarkGray;
- this.button1.Dock = System.Windows.Forms.DockStyle.Top;
- this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button1.Location = new System.Drawing.Point(0, 0);
- this.button1.Margin = new System.Windows.Forms.Padding(0);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(600, 25);
- this.button1.TabIndex = 0;
- this.button1.Text = "+ Add Logo";
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.Button1_Click);
- //
// tabPage2
//
this.tabPage2.AutoScroll = true;
@@ -2919,12 +2944,12 @@ private void InitializeComponent()
this.panel29.Controls.Add(this.tabControl4);
this.panel29.Controls.Add(this.button33);
this.panel29.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel29.Location = new System.Drawing.Point(3, 394);
+ this.panel29.Location = new System.Drawing.Point(3, 49);
this.panel29.Margin = new System.Windows.Forms.Padding(0);
this.panel29.MaximumSize = new System.Drawing.Size(637, 300);
this.panel29.MinimumSize = new System.Drawing.Size(637, 23);
this.panel29.Name = "panel29";
- this.panel29.Size = new System.Drawing.Size(637, 300);
+ this.panel29.Size = new System.Drawing.Size(637, 23);
this.panel29.TabIndex = 2;
//
// toolStrip8
@@ -2942,43 +2967,13 @@ private void InitializeComponent()
this.toolStrip8.TabIndex = 3;
this.toolStrip8.Text = "toolStrip8";
//
- // toolStripButton12
+ // toolStripLabel12
//
- this.toolStripButton12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
- this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton12.Name = "toolStripButton12";
- this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton12.Text = "Clear";
+ this.toolStripLabel12.Name = "toolStripLabel12";
+ this.toolStripLabel12.Size = new System.Drawing.Size(111, 22);
+ this.toolStripLabel12.Text = "Ref Semantic Prefix:";
//
- // toolStripButton13
- //
- this.toolStripButton13.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
- this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton13.Name = "toolStripButton13";
- this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton13.Text = "Cancel";
- //
- // toolStripButton14
- //
- this.toolStripButton14.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
- this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton14.Name = "toolStripButton14";
- this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton14.Text = "Save";
- //
- // toolStripLabel12
- //
- this.toolStripLabel12.Name = "toolStripLabel12";
- this.toolStripLabel12.Size = new System.Drawing.Size(111, 22);
- this.toolStripLabel12.Text = "Ref Semantic Prefix:";
- //
- // toolStripSeparator14
+ // toolStripSeparator14
//
this.toolStripSeparator14.Name = "toolStripSeparator14";
this.toolStripSeparator14.Size = new System.Drawing.Size(6, 25);
@@ -3091,13 +3086,23 @@ private void InitializeComponent()
// tabPage16
//
this.tabPage16.BackColor = System.Drawing.Color.LightGray;
- this.tabPage16.Controls.Add(this.dataGridViewPPD);
+ this.tabPage16.Controls.Add(this.panel34);
+ this.tabPage16.Controls.Add(this.toolStrip12);
this.tabPage16.Location = new System.Drawing.Point(4, 22);
this.tabPage16.Name = "tabPage16";
this.tabPage16.Size = new System.Drawing.Size(629, 190);
this.tabPage16.TabIndex = 2;
this.tabPage16.Text = "Product Price Details";
//
+ // panel34
+ //
+ this.panel34.Controls.Add(this.dataGridViewPPD);
+ this.panel34.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel34.Location = new System.Drawing.Point(0, 25);
+ this.panel34.Name = "panel34";
+ this.panel34.Size = new System.Drawing.Size(629, 153);
+ this.panel34.TabIndex = 3;
+ //
// dataGridViewPPD
//
this.dataGridViewPPD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
@@ -3105,7 +3110,7 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn4,
this.dataGridViewTextBoxColumn5,
this.dataGridViewTextBoxColumn6});
- this.dataGridViewPPD.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewPPD.Dock = System.Windows.Forms.DockStyle.Top;
this.dataGridViewPPD.Location = new System.Drawing.Point(0, 0);
this.dataGridViewPPD.Name = "dataGridViewPPD";
this.dataGridViewPPD.Size = new System.Drawing.Size(629, 190);
@@ -3129,6 +3134,59 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
this.dataGridViewTextBoxColumn6.Width = 250;
//
+ // toolStrip12
+ //
+ this.toolStrip12.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel3,
+ this.toolStripSeparator10,
+ this.toolStripTextBox2,
+ this.toolStripSeparator11,
+ this.toolStripLabel6,
+ this.toolStripSeparator12,
+ this.toolStripTextBox3});
+ this.toolStrip12.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip12.Name = "toolStrip12";
+ this.toolStrip12.Size = new System.Drawing.Size(629, 25);
+ this.toolStrip12.TabIndex = 2;
+ this.toolStrip12.Text = "toolStrip12";
+ //
+ // toolStripLabel3
+ //
+ this.toolStripLabel3.Name = "toolStripLabel3";
+ this.toolStripLabel3.Size = new System.Drawing.Size(89, 22);
+ this.toolStripLabel3.Text = "Valid Start Date:";
+ //
+ // toolStripSeparator10
+ //
+ this.toolStripSeparator10.Name = "toolStripSeparator10";
+ this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripTextBox2
+ //
+ this.toolStripTextBox2.Name = "toolStripTextBox2";
+ this.toolStripTextBox2.Size = new System.Drawing.Size(100, 25);
+ //
+ // toolStripSeparator11
+ //
+ this.toolStripSeparator11.Name = "toolStripSeparator11";
+ this.toolStripSeparator11.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel6
+ //
+ this.toolStripLabel6.Name = "toolStripLabel6";
+ this.toolStripLabel6.Size = new System.Drawing.Size(85, 22);
+ this.toolStripLabel6.Text = "Valid End Date:";
+ //
+ // toolStripSeparator12
+ //
+ this.toolStripSeparator12.Name = "toolStripSeparator12";
+ this.toolStripSeparator12.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripTextBox3
+ //
+ this.toolStripTextBox3.Name = "toolStripTextBox3";
+ this.toolStripTextBox3.Size = new System.Drawing.Size(100, 25);
+ //
// tabPage17
//
this.tabPage17.AutoScroll = true;
@@ -3171,32 +3229,18 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
this.dataGridViewTextBoxColumn9.Width = 250;
//
- // button33
- //
- this.button33.Dock = System.Windows.Forms.DockStyle.Top;
- this.button33.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button33.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button33.Location = new System.Drawing.Point(0, 0);
- this.button33.Margin = new System.Windows.Forms.Padding(0);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(637, 23);
- this.button33.TabIndex = 1;
- this.button33.Text = "Commercial Data";
- this.button33.UseVisualStyleBackColor = true;
- this.button33.Click += new System.EventHandler(this.Button33_Click);
- //
// panel28
//
this.panel28.Controls.Add(this.toolStrip7);
this.panel28.Controls.Add(this.tabControl3);
this.panel28.Controls.Add(this.button32);
this.panel28.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel28.Location = new System.Drawing.Point(3, 197);
+ this.panel28.Location = new System.Drawing.Point(3, 26);
this.panel28.Margin = new System.Windows.Forms.Padding(0);
this.panel28.MaximumSize = new System.Drawing.Size(637, 197);
this.panel28.MinimumSize = new System.Drawing.Size(637, 23);
this.panel28.Name = "panel28";
- this.panel28.Size = new System.Drawing.Size(637, 197);
+ this.panel28.Size = new System.Drawing.Size(637, 23);
this.panel28.TabIndex = 1;
//
// toolStrip7
@@ -3214,36 +3258,6 @@ private void InitializeComponent()
this.toolStrip7.TabIndex = 3;
this.toolStrip7.Text = "toolStrip7";
//
- // toolStripButton9
- //
- this.toolStripButton9.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
- this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton9.Name = "toolStripButton9";
- this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton9.Text = "Clear";
- //
- // toolStripButton10
- //
- this.toolStripButton10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
- this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton10.Name = "toolStripButton10";
- this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton10.Text = "Cancel";
- //
- // toolStripButton11
- //
- this.toolStripButton11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
- this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton11.Name = "toolStripButton11";
- this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton11.Text = "Save";
- //
// toolStripLabel11
//
this.toolStripLabel11.Name = "toolStripLabel11";
@@ -3287,6 +3301,37 @@ private void InitializeComponent()
this.tabPage9.TabIndex = 0;
this.tabPage9.Text = "Mechanical Data";
//
+ // dataGridViewMechData
+ //
+ this.dataGridViewMechData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewMechData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn10,
+ this.dataGridViewTextBoxColumn11,
+ this.dataGridViewTextBoxColumn12});
+ this.dataGridViewMechData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewMechData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMechData.Name = "dataGridViewMechData";
+ this.dataGridViewMechData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMechData.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn10
+ //
+ this.dataGridViewTextBoxColumn10.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
+ this.dataGridViewTextBoxColumn10.Width = 175;
+ //
+ // dataGridViewTextBoxColumn11
+ //
+ this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn11.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
+ //
+ // dataGridViewTextBoxColumn12
+ //
+ this.dataGridViewTextBoxColumn12.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
+ this.dataGridViewTextBoxColumn12.Width = 250;
+ //
// tabPage10
//
this.tabPage10.BackColor = System.Drawing.Color.LightGray;
@@ -3299,6 +3344,37 @@ private void InitializeComponent()
this.tabPage10.TabIndex = 1;
this.tabPage10.Text = "Material Data";
//
+ // dataGridViewMaterialData
+ //
+ this.dataGridViewMaterialData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewMaterialData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn13,
+ this.dataGridViewTextBoxColumn14,
+ this.dataGridViewTextBoxColumn15});
+ this.dataGridViewMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewMaterialData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMaterialData.Name = "dataGridViewMaterialData";
+ this.dataGridViewMaterialData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMaterialData.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn13
+ //
+ this.dataGridViewTextBoxColumn13.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
+ this.dataGridViewTextBoxColumn13.Width = 175;
+ //
+ // dataGridViewTextBoxColumn14
+ //
+ this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn14.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
+ //
+ // dataGridViewTextBoxColumn15
+ //
+ this.dataGridViewTextBoxColumn15.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
+ this.dataGridViewTextBoxColumn15.Width = 250;
+ //
// tabPage11
//
this.tabPage11.BackColor = System.Drawing.Color.LightGray;
@@ -3309,6 +3385,37 @@ private void InitializeComponent()
this.tabPage11.TabIndex = 2;
this.tabPage11.Text = "Electrical Connection";
//
+ // dataGridViewElectricalConnection
+ //
+ this.dataGridViewElectricalConnection.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewElectricalConnection.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn16,
+ this.dataGridViewTextBoxColumn17,
+ this.dataGridViewTextBoxColumn18});
+ this.dataGridViewElectricalConnection.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewElectricalConnection.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalConnection.Name = "dataGridViewElectricalConnection";
+ this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalConnection.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn16
+ //
+ this.dataGridViewTextBoxColumn16.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
+ this.dataGridViewTextBoxColumn16.Width = 175;
+ //
+ // dataGridViewTextBoxColumn17
+ //
+ this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn17.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
+ //
+ // dataGridViewTextBoxColumn18
+ //
+ this.dataGridViewTextBoxColumn18.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
+ this.dataGridViewTextBoxColumn18.Width = 250;
+ //
// tabPage12
//
this.tabPage12.AutoScroll = true;
@@ -3320,6 +3427,37 @@ private void InitializeComponent()
this.tabPage12.TabIndex = 3;
this.tabPage12.Text = "Electrical Data";
//
+ // dataGridViewElectricalData
+ //
+ this.dataGridViewElectricalData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewElectricalData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn19,
+ this.dataGridViewTextBoxColumn20,
+ this.dataGridViewTextBoxColumn21});
+ this.dataGridViewElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewElectricalData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalData.Name = "dataGridViewElectricalData";
+ this.dataGridViewElectricalData.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalData.TabIndex = 1;
+ //
+ // dataGridViewTextBoxColumn19
+ //
+ this.dataGridViewTextBoxColumn19.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
+ this.dataGridViewTextBoxColumn19.Width = 175;
+ //
+ // dataGridViewTextBoxColumn20
+ //
+ this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn20.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
+ //
+ // dataGridViewTextBoxColumn21
+ //
+ this.dataGridViewTextBoxColumn21.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
+ this.dataGridViewTextBoxColumn21.Width = 250;
+ //
// tabPage13
//
this.tabPage13.BackColor = System.Drawing.Color.LightGray;
@@ -3396,20 +3534,6 @@ private void InitializeComponent()
this.textBox84.Size = new System.Drawing.Size(163, 20);
this.textBox84.TabIndex = 1;
//
- // button32
- //
- this.button32.Dock = System.Windows.Forms.DockStyle.Top;
- this.button32.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button32.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button32.Location = new System.Drawing.Point(0, 0);
- this.button32.Margin = new System.Windows.Forms.Padding(0);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(637, 23);
- this.button32.TabIndex = 1;
- this.button32.Text = "General Technical Data";
- this.button32.UseVisualStyleBackColor = true;
- this.button32.Click += new System.EventHandler(this.Button32_Click);
- //
// panel27
//
this.panel27.Controls.Add(this.panel32);
@@ -3420,7 +3544,7 @@ private void InitializeComponent()
this.panel27.MaximumSize = new System.Drawing.Size(637, 194);
this.panel27.MinimumSize = new System.Drawing.Size(637, 23);
this.panel27.Name = "panel27";
- this.panel27.Size = new System.Drawing.Size(637, 194);
+ this.panel27.Size = new System.Drawing.Size(637, 23);
this.panel27.TabIndex = 0;
//
// panel32
@@ -3487,100 +3611,55 @@ private void InitializeComponent()
this.toolStrip6.TabIndex = 2;
this.toolStrip6.Text = "toolStrip6";
//
- // toolStripButton6
- //
- this.toolStripButton6.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
- this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton6.Name = "toolStripButton6";
- this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton6.Text = "Clear";
- this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
+ // panel25
//
- // toolStripButton7
+ this.panel25.BackColor = System.Drawing.Color.LightGray;
+ this.panel25.Controls.Add(this.treeView2);
+ this.panel25.Controls.Add(this.toolStrip11);
+ this.panel25.Dock = System.Windows.Forms.DockStyle.Right;
+ this.panel25.Location = new System.Drawing.Point(651, 50);
+ this.panel25.Margin = new System.Windows.Forms.Padding(0);
+ this.panel25.Name = "panel25";
+ this.panel25.Size = new System.Drawing.Size(200, 586);
+ this.panel25.TabIndex = 50;
//
- this.toolStripButton7.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
- this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton7.Name = "toolStripButton7";
- this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton7.Text = "Cancel";
- //
- // toolStripButton8
- //
- this.toolStripButton8.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
- this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton8.Name = "toolStripButton8";
- this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton8.Text = "Save";
- //
- // button3
- //
- this.button3.Dock = System.Windows.Forms.DockStyle.Top;
- this.button3.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button3.Location = new System.Drawing.Point(0, 0);
- this.button3.Margin = new System.Windows.Forms.Padding(0);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(637, 23);
- this.button3.TabIndex = 0;
- this.button3.Text = "Identification Data";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.Button3_Click_1);
- //
- // panel25
- //
- this.panel25.BackColor = System.Drawing.Color.LightGray;
- this.panel25.Controls.Add(this.treeView2);
- this.panel25.Controls.Add(this.toolStrip11);
- this.panel25.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel25.Location = new System.Drawing.Point(651, 50);
- this.panel25.Margin = new System.Windows.Forms.Padding(0);
- this.panel25.Name = "panel25";
- this.panel25.Size = new System.Drawing.Size(200, 586);
- this.panel25.TabIndex = 50;
- //
- // treeView2
+ // treeView2
//
this.treeView2.BackColor = System.Drawing.Color.LightGray;
this.treeView2.Dock = System.Windows.Forms.DockStyle.Top;
this.treeView2.Location = new System.Drawing.Point(0, 25);
this.treeView2.Name = "treeView2";
- treeNode1.Name = "Node10";
- treeNode1.Text = "Node10";
- treeNode2.Name = "Node11";
- treeNode2.Text = "Node11";
- treeNode3.Name = "Node6";
- treeNode3.Text = "Node6";
- treeNode4.Name = "Node7";
- treeNode4.Text = "Node7";
- treeNode5.Name = "Node0";
- treeNode5.Text = "Node0";
- treeNode6.Name = "Node8";
- treeNode6.Text = "Node8";
- treeNode7.Name = "Node9";
- treeNode7.Text = "Node9";
- treeNode8.Name = "Node1";
- treeNode8.Text = "Node1";
- treeNode9.Name = "Node2";
- treeNode9.Text = "Node2";
- treeNode10.Name = "Node3";
- treeNode10.Text = "Node3";
- treeNode11.Name = "Node4";
- treeNode11.Text = "Node4";
- treeNode12.Name = "Node5";
- treeNode12.Text = "Node5";
+ treeNode25.Name = "Node10";
+ treeNode25.Text = "Node10";
+ treeNode26.Name = "Node11";
+ treeNode26.Text = "Node11";
+ treeNode27.Name = "Node6";
+ treeNode27.Text = "Node6";
+ treeNode28.Name = "Node7";
+ treeNode28.Text = "Node7";
+ treeNode29.Name = "Node0";
+ treeNode29.Text = "Node0";
+ treeNode30.Name = "Node8";
+ treeNode30.Text = "Node8";
+ treeNode31.Name = "Node9";
+ treeNode31.Text = "Node9";
+ treeNode32.Name = "Node1";
+ treeNode32.Text = "Node1";
+ treeNode33.Name = "Node2";
+ treeNode33.Text = "Node2";
+ treeNode34.Name = "Node3";
+ treeNode34.Text = "Node3";
+ treeNode35.Name = "Node4";
+ treeNode35.Text = "Node4";
+ treeNode36.Name = "Node5";
+ treeNode36.Text = "Node5";
this.treeView2.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
- treeNode5,
- treeNode8,
- treeNode9,
- treeNode10,
- treeNode11,
- treeNode12});
+ treeNode29,
+ treeNode32,
+ treeNode33,
+ treeNode34,
+ treeNode35,
+ treeNode36});
this.treeView2.Size = new System.Drawing.Size(200, 230);
this.treeView2.TabIndex = 2;
//
@@ -3705,6 +3784,454 @@ private void InitializeComponent()
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripSeparator15
+ //
+ this.toolStripSeparator15.Name = "toolStripSeparator15";
+ this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator8
+ //
+ this.toolStripSeparator8.Name = "toolStripSeparator8";
+ this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.Location = new System.Drawing.Point(0, 735);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
+ this.statusStrip1.TabIndex = 46;
+ this.statusStrip1.Text = "statusStrip1";
+ //
+ // toolStrip3
+ //
+ this.toolStrip3.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip3.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel1,
+ this.toolStripTextBox1});
+ this.toolStrip3.Location = new System.Drawing.Point(0, 710);
+ this.toolStrip3.Name = "toolStrip3";
+ this.toolStrip3.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip3.TabIndex = 48;
+ this.toolStrip3.Text = "toolStrip3";
+ //
+ // toolStripLabel1
+ //
+ this.toolStripLabel1.Name = "toolStripLabel1";
+ this.toolStripLabel1.Size = new System.Drawing.Size(83, 22);
+ this.toolStripLabel1.Text = "Comment line";
+ //
+ // toolStripTextBox1
+ //
+ this.toolStripTextBox1.Name = "toolStripTextBox1";
+ this.toolStripTextBox1.Size = new System.Drawing.Size(800, 25);
+ //
+ // contextMenuStrip1
+ //
+ this.contextMenuStrip1.Name = "contextMenuStrip1";
+ this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
+ //
+ // connectorTypelabel
+ //
+ this.connectorTypelabel.Name = "connectorTypelabel";
+ this.connectorTypelabel.Size = new System.Drawing.Size(91, 22);
+ this.connectorTypelabel.Text = "Connector Type";
+ //
+ // toolStripSeparator41
+ //
+ this.toolStripSeparator41.Name = "toolStripSeparator41";
+ this.toolStripSeparator41.Size = new System.Drawing.Size(6, 25);
+ //
+ // connectorTypeCmbx
+ //
+ this.connectorTypeCmbx.Items.AddRange(new object[] {
+ "Male",
+ "Female"});
+ this.connectorTypeCmbx.Name = "connectorTypeCmbx";
+ this.connectorTypeCmbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripLabel13
+ //
+ this.toolStripLabel13.Name = "toolStripLabel13";
+ this.toolStripLabel13.Size = new System.Drawing.Size(66, 22);
+ this.toolStripLabel13.Text = "Connector ";
+ //
+ // toolStripSeparator27
+ //
+ this.toolStripSeparator27.Name = "toolStripSeparator27";
+ this.toolStripSeparator27.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripComboBox1
+ //
+ this.toolStripComboBox1.Items.AddRange(new object[] {
+ "M-5 Connector",
+ "M-8 Connector",
+ "M-12 Connector",
+ "RJ-45 Ethernet Connector",
+ "7/8-Inch Power Supply Connector",
+ "Others"});
+ this.toolStripComboBox1.Name = "toolStripComboBox1";
+ this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
+ //
+ // toolStripSeparator26
+ //
+ this.toolStripSeparator26.Name = "toolStripSeparator26";
+ this.toolStripSeparator26.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripSeparator34
+ //
+ this.toolStripSeparator34.Name = "toolStripSeparator34";
+ this.toolStripSeparator34.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel19
+ //
+ this.toolStripLabel19.Name = "toolStripLabel19";
+ this.toolStripLabel19.Size = new System.Drawing.Size(0, 22);
+ //
+ // toolStrip14
+ //
+ this.toolStrip14.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel13,
+ this.toolStripSeparator27,
+ this.toolStripComboBox1,
+ this.toolStripSeparator26,
+ this.addConnector,
+ this.toolStripSeparator34,
+ this.toolStripButton15,
+ this.toolStripLabel19});
+ this.toolStrip14.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip14.Name = "toolStrip14";
+ this.toolStrip14.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip14.TabIndex = 0;
+ this.toolStrip14.Text = "Connector";
+ //
+ // addPinsButton
+ //
+ this.addPinsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addPinsButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.addPinsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addPinsButton.Name = "addPinsButton";
+ this.addPinsButton.Size = new System.Drawing.Size(33, 22);
+ this.addPinsButton.Text = "Add";
+ this.addPinsButton.Click += new System.EventHandler(this.ToolStripButton3_Click_2);
+ //
+ // toolStripButton3
+ //
+ this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
+ this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton3.Name = "toolStripButton3";
+ this.toolStripButton3.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton3.Text = "Clear";
+ this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3_Click_3);
+ //
+ // toolStripButton15
+ //
+ this.toolStripButton15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton15.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_löschen_26;
+ this.toolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton15.Name = "toolStripButton15";
+ this.toolStripButton15.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton15.Text = "Clear";
+ this.toolStripButton15.Click += new System.EventHandler(this.ToolStripButton15_Click);
+ //
+ // toolStripButton18
+ //
+ this.toolStripButton18.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton18.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.toolStripButton18.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton18.Name = "toolStripButton18";
+ this.toolStripButton18.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton18.Text = "Add";
+ this.toolStripButton18.Click += new System.EventHandler(this.ToolStripButton18_Click);
+ //
+ // toolStripButton19
+ //
+ this.toolStripButton19.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton19.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton19.Image")));
+ this.toolStripButton19.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton19.Name = "toolStripButton19";
+ this.toolStripButton19.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton19.Text = "Clear";
+ this.toolStripButton19.Click += new System.EventHandler(this.ToolStripButton19_Click);
+ //
+ // toolStripButton16
+ //
+ this.toolStripButton16.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton16.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.toolStripButton16.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton16.Name = "toolStripButton16";
+ this.toolStripButton16.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton16.Text = "Add";
+ this.toolStripButton16.Click += new System.EventHandler(this.ToolStripButton16_Click);
+ //
+ // toolStripButton17
+ //
+ this.toolStripButton17.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton17.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton17.Image")));
+ this.toolStripButton17.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton17.Name = "toolStripButton17";
+ this.toolStripButton17.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton17.Text = "Clear";
+ this.toolStripButton17.Click += new System.EventHandler(this.ToolStripButton17_Click);
+ //
+ // addInterfaces
+ //
+ this.addInterfaces.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addInterfaces.Image = ((System.Drawing.Image)(resources.GetObject("addInterfaces.Image")));
+ this.addInterfaces.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addInterfaces.Name = "addInterfaces";
+ this.addInterfaces.Size = new System.Drawing.Size(33, 22);
+ this.addInterfaces.Text = "Add";
+ this.addInterfaces.Click += new System.EventHandler(this.ToolStripButton3_Click_1);
+ //
+ // toolStripButton4
+ //
+ this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
+ this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton4.Name = "toolStripButton4";
+ this.toolStripButton4.Size = new System.Drawing.Size(44, 22);
+ this.toolStripButton4.Text = "Delete";
+ //
+ // toolStripButton5
+ //
+ this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
+ this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton5.Name = "toolStripButton5";
+ this.toolStripButton5.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton5.Text = "Clear";
+ //
+ // button2
+ //
+ this.button2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button2.Location = new System.Drawing.Point(0, 0);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(637, 23);
+ this.button2.TabIndex = 0;
+ this.button2.Text = "Electrical Interface";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2_Click);
+ //
+ // button11
+ //
+ this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button11.Location = new System.Drawing.Point(262, 2);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(30, 25);
+ this.button11.TabIndex = 4;
+ this.button11.UseVisualStyleBackColor = true;
+ //
+ // button12
+ //
+ this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button12.Location = new System.Drawing.Point(262, 3);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(30, 25);
+ this.button12.TabIndex = 5;
+ this.button12.UseVisualStyleBackColor = true;
+ //
+ // button13
+ //
+ this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button13.Location = new System.Drawing.Point(262, 3);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(30, 25);
+ this.button13.TabIndex = 6;
+ this.button13.UseVisualStyleBackColor = true;
+ //
+ // button10
+ //
+ this.button10.BackColor = System.Drawing.Color.DarkGray;
+ this.button10.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button10.Location = new System.Drawing.Point(0, 0);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(600, 25);
+ this.button10.TabIndex = 0;
+ this.button10.Text = "+ Add Documents ";
+ this.button10.UseVisualStyleBackColor = false;
+ this.button10.Click += new System.EventHandler(this.Button10_Click);
+ //
+ // button4
+ //
+ this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button4.Location = new System.Drawing.Point(262, 3);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(30, 25);
+ this.button4.TabIndex = 1;
+ this.button4.UseVisualStyleBackColor = true;
+ //
+ // button5
+ //
+ this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button5.Location = new System.Drawing.Point(262, 3);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(30, 25);
+ this.button5.TabIndex = 2;
+ this.button5.UseVisualStyleBackColor = true;
+ //
+ // button9
+ //
+ this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button9.Location = new System.Drawing.Point(262, 3);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(30, 25);
+ this.button9.TabIndex = 3;
+ this.button9.UseVisualStyleBackColor = true;
+ //
+ // button1
+ //
+ this.button1.BackColor = System.Drawing.Color.DarkGray;
+ this.button1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button1.Location = new System.Drawing.Point(0, 0);
+ this.button1.Margin = new System.Windows.Forms.Padding(0);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(600, 25);
+ this.button1.TabIndex = 0;
+ this.button1.Text = "+ Add Logo";
+ this.button1.UseVisualStyleBackColor = false;
+ this.button1.Click += new System.EventHandler(this.Button1_Click);
+ //
+ // toolStripButton12
+ //
+ this.toolStripButton12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
+ this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton12.Name = "toolStripButton12";
+ this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton12.Text = "Clear";
+ //
+ // toolStripButton13
+ //
+ this.toolStripButton13.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
+ this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton13.Name = "toolStripButton13";
+ this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton13.Text = "Cancel";
+ //
+ // toolStripButton14
+ //
+ this.toolStripButton14.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
+ this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton14.Name = "toolStripButton14";
+ this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton14.Text = "Save";
+ //
+ // button33
+ //
+ this.button33.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button33.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button33.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button33.Location = new System.Drawing.Point(0, 0);
+ this.button33.Margin = new System.Windows.Forms.Padding(0);
+ this.button33.Name = "button33";
+ this.button33.Size = new System.Drawing.Size(637, 23);
+ this.button33.TabIndex = 1;
+ this.button33.Text = "Commercial Data";
+ this.button33.UseVisualStyleBackColor = true;
+ this.button33.Click += new System.EventHandler(this.Button33_Click);
+ //
+ // toolStripButton9
+ //
+ this.toolStripButton9.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
+ this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton9.Name = "toolStripButton9";
+ this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton9.Text = "Clear";
+ //
+ // toolStripButton10
+ //
+ this.toolStripButton10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
+ this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton10.Name = "toolStripButton10";
+ this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton10.Text = "Cancel";
+ //
+ // toolStripButton11
+ //
+ this.toolStripButton11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
+ this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton11.Name = "toolStripButton11";
+ this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton11.Text = "Save";
+ //
+ // button32
+ //
+ this.button32.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button32.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button32.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button32.Location = new System.Drawing.Point(0, 0);
+ this.button32.Margin = new System.Windows.Forms.Padding(0);
+ this.button32.Name = "button32";
+ this.button32.Size = new System.Drawing.Size(637, 23);
+ this.button32.TabIndex = 1;
+ this.button32.Text = "General Technical Data";
+ this.button32.UseVisualStyleBackColor = true;
+ this.button32.Click += new System.EventHandler(this.Button32_Click);
+ //
+ // toolStripButton6
+ //
+ this.toolStripButton6.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
+ this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton6.Name = "toolStripButton6";
+ this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton6.Text = "Clear";
+ this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
+ //
+ // toolStripButton7
+ //
+ this.toolStripButton7.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
+ this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton7.Name = "toolStripButton7";
+ this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton7.Text = "Cancel";
+ //
+ // toolStripButton8
+ //
+ this.toolStripButton8.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
+ this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton8.Name = "toolStripButton8";
+ this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton8.Text = "Save";
+ //
+ // button3
+ //
+ this.button3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button3.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button3.Location = new System.Drawing.Point(0, 0);
+ this.button3.Margin = new System.Windows.Forms.Padding(0);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(637, 23);
+ this.button3.TabIndex = 0;
+ this.button3.Text = "Identification Data";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3_Click_1);
+ //
// addSemanticSystems
//
this.addSemanticSystems.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@@ -3715,11 +4242,6 @@ private void InitializeComponent()
this.addSemanticSystems.Text = "addSemanticSystems";
this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
//
- // toolStripSeparator15
- //
- this.toolStripSeparator15.Name = "toolStripSeparator15";
- this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
- //
// cancelSemanticSystem
//
this.cancelSemanticSystem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@@ -3730,11 +4252,6 @@ private void InitializeComponent()
this.cancelSemanticSystem.Text = "toolStripButton3";
this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
//
- // toolStripSeparator8
- //
- this.toolStripSeparator8.Name = "toolStripSeparator8";
- this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
- //
// generaterAML
//
this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
@@ -3743,166 +4260,107 @@ private void InitializeComponent()
this.generaterAML.Size = new System.Drawing.Size(74, 22);
this.generaterAML.Text = "Generate";
//
- // statusStrip1
- //
- this.statusStrip1.Location = new System.Drawing.Point(0, 735);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
- this.statusStrip1.TabIndex = 46;
- this.statusStrip1.Text = "statusStrip1";
- //
- // toolStrip3
- //
- this.toolStrip3.BackColor = System.Drawing.SystemColors.ControlLight;
- this.toolStrip3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripLabel1,
- this.toolStripTextBox1});
- this.toolStrip3.Location = new System.Drawing.Point(0, 710);
- this.toolStrip3.Name = "toolStrip3";
- this.toolStrip3.Size = new System.Drawing.Size(1090, 25);
- this.toolStrip3.TabIndex = 48;
- this.toolStrip3.Text = "toolStrip3";
- //
- // toolStripLabel1
- //
- this.toolStripLabel1.Name = "toolStripLabel1";
- this.toolStripLabel1.Size = new System.Drawing.Size(83, 22);
- this.toolStripLabel1.Text = "Comment line";
- //
- // toolStripTextBox1
- //
- this.toolStripTextBox1.Name = "toolStripTextBox1";
- this.toolStripTextBox1.Size = new System.Drawing.Size(800, 25);
- //
- // contextMenuStrip1
- //
- this.contextMenuStrip1.Name = "contextMenuStrip1";
- this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
- //
- // dataGridViewMechData
- //
- this.dataGridViewMechData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridViewMechData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.dataGridViewTextBoxColumn12});
- this.dataGridViewMechData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewMechData.Location = new System.Drawing.Point(3, 3);
- this.dataGridViewMechData.Name = "dataGridViewMechData";
- this.dataGridViewMechData.Size = new System.Drawing.Size(623, 117);
- this.dataGridViewMechData.TabIndex = 1;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.HeaderText = "ID";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.Width = 175;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn11.HeaderText = "Attributes";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.HeaderText = "Value";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.Width = 250;
- //
- // dataGridViewMaterialData
- //
- this.dataGridViewMaterialData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridViewMaterialData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15});
- this.dataGridViewMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewMaterialData.Location = new System.Drawing.Point(3, 3);
- this.dataGridViewMaterialData.Name = "dataGridViewMaterialData";
- this.dataGridViewMaterialData.Size = new System.Drawing.Size(623, 117);
- this.dataGridViewMaterialData.TabIndex = 1;
- //
- // dataGridViewTextBoxColumn13
+ // toolStripButton1
//
- this.dataGridViewTextBoxColumn13.HeaderText = "ID";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.Width = 175;
+ this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
+ this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton1.Name = "toolStripButton1";
+ this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton1.Text = "toolStripButton1";
+ this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
//
- // dataGridViewTextBoxColumn14
+ // toolStripButton2
//
- this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn14.HeaderText = "Attributes";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
+ this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
+ this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton2.Name = "toolStripButton2";
+ this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton2.Text = "toolStripButton2";
//
- // dataGridViewTextBoxColumn15
+ // newToolStripButton
//
- this.dataGridViewTextBoxColumn15.HeaderText = "Value";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.Width = 250;
+ this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
+ this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.newToolStripButton.Name = "newToolStripButton";
+ this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.newToolStripButton.Text = "&New";
//
- // dataGridViewElectricalConnection
+ // openToolStripButton
//
- this.dataGridViewElectricalConnection.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridViewElectricalConnection.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18});
- this.dataGridViewElectricalConnection.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewElectricalConnection.Location = new System.Drawing.Point(0, 0);
- this.dataGridViewElectricalConnection.Name = "dataGridViewElectricalConnection";
- this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(629, 123);
- this.dataGridViewElectricalConnection.TabIndex = 1;
+ this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
+ this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.openToolStripButton.Name = "openToolStripButton";
+ this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.openToolStripButton.Text = "&Open";
//
- // dataGridViewTextBoxColumn16
+ // saveToolStripButton
//
- this.dataGridViewTextBoxColumn16.HeaderText = "ID";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.Width = 175;
+ this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
+ this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.saveToolStripButton.Name = "saveToolStripButton";
+ this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.saveToolStripButton.Text = "&Save";
+ this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
//
- // dataGridViewTextBoxColumn17
+ // printToolStripButton
//
- this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn17.HeaderText = "Attributes";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
+ this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
+ this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.printToolStripButton.Name = "printToolStripButton";
+ this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.printToolStripButton.Text = "&Print";
//
- // dataGridViewTextBoxColumn18
+ // cutToolStripButton
//
- this.dataGridViewTextBoxColumn18.HeaderText = "Value";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.Width = 250;
+ this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
+ this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.cutToolStripButton.Name = "cutToolStripButton";
+ this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.cutToolStripButton.Text = "C&ut";
//
- // dataGridViewElectricalData
+ // copyToolStripButton
//
- this.dataGridViewElectricalData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridViewElectricalData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21});
- this.dataGridViewElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewElectricalData.Location = new System.Drawing.Point(0, 0);
- this.dataGridViewElectricalData.Name = "dataGridViewElectricalData";
- this.dataGridViewElectricalData.Size = new System.Drawing.Size(629, 123);
- this.dataGridViewElectricalData.TabIndex = 1;
+ this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
+ this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.copyToolStripButton.Name = "copyToolStripButton";
+ this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.copyToolStripButton.Text = "&Copy";
//
- // dataGridViewTextBoxColumn19
+ // pasteToolStripButton
//
- this.dataGridViewTextBoxColumn19.HeaderText = "ID";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.Width = 175;
+ this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
+ this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.pasteToolStripButton.Name = "pasteToolStripButton";
+ this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.pasteToolStripButton.Text = "&Paste";
//
- // dataGridViewTextBoxColumn20
+ // helpToolStripButton
//
- this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.dataGridViewTextBoxColumn20.HeaderText = "Attributes";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
+ this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
+ this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.helpToolStripButton.Name = "helpToolStripButton";
+ this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.helpToolStripButton.Text = "He&lp";
//
- // dataGridViewTextBoxColumn21
+ // addConnector
//
- this.dataGridViewTextBoxColumn21.HeaderText = "Value";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.Width = 250;
+ this.addConnector.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addConnector.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_mathe_30;
+ this.addConnector.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addConnector.Name = "addConnector";
+ this.addConnector.Size = new System.Drawing.Size(33, 22);
+ this.addConnector.Text = "Add";
+ this.addConnector.Click += new System.EventHandler(this.AddConnector_Click);
//
// CreateDevice
//
@@ -3953,20 +4411,34 @@ private void InitializeComponent()
this.tableLayoutPanel1.PerformLayout();
this.tabPage5.ResumeLayout(false);
this.panel4.ResumeLayout(false);
- this.panel24.ResumeLayout(false);
- this.panel8.ResumeLayout(false);
- this.panel22.ResumeLayout(false);
- this.tableLayoutPanel5.ResumeLayout(false);
- this.tableLayoutPanel5.PerformLayout();
- this.panel7.ResumeLayout(false);
- this.panel21.ResumeLayout(false);
+ this.panel4.PerformLayout();
this.panel5.ResumeLayout(false);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage7.ResumeLayout(false);
+ this.tabPage7.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPinInfo)).EndInit();
+ this.toolStrip18.ResumeLayout(false);
+ this.toolStrip18.PerformLayout();
this.panel20.ResumeLayout(false);
- this.tableLayoutPanel2.ResumeLayout(false);
- this.tableLayoutPanel2.PerformLayout();
+ this.panel20.PerformLayout();
+ this.panel21.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIElectricalData)).EndInit();
+ this.toolStrip17.ResumeLayout(false);
+ this.toolStrip17.PerformLayout();
+ this.tabPage8.ResumeLayout(false);
+ this.tabPage8.PerformLayout();
+ this.panel7.ResumeLayout(false);
+ this.panel7.PerformLayout();
+ this.panel8.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorDimensions)).EndInit();
+ this.toolStrip16.ResumeLayout(false);
+ this.toolStrip16.PerformLayout();
this.panel6.ResumeLayout(false);
- this.tableLayoutPanel3.ResumeLayout(false);
- this.tableLayoutPanel3.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIMountingData)).EndInit();
+ this.toolStrip15.ResumeLayout(false);
+ this.toolStrip15.PerformLayout();
+ this.toolStrip13.ResumeLayout(false);
+ this.toolStrip13.PerformLayout();
this.tabPage6.ResumeLayout(false);
this.panel9.ResumeLayout(false);
this.panel14.ResumeLayout(false);
@@ -4000,7 +4472,11 @@ private void InitializeComponent()
this.tabPage15.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPOD)).EndInit();
this.tabPage16.ResumeLayout(false);
+ this.tabPage16.PerformLayout();
+ this.panel34.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewPPD)).EndInit();
+ this.toolStrip12.ResumeLayout(false);
+ this.toolStrip12.PerformLayout();
this.tabPage17.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewMD)).EndInit();
this.panel28.ResumeLayout(false);
@@ -4009,9 +4485,13 @@ private void InitializeComponent()
this.toolStrip7.PerformLayout();
this.tabControl3.ResumeLayout(false);
this.tabPage9.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).EndInit();
this.tabPage10.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).EndInit();
this.tabPage11.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).EndInit();
this.tabPage12.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).EndInit();
this.tabPage13.ResumeLayout(false);
this.tableLayoutPanel17.ResumeLayout(false);
this.tableLayoutPanel17.PerformLayout();
@@ -4032,10 +4512,8 @@ private void InitializeComponent()
this.toolStrip4.PerformLayout();
this.toolStrip3.ResumeLayout(false);
this.toolStrip3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMechData)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterialData)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalConnection)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridViewElectricalData)).EndInit();
+ this.toolStrip14.ResumeLayout(false);
+ this.toolStrip14.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
@@ -4188,42 +4666,6 @@ private void InitializeComponent()
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.TabPage tabPage5;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.Panel panel22;
- private System.Windows.Forms.Button button26;
- private System.Windows.Forms.Button button27;
- private System.Windows.Forms.Button button28;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Panel panel7;
- private System.Windows.Forms.Panel panel21;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.Button button24;
- private System.Windows.Forms.Button button25;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.Panel panel20;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.TextBox textBox18;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.TextBox textBox17;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.TextBox textBox16;
- private System.Windows.Forms.ComboBox comboBox3;
- private System.Windows.Forms.Panel panel6;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.Button button6;
private System.Windows.Forms.TabPage tabPage6;
private System.Windows.Forms.Panel panel9;
private System.Windows.Forms.Panel panel14;
@@ -4264,8 +4706,6 @@ private void InitializeComponent()
private System.Windows.Forms.Button button9;
private System.Windows.Forms.TextBox textBox21;
private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Panel panel24;
- private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.TextBox textBox1;
@@ -4386,5 +4826,112 @@ private void InitializeComponent()
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
+ private System.Windows.Forms.Panel panel34;
+ private System.Windows.Forms.ToolStrip toolStrip12;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel3;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox2;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel6;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox3;
+ private System.Windows.Forms.Panel panel4;
+ private System.Windows.Forms.Panel panel5;
+ private System.Windows.Forms.ToolStrip toolStrip13;
+ private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.ToolStripDropDownButton interfaceNumberdrpdwn;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
+ private System.Windows.Forms.ToolStripComboBox interfacesNumberTxtbx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator18;
+ private System.Windows.Forms.ToolStripButton addInterfaces;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
+ private System.Windows.Forms.ToolStripButton toolStripButton4;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator20;
+ private System.Windows.Forms.ToolStripButton toolStripButton5;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator21;
+ private System.Windows.Forms.TabControl tabControl1;
+ private System.Windows.Forms.TabPage tabPage7;
+ private System.Windows.Forms.DataGridView dataGridViewPinInfo;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column18;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
+ private System.Windows.Forms.ToolStrip toolStrip18;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel17;
+ private System.Windows.Forms.Panel panel20;
+ private System.Windows.Forms.Panel panel21;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIElectricalData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column14;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column15;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column16;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column17;
+ private System.Windows.Forms.ToolStrip toolStrip17;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel16;
+ private System.Windows.Forms.TabPage tabPage8;
+ private System.Windows.Forms.Panel panel7;
+ private System.Windows.Forms.Panel panel8;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIConnectorDimensions;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column10;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column11;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column12;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column13;
+ private System.Windows.Forms.ToolStrip toolStrip16;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel15;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator28;
+ private System.Windows.Forms.ToolStrip toolStrip15;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel14;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator25;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel8;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator24;
+ private System.Windows.Forms.ToolStripComboBox connectorStyleCmbx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator23;
+ private System.Windows.Forms.TabPage tabPage18;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator30;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel18;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator31;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator32;
+ private System.Windows.Forms.ToolStripButton addPinsButton;
+ private System.Windows.Forms.ToolStripTextBox pinNumberTxtBx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator33;
+ private System.Windows.Forms.ToolStripButton toolStripButton3;
+ private System.Windows.Forms.TabPage tabPage19;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel20;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator35;
+ private System.Windows.Forms.ToolStripComboBox toolStripComboBox2;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator36;
+ private System.Windows.Forms.Panel panel6;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIMountingData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
+ private System.Windows.Forms.ToolStripComboBox mountingCmbx;
+ private System.Windows.Forms.ToolStripLabel connectorVersion;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator22;
+ private System.Windows.Forms.ToolStripComboBox connectorVersionCmbx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator39;
+ private System.Windows.Forms.ToolStripButton toolStripButton18;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator40;
+ private System.Windows.Forms.ToolStripButton toolStripButton19;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator37;
+ private System.Windows.Forms.ToolStripButton toolStripButton16;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator38;
+ private System.Windows.Forms.ToolStripButton toolStripButton17;
+ private System.Windows.Forms.TabPage tabPage20;
+ private System.Windows.Forms.ToolStrip toolStrip14;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel13;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator27;
+ private System.Windows.Forms.ToolStripComboBox toolStripComboBox1;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator26;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator34;
+ private System.Windows.Forms.ToolStripButton toolStripButton15;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel19;
+ private System.Windows.Forms.ToolStripLabel connectorTypelabel;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator41;
+ private System.Windows.Forms.ToolStripComboBox connectorTypeCmbx;
+ private System.Windows.Forms.ToolStripButton addConnector;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index ebcdefe..51cd2ee 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -15,6 +15,7 @@ public partial class CreateDevice
// Controller class to pass the data to
MWController mWController;
+ AnimationClass AMC = new AnimationClass();
// flag if we are creating a new device or editing one
bool isEditing = false;
@@ -376,48 +377,7 @@ private void Panel4_Paint(object sender, PaintEventArgs e)
}
- private void Button6_Click(object sender, EventArgs e)
- {
- if (panel5.Size == panel5.MaximumSize)
- {
- panel5.Size = panel5.MinimumSize;
- button6.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel5.Size = panel5.MaximumSize;
- button6.Image = Resources.icons8_collapse_arrow_24;
- }
- }
-
- private void Button7_Click(object sender, EventArgs e)
- {
- if (panel7.Size == panel7.MaximumSize)
- {
- panel7.Size = panel7.MinimumSize;
- button7.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel7.Size = panel7.MaximumSize;
- button7.Image = Resources.icons8_collapse_arrow_24;
- }
-
- }
-
- private void Button8_Click(object sender, EventArgs e)
- {
- if (panel8.Size == panel8.MaximumSize)
- {
- panel8.Size = panel8.MinimumSize;
- button8.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel8.Size = panel8.MaximumSize;
- button8.Image = Resources.icons8_collapse_arrow_24;
- }
- }
+
private void SplitContainer1_SplitterMoved(object sender, SplitterEventArgs e)
{
@@ -436,45 +396,17 @@ private void TableLayoutPanel6_Paint(object sender, PaintEventArgs e)
private void Button1_Click(object sender, EventArgs e)
{
- if (panel10.Size == panel10.MaximumSize)
- {
- panel10.Size = panel10.MinimumSize;
- button1.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel10.Size = panel10.MaximumSize;
- button1.Image = Resources.icons8_collapse_arrow_24;
- }
+ AMC.WindowSizeChanger(panel10,button1);
+
}
private void Button10_Click(object sender, EventArgs e)
{
- if (panel14.Size == panel14.MaximumSize)
- {
- panel14.Size = panel14.MinimumSize;
- button10.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel14.Size = panel14.MaximumSize;
- button10.Image = Resources.icons8_collapse_arrow_24;
- }
+ AMC.WindowSizeChanger(panel14,button10);
+
}
- private void Button2_Click(object sender, EventArgs e)
- {
- if (panel24.Size == panel24.MaximumSize)
- {
- panel24.Size = panel24.MinimumSize;
- button2.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel24.Size = panel24.MaximumSize;
- button2.Image = Resources.icons8_collapse_arrow_24;
- }
- }
+
private void TextBox4_TextChanged(object sender, EventArgs e)
{
@@ -501,44 +433,19 @@ private void Panel28_Paint(object sender, PaintEventArgs e)
private void Button3_Click_1(object sender, EventArgs e)
{
- if (panel27.Size == panel27.MaximumSize)
- {
- panel27.Size = panel27.MinimumSize;
- button3.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel27.Size = panel27.MaximumSize;
- button3.Image = Resources.icons8_collapse_arrow_24;
- }
+ AMC.WindowSizeChanger(panel27,button3);
}
private void Button32_Click(object sender, EventArgs e)
{
- if (panel28.Size == panel28.MaximumSize)
- {
- panel28.Size = panel28.MinimumSize;
- button32.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel28.Size = panel28.MaximumSize;
- button32.Image = Resources.icons8_collapse_arrow_24;
- }
+ AMC.WindowSizeChanger(panel28, button32);
+
}
private void Button33_Click(object sender, EventArgs e)
{
- if (panel29.Size == panel29.MaximumSize)
- {
- panel29.Size = panel29.MinimumSize;
- button33.Image = Resources.icons8_expand_arrow_24;
- }
- else
- {
- panel29.Size = panel29.MaximumSize;
- button33.Image = Resources.icons8_collapse_arrow_24;
- }
+ AMC.WindowSizeChanger(panel29, button33);
+
}
@@ -548,96 +455,70 @@ private void Button33_Click(object sender, EventArgs e)
private void AddSemanticSystems_Click(object sender, EventArgs e)
{
- if(semanticSystemCmbx.Text == "eClass")
+ if (semanticSystemCmbx.SelectedItem != null)
{
+ // Call "Datatables Class" from the "Dictionary File/Class" and store in "datatables"
+ Datatables datatables = new Datatables();
+ // Call "ThreeParametersdatatable" method from "Dictionary Class" and store in "datatablesheader" Seperately for PD,POD,PPD,MD
+ DataTable datatableheadersPD = datatables.Parametersdatatable();
+ DataTable datatableheadersPPD = datatables.Parametersdatatable();
+ DataTable datatableheadersPOD = datatables.Parametersdatatable();
+ DataTable datatableheadersMD = datatables.Parametersdatatable();
- /* Datatables productDetails = new Datatables();
- DataTable createProductDetailsdatatable = productDetails.ThreeParametersdatatable();
-
-
- CommercialDataDictionary productDetailsDictionary = new CommercialDataDictionary();
- Dictionary productDetailsDictionaryParameters = productDetailsDictionary.ProductDetails();
-
- productDetails.CreateParameter(productDetailsDictionaryParameters, createProductDetailsdatatable, dataGridViewPD);
-
- semanticSystemdrpdwn.DropDownItems.Add(semanticSystemCmbx.Text);*/
-
- Datatables a = new Datatables();
- DataTable b = a.ThreeParametersdatatable();
-
+ // Call ""Commercialdatadictionary Class" From "Dictioanry File/Class" and store in "CDD"
+ CommercialDataDictionary CDD = new CommercialDataDictionary();
+ // Call "Product Details" method from "CommercialDataDictionary" and store in "PD"
+ Dictionary PD = CDD.ProductDetails();
- DictionaryeClass n = new DictionaryeClass();
- Dictionary IDP = n.eClassIdentificationdataParameters();
+ // Call "Product Price Details" method from "CommercialDataDictionary" and store in "PPD"
+ Dictionary PPD = CDD.ProductPriceDetails();
- a.CreateParameter(IDP,b,dataGridViewIDT);
-
- /* DataTable ProductDetailsdatatable = new DataTable();
- ProductDetailsdatatable.Columns.Add("ReferenceID");
- ProductDetailsdatatable.Columns.Add("Attribute");
- ProductDetailsdatatable.Columns.Add("Value");
- CommercialDataDictionary p = new CommercialDataDictionary();
- Dictionary PDP = p.ProductDetails();
-
- // Foreach loop for looping every parameters in the Dictionary
- foreach (KeyValuePair eClassKeyValuePair in PDP)
- {
- Parameters par = eClassKeyValuePair.Value;
+ // Call "Product Order Details" method from "CommercialDataDictionary" and store in "POD"
+ Dictionary POD = CDD.ProductOrderDetails();
- DataRow row = ProductDetailsdatatable.NewRow();
- row["ReferenceID"] = par.RefSemanticPrefix;
- row["Attribute"] = par.Parameter;
- row["Value"] = "";
- ProductDetailsdatatable.Rows.Add(row);
+ // Call "Manufacturer Details" method from "CommercialDataDictionary" and store in "MD"
+ Dictionary MD = CDD.ManufacturerDetails();
- }
- // For each loop creating the rows in the data table
- foreach (DataRow IDT in ProductDetailsdatatable.Rows)
- {
- int num = dataGridViewPD.Rows.Add();
- dataGridViewPD.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
- dataGridViewPD.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
- dataGridViewPD.Rows[num].Cells[2].Value = IDT["Value"].ToString();
- }*/
+ //
+ datatables.CreateDataTableWith3Columns(PD, datatableheadersPD, dataGridViewPD);
-
+ datatables.CreateDataTableWith3Columns(PPD, datatableheadersPPD, dataGridViewPPD);
+ datatables.CreateDataTableWith3Columns(POD, datatableheadersPOD, dataGridViewPOD);
+ datatables.CreateDataTableWith3Columns(MD, datatableheadersMD, dataGridViewMD);
+ treeViewCH.Nodes.Add("Generic Data");
- }
- if (semanticSystemCmbx.Text == "IRDI")
- {
- semanticSystemdrpdwn.DropDownItems.Add(semanticSystemCmbx.Text);
- Datatables a = new Datatables();
- DataTable b = a.ThreeParametersdatatable();
- DictionaryIRDI n = new DictionaryIRDI();
- Dictionary IDP = n.IRDIIdentificationdata();
- // Foreach loop for looping every parameters in the Dictionary
- foreach (KeyValuePair eClassKeyValuePair in IDP)
+ if (semanticSystemCmbx.Text == "eClass")
{
- Parameters par = eClassKeyValuePair.Value;
-
- DataRow row = b.NewRow();
-
- row["ReferenceID"] = par.RefSemanticPrefix;
- row["Attribute"] = par.Parameter;
- row["Value"] = "";
- b.Rows.Add(row);
+ treeViewCH.Nodes.Add("Interfaces");
+
+ DataTable datatableheadereClassID = datatables.Parametersdatatable();
+ DictionaryeClass DEC = new DictionaryeClass();
+ Dictionary eClassID = DEC.eClassIdentificationdataParameters();
+ datatables.CreateDataTableWith3Columns(eClassID, datatableheadereClassID, dataGridViewIDT);
}
- // For each loop creating the rows in the data table
- foreach (DataRow IDT in b.Rows)
+ if (semanticSystemCmbx.SelectedText == "IRDI")
{
- int num = dataGridViewIDT.Rows.Add();
- dataGridViewIDT.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
- dataGridViewIDT.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
- dataGridViewIDT.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+ DataTable datatableheaderIRDIID = datatables.Parametersdatatable();
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+ Dictionary IRDIID = DIRDI.IRDIIdentificationdata();
+
+ datatables.CreateDataTableWith3Columns(IRDIID, datatableheaderIRDIID,dataGridViewIDT);
}
+
}
+
+
+
+
+
}
private void ToolStripButton3_Click(object sender, EventArgs e)
@@ -647,7 +528,11 @@ private void ToolStripButton3_Click(object sender, EventArgs e)
versionTextBox.Text = "";
dataGridViewIDT.Rows.Clear();
dataGridViewPD.Rows.Clear();
+ dataGridViewPOD.Rows.Clear();
+ dataGridViewPPD.Rows.Clear();
+ dataGridViewMD.Rows.Clear();
dataGridViewElectricalConnection.Rows.Clear();
+
}
private void Panel32_Paint(object sender, PaintEventArgs e)
@@ -664,6 +549,156 @@ private void SemanticSystemCmbx_Click(object sender, EventArgs e)
{
}
+
+ private void TreeViewCH_AfterSelect(object sender, TreeViewEventArgs e)
+ {
+
+ }
+
+ private void Button2_Click(object sender, EventArgs e)
+ {
+ AMC.WindowSizeChanger(panel4, button2);
+ }
+
+ private void ToolStripButton3_Click_1(object sender, EventArgs e)
+ {
+
+ }
+
+ private void AddConnector_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+
+ DataTable datatableheadersIRDIED = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+
+ Dictionary IRDIED = DIRDI.IRDIElectricalData();
+
+ datatables.CreateDataTableWith4Columns(IRDIED, datatableheadersIRDIED, dataGridViewIRDIElectricalData);
+
+
+
+ }
+
+ private void ToolStripButton3_Click_2(object sender, EventArgs e)
+ {
+
+
+
+ if (pinNumberTxtBx.Text != null)
+ {
+
+ int c = 0;
+ string a = pinNumberTxtBx.Text;
+ int b = Convert.ToInt32(a);
+ for (int i = 0; i < b; i++)
+ {
+ dataGridViewPinInfo.Rows.Add();
+ dataGridViewPinInfo.Rows[c + i].Cells[0].Value = (1 + i).ToString();
+ }
+ }
+
+
+ if(pinNumberTxtBx.Text == null)
+ {
+ MessageBox.Show("Enter valid Number", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
+
+ }
+ }
+
+ private void ToolStripButton3_Click_3(object sender, EventArgs e)
+ {
+ dataGridViewPinInfo.Rows.Clear();
+ }
+
+ private void ToolStripButton15_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIElectricalData.Rows.Clear();
+ }
+
+
+ private void ToolStripButton16_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ // IRDIEIDI = IRDI Electrical Interfacce Dimensional Information
+ DataTable datatableheadersIRDIEIDI = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+
+ if (connectorStyleCmbx.Text == "Fixed Connectors")
+ {
+
+ if (mountingCmbx.Text == "Square flange mounting")
+ {
+
+ Dictionary IRDIEIDI = DIRDI.IRDIMountingSquareFlangeData();
+
+ datatables.CreateDataTableWith4Columns(IRDIEIDI, datatableheadersIRDIEIDI, dataGridViewIRDIMountingData);
+ }
+ if (mountingCmbx.Text == "Single hole mounting")
+ {
+ Dictionary IRDIEIDI = DIRDI.IRDIMountingSingleHoleData();
+
+ datatables.CreateDataTableWith4Columns(IRDIEIDI, datatableheadersIRDIEIDI, dataGridViewIRDIMountingData);
+ }
+ }
+ if (connectorStyleCmbx.Text == "Free Connectors")
+ {
+ connectorVersion.Enabled = true;
+ connectorVersionCmbx.Enabled = true;
+
+ if(mountingCmbx.Text == "Locking nut")
+ {
+ if (connectorVersionCmbx.Text == "Right Angled")
+ {
+
+ }
+ if (connectorVersionCmbx.Text == "Straight")
+ {
+
+ }
+
+ }
+
+
+ }
+ }
+
+ private void ToolStripButton17_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIMountingData.Rows.Clear();
+ }
+
+ private void ToolStripButton18_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersIRDIEIDI2 = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+
+ if (connectorTypeCmbx.Text == "Male")
+ {
+ Dictionary IRDIEIDI2 = DIRDI.IRDIMaleConnectorDimensionData();
+
+ datatables.CreateDataTableWith6Columns(IRDIEIDI2, datatableheadersIRDIEIDI2, dataGridViewIRDIConnectorDimensions);
+
+ }
+ if (connectorTypeCmbx.Text == "Female")
+ {
+ Dictionary IRDIEIDI2 = DIRDI.IRDIFemaleConnectorDimensionData();
+
+ datatables.CreateDataTableWith6Columns(IRDIEIDI2, datatableheadersIRDIEIDI2, dataGridViewIRDIConnectorDimensions);
+
+ }
+
+ }
+
+ private void ToolStripButton19_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIConnectorDimensions.Rows.Clear();
+ }
}
diff --git a/CreateDevice.resx b/CreateDevice.resx
index 453df0b..4cdcadb 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -129,207 +129,466 @@
545, 20
+
+ 650, 20
+
+
+ 755, 20
+
+
+ 17, 98
+
+
+ 1043, 59
+
+
+ 794, 98
+
+
+ 346, 98
+
+
+ 570, 98
+
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
- 0iiDPCGiE3ZCRkvR8VzTeBhnyR5/ccaZNnPhB4t9sdf6Ln5hb8QeathNJFVFKF5C8DqL4ksDVHWGDf7j
- LHyPg6NjviSaFqlu5yQYR+KpupaIkrMknCxT3Y7v/NYYb0ITK1c3BarbWWhLQ7IR0cTKReyZ6lZ0XYei
- ztHpK4bAc+h1FgQijzSxMptrGIxVSO0xX3AaStFki7bUMVFmaMm/eJMGfIH/MkGzLep0AXn4h/r3CJV3
- mS9gn2bY4UY/UzQ7E9TqfeTFtnuB+XAfzSHKr11kSl/uBebDiZ89ZCst3OUkdwL28sIVsE83ock+EIQV
- 2Mz2wxeg6/UAAAAASUVORK5CYII=
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
- olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
- 4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
- YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
- 5Kni3aFlFg2j3y1z5mnRTJccnNIltQhwq0jFry+mOXNtpWZWDx1Z1NhV3C3JwGFOw25SYjVe5oYhiUKd
- HKMmwQUrMWUw/CF3NnZvvYKqUh1TvUroS3fXe7HXkwidMngTS2t5KLbregSzMY2f3Wr4qKW6LJvGR1rX
- 0MLor8OhKYTJBn/GHvvxrliCTBrsOqXIoOBHh5K+hmSq7FqmexTQHuUytkaKxuNMNgYyVneA4Qd7GKjc
- hjLaRzxH7gIU6JIZaEvgtk1D8wsxSWecCDgNzWFMvwxm/PkhRmr3Mli1nW9lvjRdWc0Jf+/5jzRmyWmv
- S+GOLQu6U6BFjPvqKOP1AYw88WOoZif9DgmfLVtxaj1RSLdwNvrkPCA3M54KqxrnvRia9MKcGrUrqFOt
- 5H7qKsqT1mGO9+Lqhc2ELdw+U/r0i+gVZ8hMiCDx3DHORwZyKnQ/hw/uYt9uCTskPvh6e7Fp41rWr/Fg
- g6eHO+A/lyD8ARfG3mk9fv1YAAAAAElFTkSuQmCC
-
-
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
- DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
- 8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
- 1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
- 4AJizD4UXJrCAUuzEDgbZrjgou2DiohshIcnQtgme5GTPYbkJKcQ1N8OckHW2REVi+RXuM8fxGaDG4oy
- ALPZIQQ11Z+5QDk1oKJ/hjv7P2FTfCMOH3mFxMQ6IbhROYWOdrCnBI4dfwPr0V4+bRoY9UzXppMjcDdS
- rC8hy3YhuFI2gTYf2A4Aza4f7N2/o/zaLB8qDYx6zszwr8P7k1thNFYIweXCMXgeAfedq2xxwjClZUeV
- Jd2GtDNFETiJwfs8MBjKhMCWN8pgoLoqzE8miH1GjE7G4PsZjE7OQsm9ij2mFg7rdrug1xcJAa2l4w7W
- r00Cgk/n38S7wBwC04u4UGxHrMHF4CbEJtyDLj5fCDIzhljfSxzeavRgyw4Zj9t64GvvQ0d3P3pfD2Kv
- 2QqNvgFxDN6urYdWmyMElJMnevh60obRktA701PRtGlg1DOdSkXwzrisaMG/RZLWAE60OMW5fNhvAAAA
- AElFTkSuQmCC
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
+ 458, 98
+
+
+ 234, 98
+
+
+ 1155, 59
+
+
+ 518, 59
+
+
+ 413, 59
+
+
+ 17, 98
+
+
+ 1043, 59
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 794, 98
+
+
+ 682, 98
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 682, 98
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 833, 59
+
+
+ 833, 59
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 122, 98
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 122, 98
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 728, 59
+
+
+ 728, 59
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 623, 59
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 623, 59
+
+
+ 1155, 59
+
+
+ 870, 20
+
+
+ 1102, 20
+
+
+ 122, 59
+
+
+ 277, 59
+
+
+ 346, 98
+
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
- jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
- X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
- J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
- I5DjtuYV7uksRYhr2kebhx2eP6nrycFIEh5fBA/1Nvru8q5+PDaOovK0rABwfwugWzcErfkzHhjsePL6
- E7q1VrTdNUDcrgGvSYlDZHN5XTNOnL8BVe8AJAoNDtZfLgDu9L1BPJmikzcrk81hlRwodZJwdBXziwnI
- OrVoaOkiT8C8hKLHBPO7CbywOaE1jeC+bhAd6meQdvZC1KoG/5IS3MZ2HObLUHZSggvkWq3wOvbWiAqA
- VpWeyStVfCUNf3AZ4zNhfHCFMEDMgye+hYr6FrDLzxQAUuVTpr0ocn74mchg5vsKRt1RcHp2Qv9+kZ78
- UcE17KkWFgHNN/uQzgBkGKLJPBZiecyGchjzrmFwPIF++xJUbDbUQzEacIArLpopSRSP4CUN1Obf1Abz
- uqob5KjiXwWH/GVl5HPt5zZh37GL2H1EiF1VZ7GDI6CNW5r/TSzWbwHYL0mKJ5czAAAAAElFTkSuQmCC
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
- LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
- QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
- EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
- 1NsXzN4PKIxJLLgeIJ2MoXvmFraNBKK3eXZRIveJPvs7FIYniEkXZENOdE+GIZ2Ko10TwLK7tJmKmL0F
- EEYarYM+NMnt0C1sQzpx/lcSEnZ2gcKY/gs0dlmZuWvmjjmpwA1qxVp2AWFIMAF/OAGBzMjMI7ZrtJCb
- 4Df3o4Zfxy7QrdxDRFKol5khkpR2H4qmIOzUQNBGwrsXYxccnNOQqNbQ0KGGZ+eEPVwdeLxvqqrf4wGh
- TNAAAAAASUVORK5CYII=
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHkSURBVDhPvZHfS1NhHIf3p5QypLr2D4goMwoMCi/qIugH
- Xe1Cr7qKDIMkZixwNhfWLGWbnuki0kXKzLU023KubBNPJrbRdOzocm6e2dPOO21mMS+CHvjcvOf9PF++
- 79H9M+7RT2iRRsIi9sEAXe43yAvf2LpSHq28G9uAnytNT4jMLewtcQ2Ht2pF8ps/aOt+gccX5lxD694S
- +1BQFD1RkN5DSFa4Z3uONKbgHE3h8KZ4OJTC1J8UiSzmfhd2uf1CoJHbyKOsZokl0kKwm+aeJaov+wjO
- rpQkVqdXfOz0bWAcVLghfaXxkUz3y2VxvpMGSwL3uMKh+gHezSSLEnNhX23vtYzKUirDfGyFj/Iy1mdx
- UWqR8iKhwtQLxjgH659y4EwvVXWPiwJt3/Ws+muywRrlqvkDdx3zQrCN8l1ldnEd3/QqFmkS/akHJYGS
- zjLzOUEwEsMf+sLI2zmaOou/93pPGoM5zvk7UU7fnBKxSBPoT7SXBNW1F/9Io2lKCNTCeomUyrS8xnBA
- wfUqyf1eP5U1ptJD/o1LzeNCsHPydtqdr6k4aiwvOHvNSya3ibU/QIdrEkvfhJislc32MfYfuV1eUGPw
- FF7bIVJVZ0N/soPK421UHGstlFvYd/hWecF/Qqf7CR0A5wwgSQA2AAAAAElFTkSuQmCC
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJSSURBVDhPtZJrSJNRGMdf6IN9KbpQn/pUEH2JIoLqQ0Zh
- FqYZRmJG1iKmUqKyLB2pqSm6vC1Nm5GXoeatEsVJ0RASR3eNzegikRq5lrV3857Fr/d9ddlICoL+8OfA
- Oef/e57zcIT/os7WLMw302muSGJ2689qqi7A44q8IzjtNYzarzHQm8tZtT8FmRqu6LToMxN+B8qhCbGR
- KVcDE85ajKUaxoaryEuL4UVXIudPB5Ko2oy98xjDptXERuz3hsgAOTzlqqMk6yjdllzE90UM9Wp5azlB
- S1kwkeG+1CSv4mmBQPThfd6Ahqq8GYB4A11yBKmaMLQxoZyLDkGjDiZOFUhUuB+FsWsUQFiArzegtlzH
- pFjPpMPA2GA2jucx2KqWK7ZWLqO7dBGP9D5KWLbfto3eAKMhi3FHBeP9GYy9PMXos4OIrYvJrzSRbWjm
- wuV6EnVG4tLLiEzSExGf4w0oL05nZEDPaK+akceBuO9v4uPtFUrYo6npbzhdE/QPOQmNSiPouHYOUpaf
- gvgqA/dDf9wd63G1r2SgUlAqyyq/1anYUGfG2mdXwne7bOwJUc1AinOS+NxzBpd5HWLbUhyNPvRdF5S2
- v05/54tbqvzBifWNHUvPOwLC4/CXwrv2HsB3+w6EwosJOB5ESeElfGpayGD1AmwlArHSm+W2PR1clToo
- MrbT0mFTVtlbN6xFuJQar3wQz5Q9VksD+7XyPctrJdx4p5s605M5gKz8lJPSDwtGFbKboJ1blAN52vKb
- PdXm80/AfDokTVu+8DfPXv9XCcIPTvjvLQ8YoakAAAAASUVORK5CYII=
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIVSURBVDhPtVJNaxNRFM1PyE+Yn1AUXLjK0uWgDWQZwUUX
- KsGFBEEcCkIwqBEpGiydsSo2kupsasdo7Yi2toh0sFZjG5JpiZo20/TpVOmH5njvm8BYahEXHji8+968
- c+55l4n8F0zM+rhVWkHmdg29A/PoK1Yw8uIjOp/3xpvqBgrjLeilZbjNLXxZ34bwt6jexMVCGRndQenl
- 0p+NWHzPXoP3rQ3bAbQhQM0E5Np2BKprbZzrm8TIs8puE+68+r0NwwZiacCwALEBCVcAqet8JlAjk1PZ
- JzsNJt6u4+FMS3ZmMV9mmFNAMhesbBZLC6oFdOsd8oVXocmdx018Ej9k1FgqiJ0zgS6qlR6BVI4iEFRN
- IJlxMF/1cfTMcGiQvbskB6ZqgairJ6BCTJKYu9tlAUW1oSRsNDwfB+JXQ4PzN6s07W0ZPxDS5aSgJEFn
- 06Y9CaOqSauJRvMr9qmXQ4P8/RoWvU16eyBUEq5kbigwiKoOMTBQ0zbKlTq6TxihwejkZ1iOJwfEwmiC
- BQ49yaW50J7Fh0xJw3IxbM3hwo2x0ICRHZzFgveTunYERK5lgo5YMxx8WPFw5Li+U8wYm66jNz+Naov+
- Beqiao58N5NrPluoryJO0QeKU7sNGKPPazh9aRzGo/eYmVvEMk270fTlmzl2N3XW9xL/jv7iaxw7+wAH
- E9ew//AVxE8OItv/9O/Cf0ck8gud2vKswuxNZgAAAABJRU5ErkJggg==
-
-
-
- 650, 20
-
-
-
- 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
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
- 755, 20
-
-
- 17, 98
-
-
- 1043, 59
-
-
- 833, 59
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -375,45 +634,6 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- 728, 59
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -459,54 +679,6 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- 623, 59
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -552,27 +724,191 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
- 1155, 59
-
-
- 518, 59
-
-
- 413, 59
-
-
- 870, 20
-
-
- 1102, 20
-
-
- 122, 59
-
-
- 277, 59
-
+
+
+ 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
+ 2Mz2wxeg6/UAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
+ olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
+ 4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
+ YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
+ 5Kni3aFlFg2j3y1z5mnRTJccnNIltQhwq0jFry+mOXNtpWZWDx1Z1NhV3C3JwGFOw25SYjVe5oYhiUKd
+ HKMmwQUrMWUw/CF3NnZvvYKqUh1TvUroS3fXe7HXkwidMngTS2t5KLbregSzMY2f3Wr4qKW6LJvGR1rX
+ 0MLor8OhKYTJBn/GHvvxrliCTBrsOqXIoOBHh5K+hmSq7FqmexTQHuUytkaKxuNMNgYyVneA4Qd7GKjc
+ hjLaRzxH7gIU6JIZaEvgtk1D8wsxSWecCDgNzWFMvwxm/PkhRmr3Mli1nW9lvjRdWc0Jf+/5jzRmyWmv
+ S+GOLQu6U6BFjPvqKOP1AYw88WOoZif9DgmfLVtxaj1RSLdwNvrkPCA3M54KqxrnvRia9MKcGrUrqFOt
+ 5H7qKsqT1mGO9+Lqhc2ELdw+U/r0i+gVZ8hMiCDx3DHORwZyKnQ/hw/uYt9uCTskPvh6e7Fp41rWr/Fg
+ g6eHO+A/lyD8ARfG3mk9fv1YAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
+ DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
+ 8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
+ 1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
+ 4AJizD4UXJrCAUuzEDgbZrjgou2DiohshIcnQtgme5GTPYbkJKcQ1N8OckHW2REVi+RXuM8fxGaDG4oy
+ ALPZIQQ11Z+5QDk1oKJ/hjv7P2FTfCMOH3mFxMQ6IbhROYWOdrCnBI4dfwPr0V4+bRoY9UzXppMjcDdS
+ rC8hy3YhuFI2gTYf2A4Aza4f7N2/o/zaLB8qDYx6zszwr8P7k1thNFYIweXCMXgeAfedq2xxwjClZUeV
+ Jd2GtDNFETiJwfs8MBjKhMCWN8pgoLoqzE8miH1GjE7G4PsZjE7OQsm9ij2mFg7rdrug1xcJAa2l4w7W
+ r00Cgk/n38S7wBwC04u4UGxHrMHF4CbEJtyDLj5fCDIzhljfSxzeavRgyw4Zj9t64GvvQ0d3P3pfD2Kv
+ 2QqNvgFxDN6urYdWmyMElJMnevh60obRktA701PRtGlg1DOdSkXwzrisaMG/RZLWAE60OMW5fNhvAAAA
+ AElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
+ jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
+ X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
+ J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
+ I5DjtuYV7uksRYhr2kebhx2eP6nrycFIEh5fBA/1Nvru8q5+PDaOovK0rABwfwugWzcErfkzHhjsePL6
+ E7q1VrTdNUDcrgGvSYlDZHN5XTNOnL8BVe8AJAoNDtZfLgDu9L1BPJmikzcrk81hlRwodZJwdBXziwnI
+ OrVoaOkiT8C8hKLHBPO7CbywOaE1jeC+bhAd6meQdvZC1KoG/5IS3MZ2HObLUHZSggvkWq3wOvbWiAqA
+ VpWeyStVfCUNf3AZ4zNhfHCFMEDMgye+hYr6FrDLzxQAUuVTpr0ocn74mchg5vsKRt1RcHp2Qv9+kZ78
+ UcE17KkWFgHNN/uQzgBkGKLJPBZiecyGchjzrmFwPIF++xJUbDbUQzEacIArLpopSRSP4CUN1Obf1Abz
+ uqob5KjiXwWH/GVl5HPt5zZh37GL2H1EiF1VZ7GDI6CNW5r/TSzWbwHYL0mKJ5czAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
+ LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
+ QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
+ EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
+ 1NsXzN4PKIxJLLgeIJ2MoXvmFraNBKK3eXZRIveJPvs7FIYniEkXZENOdE+GIZ2Ko10TwLK7tJmKmL0F
+ EEYarYM+NMnt0C1sQzpx/lcSEnZ2gcKY/gs0dlmZuWvmjjmpwA1qxVp2AWFIMAF/OAGBzMjMI7ZrtJCb
+ 4Df3o4Zfxy7QrdxDRFKol5khkpR2H4qmIOzUQNBGwrsXYxccnNOQqNbQ0KGGZ+eEPVwdeLxvqqrf4wGh
+ TNAAAAAASUVORK5CYII=
+
+
+
+
+ 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
+
+
72
diff --git a/Datatables.cs b/Datatables.cs
index d43f30b..04e2c03 100644
--- a/Datatables.cs
+++ b/Datatables.cs
@@ -10,9 +10,9 @@ namespace Aml.Editor.Plugin
{
class Datatables
{
- /* public Dictionary DictName { get; set; }
- public DataTable DataRowName { get; set; }
- public DataGridView DataGridViewName { get; set; }*/
+ /* public Dictionary DictName { get; set; }
+ public DataTable DataRowName { get; set; }
+ public DataGridView DataGridViewName { get; set; }*/
/*public Datatables()
{
@@ -23,33 +23,105 @@ public Datatables(string dictName, string dataRowName)
this.DictName = dictName;
this.DictName = dataRowName;
}*/
- public DataTable ThreeParametersdatatable( )
+ public DataTable Parametersdatatable()
{
- DataTable threeParametersdatatable = new DataTable();
- threeParametersdatatable.Columns.Add("ReferenceID");
- threeParametersdatatable.Columns.Add("Attribute");
- threeParametersdatatable.Columns.Add("Value");
+ DataTable Parametersdatatable = new DataTable();
+ Parametersdatatable.Columns.Add("ReferenceID");
+ Parametersdatatable.Columns.Add("Attribute");
+ Parametersdatatable.Columns.Add("Min");
+ Parametersdatatable.Columns.Add("Nom");
+ Parametersdatatable.Columns.Add("Max");
+ Parametersdatatable.Columns.Add("Value");
+ Parametersdatatable.Columns.Add("Unit");
+ Parametersdatatable.Columns.Add("Pin");
+
- return threeParametersdatatable;
+
+ return Parametersdatatable;
}
// method to iterate
- public void CreateParameter(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
+ public void CreateDataTableWith3Columns(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
+ {
+ Dictionary DictName = dictName;
+ DataTable DataRowName = dataRowName;
+ DataGridView DataGridViewName = dataGridViewName;
+ foreach (KeyValuePair everyKeyValuePair in DictName)
+ {
+ Parameters par = everyKeyValuePair.Value;
+
+ DataRow row = DataRowName.NewRow();
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Value"] = "";
+
+ DataRowName.Rows.Add(row);
+
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in DataRowName.Rows)
+ {
+ int num = DataGridViewName.Rows.Add();
+ DataGridViewName.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ DataGridViewName.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+
+ }
+ }
+ public void CreateDataTableWith4Columns(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
+ {
+ Dictionary DictName = dictName;
+ DataTable DataRowName = dataRowName;
+ DataGridView DataGridViewName = dataGridViewName;
+ foreach (KeyValuePair everyKeyValuePair in DictName)
+ {
+ Parameters par = everyKeyValuePair.Value;
+
+ DataRow row = DataRowName.NewRow();
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Value"] = par.Value;
+ row["Unit"] = par.Unit;
+ DataRowName.Rows.Add(row);
+
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in DataRowName.Rows)
+ {
+ int num = DataGridViewName.Rows.Add();
+ DataGridViewName.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ DataGridViewName.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+ DataGridViewName.Rows[num].Cells[3].Value = IDT["Unit"].ToString();
+ }
+
+
+
+ }
+ public void CreateDataTableWith5Columns(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
{
Dictionary DictName = dictName;
DataTable DataRowName = dataRowName;
DataGridView DataGridViewName = dataGridViewName;
- foreach (KeyValuePair eClassKeyValuePair in DictName)
+ foreach (KeyValuePair everyKeyValuePair in DictName)
{
- Parameters par = eClassKeyValuePair.Value;
+ Parameters par = everyKeyValuePair.Value;
DataRow row = DataRowName.NewRow();
+ row["P"] = par.RefSemanticPrefix;
row["ReferenceID"] = par.RefSemanticPrefix;
row["Attribute"] = par.Parameter;
row["Value"] = "";
+ row["Unit"] = par.Unit;
DataRowName.Rows.Add(row);
+ break;
+
}
// For each loop creating the rows in the data table
@@ -59,11 +131,49 @@ public void CreateParameter(Dictionary dictName, DataTable dataR
DataGridViewName.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
DataGridViewName.Rows[num].Cells[2].Value = IDT["Value"].ToString();
+ DataGridViewName.Rows[num].Cells[3].Value = IDT["Unit"].ToString();
+ break;
}
+
+
+
}
-
-
+ public void CreateDataTableWith6Columns(Dictionary dictName, DataTable dataRowName, DataGridView dataGridViewName)
+ {
+ Dictionary DictName = dictName;
+ DataTable DataRowName = dataRowName;
+ DataGridView DataGridViewName = dataGridViewName;
+ foreach (KeyValuePair everyKeyValuePair in DictName)
+ {
+ Parameters par = everyKeyValuePair.Value;
+
+ DataRow row = DataRowName.NewRow();
+
+
+ row["ReferenceID"] = par.RefSemanticPrefix;
+ row["Attribute"] = par.Parameter;
+ row["Min"] = "";
+ row["Nom"] = "";
+ row["Max"] = "";
+ row["Unit"] = par.Unit;
+ DataRowName.Rows.Add(row);
+
+
-
+
+ }
+ // For each loop creating the rows in the data table
+ foreach (DataRow IDT in DataRowName.Rows)
+ {
+ int num = DataGridViewName.Rows.Add();
+ DataGridViewName.Rows[num].Cells[0].Value = IDT["ReferenceID"].ToString();
+ DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
+ DataGridViewName.Rows[num].Cells[2].Value = IDT["Min"].ToString();
+ DataGridViewName.Rows[num].Cells[3].Value = IDT["Nom"].ToString();
+ DataGridViewName.Rows[num].Cells[4].Value = IDT["Max"].ToString();
+ DataGridViewName.Rows[num].Cells[5].Value = IDT["Unit"].ToString();
+
+ }
+ }
}
}
diff --git a/Dictionary.cs b/Dictionary.cs
index b1b3f03..a46bc89 100644
--- a/Dictionary.cs
+++ b/Dictionary.cs
@@ -11,7 +11,12 @@ public class Parameters
public int ID { get; set; }
public string Parameter { get; set; }
public string RefSemanticPrefix { get; set; }
-
+ public string Unit { get; set; }
+ public string Pin { get; set; }
+ public string Value { get; set; }
+ public string Min { get; set; }
+ public string Nom { get; set; }
+ public string Max { get; set; }
}
@@ -41,6 +46,83 @@ public Dictionary ProductDetails()
return ProductDetailsdataParameters;
}
+ public Dictionary ProductOrderDetails()
+ {
+ Parameters ProductOrderDetails1 = new Parameters() { ID = 001, Parameter = "Order Unit", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails2 = new Parameters() { ID = 002, Parameter = "Content Unit", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails3 = new Parameters() { ID = 003, Parameter = "Price Quantity", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails4 = new Parameters() { ID = 004, Parameter = "Quantity Min", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails5 = new Parameters() { ID = 005, Parameter = "Quantity Interval", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails6 = new Parameters() { ID = 006, Parameter = "Quantity Max", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails7 = new Parameters() { ID = 007, Parameter = "Packing Units", RefSemanticPrefix = "" };
+ Parameters ProductOrderDetails8 = new Parameters() { ID = 008, Parameter = "Packing Size", RefSemanticPrefix = "" };
+
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary ProductOrderDetailsdataParameters = new Dictionary();
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails1.ID, ProductOrderDetails1);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails2.ID, ProductOrderDetails2);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails3.ID, ProductOrderDetails3);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails4.ID, ProductOrderDetails4);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails5.ID, ProductOrderDetails5);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails6.ID, ProductOrderDetails6);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails7.ID, ProductOrderDetails7);
+ ProductOrderDetailsdataParameters.Add(ProductOrderDetails8.ID, ProductOrderDetails8);
+
+
+ return ProductOrderDetailsdataParameters;
+
+ }
+ public Dictionary ProductPriceDetails()
+ {
+ Parameters ProductPriceDetails1 = new Parameters() { ID = 001, Parameter = "Price Amount", RefSemanticPrefix = "" };
+ Parameters ProductPriceDetails2 = new Parameters() { ID = 002, Parameter = "Price Currency", RefSemanticPrefix = "" };
+ Parameters ProductPriceDetails3 = new Parameters() { ID = 003, Parameter = "Tax", RefSemanticPrefix = "" };
+ Parameters ProductPriceDetails4 = new Parameters() { ID = 004, Parameter = "Price Factor", RefSemanticPrefix = "" };
+ Parameters ProductPriceDetails5 = new Parameters() { ID = 005, Parameter = "Lower Bound", RefSemanticPrefix = "" };
+ Parameters ProductPriceDetails6 = new Parameters() { ID = 006, Parameter = "Territory", RefSemanticPrefix = "" };
+
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary ProductPriceDetailsdataParameters = new Dictionary();
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails1.ID, ProductPriceDetails1);
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails2.ID, ProductPriceDetails2);
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails3.ID, ProductPriceDetails3);
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails4.ID, ProductPriceDetails4);
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails5.ID, ProductPriceDetails5);
+ ProductPriceDetailsdataParameters.Add(ProductPriceDetails6.ID, ProductPriceDetails6);
+
+ return ProductPriceDetailsdataParameters;
+
+ }
+ public DictionaryManufacturerDetails()
+ {
+ Parameters ManufacturerDetails1 = new Parameters() { ID = 001, Parameter = "Name", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails2 = new Parameters() { ID = 002, Parameter = "Address 1", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails3 = new Parameters() { ID = 003, Parameter = "Address 2", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails4 = new Parameters() { ID = 004, Parameter = "Zip Code", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails5 = new Parameters() { ID = 005, Parameter = "City", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails6 = new Parameters() { ID = 006, Parameter = "Country", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails7 = new Parameters() { ID = 007, Parameter = "Contact Mail", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails8 = new Parameters() { ID = 008, Parameter = "Contact Phone", RefSemanticPrefix = "" };
+ Parameters ManufacturerDetails9 = new Parameters() { ID = 009, Parameter = "Website", RefSemanticPrefix = "" };
+
+
+ // Dictionary for Identification data parameters of eClass
+ Dictionary ManufacturerDetailsdataParameters = new Dictionary();
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails1.ID, ManufacturerDetails1);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails2.ID, ManufacturerDetails2);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails3.ID, ManufacturerDetails3);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails4.ID, ManufacturerDetails4);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails5.ID, ManufacturerDetails5);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails6.ID, ManufacturerDetails6);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails7.ID, ManufacturerDetails7);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails8.ID, ManufacturerDetails8);
+ ManufacturerDetailsdataParameters.Add(ManufacturerDetails9.ID, ManufacturerDetails9);
+
+ return ManufacturerDetailsdataParameters;
+
+ }
}
public class DictionaryeClass
{
@@ -77,7 +159,7 @@ public Dictionary eClassIdentificationdataParameters()
}
public class DictionaryIRDI
{
- public Dictionary IRDIIdentificationdata()
+ public Dictionary IRDIIdentificationdata()
{
Parameters IRDIIdentificationdata1 = new Parameters() { ID = 001, Parameter = "GTIN(Global Trade Item Number)", RefSemanticPrefix = "0112/2///62683#ACE101" };
Parameters IRDIIdentificationdata2 = new Parameters() { ID = 002, Parameter = "Manufacturer Name", RefSemanticPrefix = "0112/2///62683#ACE102" };
@@ -104,7 +186,7 @@ public Dictionary IRDIIdentificationdata()
return IRDIIdentificationdataParameters;
}
- public Dictionary IRDIMechanicalData()
+ public Dictionary IRDIMechanicalData()
{
Parameters IRDIMechanicalData1 = new Parameters() { ID = 001, Parameter = "Width of the device", RefSemanticPrefix = "0112/2///62683#ACE802" };
Parameters IRDIMechanicalData2 = new Parameters() { ID = 002, Parameter = "Height of the device", RefSemanticPrefix = "0112/2///62683#ACE801" };
@@ -123,7 +205,7 @@ public Dictionary IRDIMechanicalData()
return IRDIMechanicalDataParameters;
}
- public Dictionary IRDIMaterialData()
+ public Dictionary IRDIMaterialData()
{
Parameters IRDIMaterialData1 = new Parameters() { ID = 001, Parameter = "Housing or Body material", RefSemanticPrefix = "0112/2///62683#ACE260" };
Parameters IRDIMaterialData2 = new Parameters() { ID = 002, Parameter = "Sensing face material", RefSemanticPrefix = "0112/2///62683#ACE261" };
@@ -136,7 +218,150 @@ public Dictionary IRDIMaterialData()
return IRDIMaterialDataParameters;
}
-
+ public Dictionary IRDIElectricalData()
+ {
+ Parameters IRDIElectricalData1 = new Parameters() { ID = 001, Parameter = "Current rms (I_rms)", RefSemanticPrefix = "0112/2///61360_4#AAE540#001", Unit = "A" };
+ Parameters IRDIElectricalData2 = new Parameters() { ID = 002, Parameter = "Rated Voltage (U_rat)", RefSemanticPrefix = "0112/2///61360_4#AAH012#002", Unit = "V" };
+ Parameters IRDIElectricalData3 = new Parameters() { ID = 003, Parameter = "Rated Impulse Voltage (U_Irat)", RefSemanticPrefix = "0112/2///61360_4#AAH013#002", Unit = "V" };
+ Parameters IRDIElectricalData4 = new Parameters() { ID = 004, Parameter = "Voltage Proof (U_proof)", RefSemanticPrefix = "0112/2///61360_4#AAH014#002", Unit = "V" };
+ Parameters IRDIElectricalData5 = new Parameters() { ID = 005, Parameter = "Dielectric Withstand Voltage (U_wdi)", RefSemanticPrefix = "0112/2///61360_4#AAH015#002", Unit = "V" };
+ Parameters IRDIElectricalData6 = new Parameters() { ID = 006, Parameter = "Over Voltage Category", RefSemanticPrefix = "0112/2///61360_4#AAH022#002", Unit = "" };
+ Parameters IRDIElectricalData7 = new Parameters() { ID = 007, Parameter = "Rated Current (I_rat)", RefSemanticPrefix = "0112/2///61360_4#AAH066#002", Unit = "A" };
+ Parameters IRDIElectricalData8 = new Parameters() { ID = 008, Parameter = "Connector rated Voltage (V_r)", RefSemanticPrefix = "0112/2///61360_4#AAJ042#002", Unit = "V" };
+ Parameters IRDIElectricalData9 = new Parameters() { ID = 009, Parameter = "Connector rated Current (I_r)", RefSemanticPrefix = "0112/2///61360_4#AAJ043#002", Unit = "A" };
+ Parameters IRDIElectricalData10 = new Parameters() { ID = 0010, Parameter = "Contact current max (I_cont)", RefSemanticPrefix = "0112/2///61360_4#AAE358#001", Unit = "A" };
+
+ Dictionary IRDIElectricalDataParameters = new Dictionary();
+ IRDIElectricalDataParameters.Add(IRDIElectricalData1.ID, IRDIElectricalData1);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData2.ID, IRDIElectricalData2);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData3.ID, IRDIElectricalData3);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData4.ID, IRDIElectricalData4);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData5.ID, IRDIElectricalData5);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData6.ID, IRDIElectricalData6);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData7.ID, IRDIElectricalData7);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData8.ID, IRDIElectricalData8);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData10.ID, IRDIElectricalData10);
+
+
+ return IRDIElectricalDataParameters;
+
+ }
+ public Dictionary IRDIMountingSquareFlangeData()
+ {
+ Parameters IRDIMountingSquareFlangeData1 = new Parameters() { ID = 001, Parameter = "Square flange Length", RefSemanticPrefix = "", Unit = "mm", Value = "20" };
+ Parameters IRDIMountingSquareFlangeData2 = new Parameters() { ID = 002, Parameter = "Flange hole Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "3.2" };
+ Parameters IRDIMountingSquareFlangeData3 = new Parameters() { ID = 003, Parameter = "Flange holes length", RefSemanticPrefix = "", Unit = "mm", Value = "14" };
+ Parameters IRDIMountingSquareFlangeData4 = new Parameters() { ID = 004, Parameter = "Flange Thickness", RefSemanticPrefix = "", Unit = "mm", Value = "4" };
+ Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 005, Parameter = "Connector Length", RefSemanticPrefix = "", Unit = "mm", Value = "28" };
+ Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 006, Parameter = "Connector Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 007, Parameter = "Connector Thread Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+
+ Dictionary IRDIMountingSquareFlangeDataParameters = new Dictionary();
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData1.ID, IRDIMountingSquareFlangeData1);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData2.ID, IRDIMountingSquareFlangeData2);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData3.ID, IRDIMountingSquareFlangeData3);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData4.ID, IRDIMountingSquareFlangeData4);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData5.ID, IRDIMountingSquareFlangeData5);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData6.ID, IRDIMountingSquareFlangeData6);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData7.ID, IRDIMountingSquareFlangeData7);
+
+ return IRDIMountingSquareFlangeDataParameters;
+ }
+ public Dictionary IRDIMountingSingleHoleData()
+ {
+ Parameters IRDIMountingSingleHoleData1 = new Parameters() { ID = 001, Parameter = "Single Hole Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "20" };
+ Parameters IRDIMountingSingleHoleData2 = new Parameters() { ID = 002, Parameter = "Single Hole Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "3.2" };
+ Parameters IRDIMountingSingleHoleData3 = new Parameters() { ID = 003, Parameter = "Length of Wire ends", RefSemanticPrefix = "", Unit = "mm", Value = "14" };
+ Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 004, Parameter = "Connector Length", RefSemanticPrefix = "", Unit = "mm", Value = "28" };
+ Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 005, Parameter = "Connector Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 006, Parameter = "Connector Thread Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+
+ Dictionary IRDIMountingSingleHoleDataParameters = new Dictionary();
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSingleHoleData1.ID, IRDIMountingSingleHoleData1);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSingleHoleData2.ID, IRDIMountingSingleHoleData2);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSingleHoleData3.ID, IRDIMountingSingleHoleData3);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData5.ID, IRDIMountingSquareFlangeData5);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData6.ID, IRDIMountingSquareFlangeData6);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData7.ID, IRDIMountingSquareFlangeData7);
+
+
+ return IRDIMountingSingleHoleDataParameters;
+ }
+ public Dictionary IRDIMaleConnectorDimensionData()
+ {
+ Parameters IRDIMaleConnectorDimensioneData1 = new Parameters() { ID = 001, Parameter = "AA", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData2 = new Parameters() { ID = 002, Parameter = "AB", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData3 = new Parameters() { ID = 003, Parameter = "AC", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData4 = new Parameters() { ID = 004, Parameter = "AD", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData5 = new Parameters() { ID = 005, Parameter = "AE", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData6 = new Parameters() { ID = 006, Parameter = "AF", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData7 = new Parameters() { ID = 007, Parameter = "AG", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData8 = new Parameters() { ID = 008, Parameter = "AH", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData9 = new Parameters() { ID = 009, Parameter = "AI", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData10 = new Parameters() { ID = 010, Parameter = "AJ", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData11 = new Parameters() { ID = 011, Parameter = "AK", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData12 = new Parameters() { ID = 012, Parameter = "AL", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData13 = new Parameters() { ID = 013, Parameter = "AM", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData14 = new Parameters() { ID = 014, Parameter = "AN", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData15 = new Parameters() { ID = 015, Parameter = "AO", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData16 = new Parameters() { ID = 016, Parameter = "AP", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData17 = new Parameters() { ID = 017, Parameter = "AQ", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData18 = new Parameters() { ID = 018, Parameter = "AR", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData19 = new Parameters() { ID = 019, Parameter = "AS", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData20 = new Parameters() { ID = 020, Parameter = "AT", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData21 = new Parameters() { ID = 021, Parameter = "AU", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData22 = new Parameters() { ID = 022, Parameter = "AV", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData23 = new Parameters() { ID = 023, Parameter = "AW", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData24 = new Parameters() { ID = 024, Parameter = "AX", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIMaleConnectorDimensioneData25 = new Parameters() { ID = 025, Parameter = "AY", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+
+
+ Dictionary IRDIMaleConnectorDimensioneDataParameters = new Dictionary();
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData1.ID, IRDIMaleConnectorDimensioneData1);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData2.ID, IRDIMaleConnectorDimensioneData2);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData3.ID, IRDIMaleConnectorDimensioneData3);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData4.ID, IRDIMaleConnectorDimensioneData4);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData5.ID, IRDIMaleConnectorDimensioneData5);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData6.ID, IRDIMaleConnectorDimensioneData6);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData7.ID, IRDIMaleConnectorDimensioneData7);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData8.ID, IRDIMaleConnectorDimensioneData8);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData9.ID, IRDIMaleConnectorDimensioneData9);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData10.ID, IRDIMaleConnectorDimensioneData10);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData11.ID, IRDIMaleConnectorDimensioneData11);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData12.ID, IRDIMaleConnectorDimensioneData12);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData13.ID, IRDIMaleConnectorDimensioneData13);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData14.ID, IRDIMaleConnectorDimensioneData14);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData15.ID, IRDIMaleConnectorDimensioneData15);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData16.ID, IRDIMaleConnectorDimensioneData16);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData17.ID, IRDIMaleConnectorDimensioneData17);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData18.ID, IRDIMaleConnectorDimensioneData18);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData19.ID, IRDIMaleConnectorDimensioneData19);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData20.ID, IRDIMaleConnectorDimensioneData20);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData21.ID, IRDIMaleConnectorDimensioneData21);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData22.ID, IRDIMaleConnectorDimensioneData22);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData23.ID, IRDIMaleConnectorDimensioneData23);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData24.ID, IRDIMaleConnectorDimensioneData24);
+ IRDIMaleConnectorDimensioneDataParameters.Add(IRDIMaleConnectorDimensioneData25.ID, IRDIMaleConnectorDimensioneData25);
+
+
+
+ return IRDIMaleConnectorDimensioneDataParameters;
+ }
+ public Dictionary IRDIFemaleConnectorDimensionData()
+ {
+ Parameters IRDIFemaleConnectorDimensioneData1 = new Parameters() { ID = 001, Parameter = "BA", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData2 = new Parameters() { ID = 002, Parameter = "BB", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData3 = new Parameters() { ID = 003, Parameter = "BC", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData4 = new Parameters() { ID = 004, Parameter = "BD", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+
+ Dictionary IRDIFemaleConnectorDimensioneDataParameters = new Dictionary();
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData1.ID, IRDIFemaleConnectorDimensioneData1);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData2.ID, IRDIFemaleConnectorDimensioneData2);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData3.ID, IRDIFemaleConnectorDimensioneData3);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData4.ID, IRDIFemaleConnectorDimensioneData4);
+
+ return IRDIFemaleConnectorDimensioneDataParameters;
+ }
}
diff --git a/ModellingWizard.csproj b/ModellingWizard.csproj
index 840c91b..e43ed8a 100644
--- a/ModellingWizard.csproj
+++ b/ModellingWizard.csproj
@@ -99,6 +99,7 @@
About.xaml
+
@@ -164,6 +165,10 @@
+
+
+
+
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
index e491906..f28e21c 100644
--- a/Properties/Resources.Designer.cs
+++ b/Properties/Resources.Designer.cs
@@ -120,6 +120,16 @@ internal static System.Drawing.Bitmap icons8_dateiuntermodul_16__1_ {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_datenbank_hinzufügen_30 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-datenbank-hinzufügen-30", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
@@ -170,6 +180,36 @@ internal static System.Drawing.Bitmap icons8_liste_hinzufügen_26 {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_löschen_26 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-löschen-26", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_plus_2_24 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-plus-2-24", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap icons8_plus_mathe_30 {
+ get {
+ object obj = ResourceManager.GetObject("icons8-plus-mathe-30", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
index 67c4a75..b7a407b 100644
--- a/Properties/Resources.resx
+++ b/Properties/Resources.resx
@@ -118,40 +118,52 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- ..\Resources\icons8-expand-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\icons8-collapse-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\icons8-dateiuntermodul-16 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\icons8-expand-arrow-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-datei-hinzufügen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\icons8-dienstleistungen-26 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-plus-2-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\icons8-liste-hinzufügen-26.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\icons8-datei-hinzufügen-161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-löschen-26.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-expand-arrow-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-collapse-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\icons8-dateiuntermodul-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-abo-kündigen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-datei-hinzufügen-161.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-dienstleistungen-26 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\icons8-datenbank-hinzufügen-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\icons8-stornieren-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-expand-arrow-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\icons8-eingekreist-links-2-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\icons8-datei-hinzufügen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\icons8-abo-kündigen-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\icons8-plus-mathe-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
\ No newline at end of file
diff --git "a/Resources/icons8-datenbank-hinzuf\303\274gen-30.png" "b/Resources/icons8-datenbank-hinzuf\303\274gen-30.png"
new file mode 100644
index 0000000000000000000000000000000000000000..2a4059cfbd80f40725a889eb4570b58ca7fdf87a
GIT binary patch
literal 440
zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TGEdf3uuI>dsK<2=LcX#EOfG*H3
z3GxeO_$YerpV-k)k3$Y8t9b@}IQv<|*1D1$ev3-sr#@D
zBT(B8PZ!4!jq^t*UFT~y;Bh_ccVkN6sdsWe|NqyXAeQlHUx>%oX5p7duJ4=3_)q3H
z^W>%qVKtu4yhA*_Q#bTpJngm5*XPc^!lKWG`FZP_AAb&g^EdETL*Uii)uL>VelKy#
z{J7fHPd?|B(guhogfV|UUh;N=q~M#VwCu@C_oOa-YQ+9TnZM?n|C!_3=OFMg{vd$@?2>|rGG~NIJ
literal 0
HcmV?d00001
diff --git a/Resources/icons8-plus-mathe-30.png b/Resources/icons8-plus-mathe-30.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d8a60df429b90040844b36f2a6a618e99d9e42d
GIT binary patch
literal 152
zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3E_yc@GT-^(NfJ`{JyoTdHki$|E
zdt?@S?-^A0!F+}2Wa)JW4ffnb24>MzV0)FV|@i8Aw4=HS9RA=09S>ONz
mw|wkhhu!ko6^q)$
literal 0
HcmV?d00001
From 23b1dc74c1f69a11e2d4ad44f2807c2ea7d24c98 Mon Sep 17 00:00:00 2001
From: Rajkumarpulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Wed, 14 Aug 2019 10:10:22 +0200
Subject: [PATCH 05/34] Cable Leads Infromation updated
---
CreateDevice.Designer.cs | 2316 ++++++++++++++++++++++++++------------
CreateDevice.cs | 119 +-
CreateDevice.resx | 1020 +++++++++--------
Datatables.cs | 1 +
Dictionary.cs | 203 +++-
5 files changed, 2449 insertions(+), 1210 deletions(-)
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index 649a716..f886a1b 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -29,34 +29,44 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- System.Windows.Forms.TreeNode treeNode25 = new System.Windows.Forms.TreeNode("Node10");
- System.Windows.Forms.TreeNode treeNode26 = new System.Windows.Forms.TreeNode("Node11");
- System.Windows.Forms.TreeNode treeNode27 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
- treeNode25,
- treeNode26});
- System.Windows.Forms.TreeNode treeNode28 = new System.Windows.Forms.TreeNode("Node7");
- System.Windows.Forms.TreeNode treeNode29 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
- treeNode27,
- treeNode28});
- System.Windows.Forms.TreeNode treeNode30 = new System.Windows.Forms.TreeNode("Node8");
- System.Windows.Forms.TreeNode treeNode31 = new System.Windows.Forms.TreeNode("Node9");
- System.Windows.Forms.TreeNode treeNode32 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
- treeNode30,
- treeNode31});
- System.Windows.Forms.TreeNode treeNode33 = new System.Windows.Forms.TreeNode("Node2");
- System.Windows.Forms.TreeNode treeNode34 = new System.Windows.Forms.TreeNode("Node3");
- System.Windows.Forms.TreeNode treeNode35 = new System.Windows.Forms.TreeNode("Node4");
- System.Windows.Forms.TreeNode treeNode36 = new System.Windows.Forms.TreeNode("Node5");
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDevice));
+ System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node10");
+ System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node11");
+ System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
+ treeNode1,
+ treeNode2});
+ System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node7");
+ System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
+ treeNode3,
+ treeNode4});
+ System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node8");
+ System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node9");
+ System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
+ treeNode6,
+ treeNode7});
+ System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node2");
+ System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Node3");
+ System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Node4");
+ System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Node5");
this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
this.openDevicePictureDialog = new System.Windows.Forms.OpenFileDialog();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
+ this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
+ this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
+ this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+ this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.automationComponentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.accessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@@ -212,7 +222,9 @@ private void InitializeComponent()
this.toolStripSeparator32 = new System.Windows.Forms.ToolStripSeparator();
this.pinNumberTxtBx = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator31 = new System.Windows.Forms.ToolStripSeparator();
+ this.addPinsButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator33 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.panel20 = new System.Windows.Forms.Panel();
this.panel21 = new System.Windows.Forms.Panel();
this.dataGridViewIRDIElectricalData = new System.Windows.Forms.DataGridView();
@@ -222,6 +234,46 @@ private void InitializeComponent()
this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.toolStrip17 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel16 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStrip14 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel13 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator();
+ this.addConnector = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator34 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton15 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripLabel19 = new System.Windows.Forms.ToolStripLabel();
+ this.tabPage20 = new System.Windows.Forms.TabPage();
+ this.panel35 = new System.Windows.Forms.Panel();
+ this.dataGridView2 = new System.Windows.Forms.DataGridView();
+ this.Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip21 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel23 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator44 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton22 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator45 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton23 = new System.Windows.Forms.ToolStripButton();
+ this.panel22 = new System.Windows.Forms.Panel();
+ this.panel24 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDICableLeads = new System.Windows.Forms.DataGridView();
+ this.PinNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.LeadNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Function = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Units = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.cableLeadsNumber = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel21 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel22 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator29 = new System.Windows.Forms.ToolStripSeparator();
+ this.cableLeadsNumberTxtbx = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator42 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton20 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator43 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton21 = new System.Windows.Forms.ToolStripButton();
this.tabPage8 = new System.Windows.Forms.TabPage();
this.panel7 = new System.Windows.Forms.Panel();
this.panel8 = new System.Windows.Forms.Panel();
@@ -239,7 +291,12 @@ private void InitializeComponent()
this.toolStripSeparator35 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator39 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorTypelabel = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator41 = new System.Windows.Forms.ToolStripSeparator();
+ this.connectorTypeCmbx = new System.Windows.Forms.ToolStripComboBox();
+ this.toolStripButton18 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator40 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton19 = new System.Windows.Forms.ToolStripButton();
this.panel6 = new System.Windows.Forms.Panel();
this.dataGridViewIRDIMountingData = new System.Windows.Forms.DataGridView();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -259,18 +316,73 @@ private void InitializeComponent()
this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
this.connectorVersionCmbx = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator37 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton16 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator38 = new System.Windows.Forms.ToolStripSeparator();
- this.tabPage18 = new System.Windows.Forms.TabPage();
+ this.toolStripButton17 = new System.Windows.Forms.ToolStripButton();
this.tabPage19 = new System.Windows.Forms.TabPage();
- this.tabPage20 = new System.Windows.Forms.TabPage();
+ this.panel36 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIOrientationData = new System.Windows.Forms.DataGridView();
+ this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip19 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator46 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripLabel24 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator47 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox5 = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator48 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton24 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator49 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton25 = new System.Windows.Forms.ToolStripButton();
+ this.tabPage18 = new System.Windows.Forms.TabPage();
+ this.panel40 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIConnectorMiscData = new System.Windows.Forms.DataGridView();
+ this.Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip20 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel27 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripButton30 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator52 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton31 = new System.Windows.Forms.ToolStripButton();
+ this.panel38 = new System.Windows.Forms.Panel();
+ this.panel39 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIConnectorMaterialData = new System.Windows.Forms.DataGridView();
+ this.Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip23 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel26 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripButton28 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator51 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton29 = new System.Windows.Forms.ToolStripButton();
+ this.panel37 = new System.Windows.Forms.Panel();
+ this.dataGridViewIRDIConnectorTempData = new System.Windows.Forms.DataGridView();
+ this.Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip22 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel25 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripButton26 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator50 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton27 = new System.Windows.Forms.ToolStripButton();
this.toolStrip13 = new System.Windows.Forms.ToolStrip();
- this.interfaceNumberdrpdwn = new System.Windows.Forms.ToolStripDropDownButton();
+ this.interfaceNumberdrpdwn = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
- this.interfacesNumberTxtbx = new System.Windows.Forms.ToolStripComboBox();
+ this.interfacesNumberTxtbx = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
+ this.addInterfaces = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator();
+ this.interfacecollection = new System.Windows.Forms.ToolStripDropDownButton();
+ this.button2 = new System.Windows.Forms.Button();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.panel9 = new System.Windows.Forms.Panel();
this.panel14 = new System.Windows.Forms.Panel();
@@ -283,11 +395,15 @@ private void InitializeComponent()
this.label52 = new System.Windows.Forms.Label();
this.label51 = new System.Windows.Forms.Label();
this.panel15 = new System.Windows.Forms.Panel();
+ this.button11 = new System.Windows.Forms.Button();
this.textBox22 = new System.Windows.Forms.TextBox();
this.panel16 = new System.Windows.Forms.Panel();
+ this.button12 = new System.Windows.Forms.Button();
this.textBox23 = new System.Windows.Forms.TextBox();
this.panel17 = new System.Windows.Forms.Panel();
+ this.button13 = new System.Windows.Forms.Button();
this.textBox24 = new System.Windows.Forms.TextBox();
+ this.button10 = new System.Windows.Forms.Button();
this.panel10 = new System.Windows.Forms.Panel();
this.panel19 = new System.Windows.Forms.Panel();
this.button17 = new System.Windows.Forms.Button();
@@ -298,14 +414,21 @@ private void InitializeComponent()
this.label49 = new System.Windows.Forms.Label();
this.label48 = new System.Windows.Forms.Label();
this.panel11 = new System.Windows.Forms.Panel();
+ this.button4 = new System.Windows.Forms.Button();
this.textBox19 = new System.Windows.Forms.TextBox();
this.panel12 = new System.Windows.Forms.Panel();
+ this.button5 = new System.Windows.Forms.Button();
this.textBox20 = new System.Windows.Forms.TextBox();
this.panel13 = new System.Windows.Forms.Panel();
+ this.button9 = new System.Windows.Forms.Button();
this.textBox21 = new System.Windows.Forms.TextBox();
+ this.button1 = new System.Windows.Forms.Button();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.panel29 = new System.Windows.Forms.Panel();
this.toolStrip8 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel12 = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripTextBox8 = new System.Windows.Forms.ToolStripTextBox();
@@ -339,8 +462,12 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.button33 = new System.Windows.Forms.Button();
this.panel28 = new System.Windows.Forms.Panel();
this.toolStrip7 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripTextBox7 = new System.Windows.Forms.ToolStripTextBox();
@@ -371,6 +498,7 @@ private void InitializeComponent()
this.label115 = new System.Windows.Forms.Label();
this.label116 = new System.Windows.Forms.Label();
this.textBox84 = new System.Windows.Forms.TextBox();
+ this.button32 = new System.Windows.Forms.Button();
this.panel27 = new System.Windows.Forms.Panel();
this.panel32 = new System.Windows.Forms.Panel();
this.panel33 = new System.Windows.Forms.Panel();
@@ -379,6 +507,10 @@ private void InitializeComponent()
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.toolStrip6 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
+ this.button3 = new System.Windows.Forms.Button();
this.panel25 = new System.Windows.Forms.Panel();
this.treeView2 = new System.Windows.Forms.TreeView();
this.toolStrip11 = new System.Windows.Forms.ToolStrip();
@@ -397,69 +529,17 @@ private void InitializeComponent()
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.semanticSystemCmbx = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
+ this.addSemanticSystems = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
+ this.cancelSemanticSystem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
+ this.generaterAML = new System.Windows.Forms.ToolStripButton();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStrip3 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.connectorTypelabel = new System.Windows.Forms.ToolStripLabel();
- this.toolStripSeparator41 = new System.Windows.Forms.ToolStripSeparator();
- this.connectorTypeCmbx = new System.Windows.Forms.ToolStripComboBox();
- this.toolStripLabel13 = new System.Windows.Forms.ToolStripLabel();
- this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
- this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripSeparator34 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripLabel19 = new System.Windows.Forms.ToolStripLabel();
- this.toolStrip14 = new System.Windows.Forms.ToolStrip();
- this.addPinsButton = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton15 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton18 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton19 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton16 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton17 = new System.Windows.Forms.ToolStripButton();
- this.addInterfaces = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
- this.button2 = new System.Windows.Forms.Button();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.toolStripButton12 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton13 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton14 = new System.Windows.Forms.ToolStripButton();
- this.button33 = new System.Windows.Forms.Button();
- this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton10 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton11 = new System.Windows.Forms.ToolStripButton();
- this.button32 = new System.Windows.Forms.Button();
- this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
- this.button3 = new System.Windows.Forms.Button();
- this.addSemanticSystems = new System.Windows.Forms.ToolStripButton();
- this.cancelSemanticSystem = new System.Windows.Forms.ToolStripButton();
- this.generaterAML = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
- this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
- this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.helpToolStripButton = new System.Windows.Forms.ToolStripButton();
- this.addConnector = new System.Windows.Forms.ToolStripButton();
this.toolStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@@ -492,6 +572,15 @@ private void InitializeComponent()
this.panel21.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIElectricalData)).BeginInit();
this.toolStrip17.SuspendLayout();
+ this.toolStrip14.SuspendLayout();
+ this.tabPage20.SuspendLayout();
+ this.panel35.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
+ this.toolStrip21.SuspendLayout();
+ this.panel22.SuspendLayout();
+ this.panel24.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDICableLeads)).BeginInit();
+ this.cableLeadsNumber.SuspendLayout();
this.tabPage8.SuspendLayout();
this.panel7.SuspendLayout();
this.panel8.SuspendLayout();
@@ -500,6 +589,21 @@ private void InitializeComponent()
this.panel6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIMountingData)).BeginInit();
this.toolStrip15.SuspendLayout();
+ this.tabPage19.SuspendLayout();
+ this.panel36.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIOrientationData)).BeginInit();
+ this.toolStrip19.SuspendLayout();
+ this.tabPage18.SuspendLayout();
+ this.panel40.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorMiscData)).BeginInit();
+ this.toolStrip20.SuspendLayout();
+ this.panel38.SuspendLayout();
+ this.panel39.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorMaterialData)).BeginInit();
+ this.toolStrip23.SuspendLayout();
+ this.panel37.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorTempData)).BeginInit();
+ this.toolStrip22.SuspendLayout();
this.toolStrip13.SuspendLayout();
this.tabPage6.SuspendLayout();
this.panel9.SuspendLayout();
@@ -552,7 +656,6 @@ private void InitializeComponent()
this.toolStrip5.SuspendLayout();
this.toolStrip4.SuspendLayout();
this.toolStrip3.SuspendLayout();
- this.toolStrip14.SuspendLayout();
this.SuspendLayout();
//
// elementHost1
@@ -596,16 +699,89 @@ private void InitializeComponent()
this.toolStrip1.TabIndex = 43;
this.toolStrip1.Text = "toolStrip1";
//
+ // newToolStripButton
+ //
+ this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
+ this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.newToolStripButton.Name = "newToolStripButton";
+ this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.newToolStripButton.Text = "&New";
+ //
+ // openToolStripButton
+ //
+ this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
+ this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.openToolStripButton.Name = "openToolStripButton";
+ this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.openToolStripButton.Text = "&Open";
+ //
+ // saveToolStripButton
+ //
+ this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
+ this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.saveToolStripButton.Name = "saveToolStripButton";
+ this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.saveToolStripButton.Text = "&Save";
+ this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
+ //
+ // printToolStripButton
+ //
+ this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
+ this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.printToolStripButton.Name = "printToolStripButton";
+ this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.printToolStripButton.Text = "&Print";
+ //
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
+ // cutToolStripButton
+ //
+ this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
+ this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.cutToolStripButton.Name = "cutToolStripButton";
+ this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.cutToolStripButton.Text = "C&ut";
+ //
+ // copyToolStripButton
+ //
+ this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
+ this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.copyToolStripButton.Name = "copyToolStripButton";
+ this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.copyToolStripButton.Text = "&Copy";
+ //
+ // pasteToolStripButton
+ //
+ this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
+ this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.pasteToolStripButton.Name = "pasteToolStripButton";
+ this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.pasteToolStripButton.Text = "&Paste";
+ //
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
+ // helpToolStripButton
+ //
+ this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
+ this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.helpToolStripButton.Name = "helpToolStripButton";
+ this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.helpToolStripButton.Text = "He&lp";
+ //
// toolStrip2
//
this.toolStrip2.BackColor = System.Drawing.SystemColors.ControlLight;
@@ -619,11 +795,30 @@ private void InitializeComponent()
this.toolStrip2.TabIndex = 44;
this.toolStrip2.Text = "toolStrip2";
//
+ // toolStripButton1
+ //
+ this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
+ this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton1.Name = "toolStripButton1";
+ this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton1.Text = "toolStripButton1";
+ this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
+ //
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton2
+ //
+ this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
+ this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton2.Name = "toolStripButton2";
+ this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton2.Text = "toolStripButton2";
+ //
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.Color.LightGray;
@@ -1957,10 +2152,10 @@ private void InitializeComponent()
this.panel4.Controls.Add(this.button2);
this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
this.panel4.Location = new System.Drawing.Point(3, 3);
- this.panel4.MaximumSize = new System.Drawing.Size(637, 450);
+ this.panel4.MaximumSize = new System.Drawing.Size(637, 500);
this.panel4.MinimumSize = new System.Drawing.Size(637, 23);
this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(637, 450);
+ this.panel4.Size = new System.Drawing.Size(637, 500);
this.panel4.TabIndex = 0;
//
// panel5
@@ -1969,21 +2164,21 @@ private void InitializeComponent()
this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
this.panel5.Location = new System.Drawing.Point(0, 48);
this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(637, 390);
+ this.panel5.Size = new System.Drawing.Size(637, 431);
this.panel5.TabIndex = 3;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage20);
this.tabControl1.Controls.Add(this.tabPage8);
- this.tabControl1.Controls.Add(this.tabPage18);
this.tabControl1.Controls.Add(this.tabPage19);
- this.tabControl1.Controls.Add(this.tabPage20);
+ this.tabControl1.Controls.Add(this.tabPage18);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(637, 390);
+ this.tabControl1.Size = new System.Drawing.Size(637, 431);
this.tabControl1.TabIndex = 1;
//
// tabPage7
@@ -1996,7 +2191,7 @@ private void InitializeComponent()
this.tabPage7.Location = new System.Drawing.Point(4, 22);
this.tabPage7.Name = "tabPage7";
this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(629, 364);
+ this.tabPage7.Size = new System.Drawing.Size(629, 405);
this.tabPage7.TabIndex = 0;
this.tabPage7.Text = "Interface Type";
//
@@ -2012,7 +2207,7 @@ private void InitializeComponent()
this.dataGridViewPinInfo.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewPinInfo.Location = new System.Drawing.Point(3, 213);
this.dataGridViewPinInfo.Name = "dataGridViewPinInfo";
- this.dataGridViewPinInfo.Size = new System.Drawing.Size(623, 148);
+ this.dataGridViewPinInfo.Size = new System.Drawing.Size(623, 189);
this.dataGridViewPinInfo.TabIndex = 3;
//
// Column18
@@ -2093,11 +2288,31 @@ private void InitializeComponent()
this.toolStripSeparator31.Name = "toolStripSeparator31";
this.toolStripSeparator31.Size = new System.Drawing.Size(6, 25);
//
+ // addPinsButton
+ //
+ this.addPinsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addPinsButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.addPinsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addPinsButton.Name = "addPinsButton";
+ this.addPinsButton.Size = new System.Drawing.Size(33, 22);
+ this.addPinsButton.Text = "Add";
+ this.addPinsButton.Click += new System.EventHandler(this.ToolStripButton3_Click_2);
+ //
// toolStripSeparator33
//
this.toolStripSeparator33.Name = "toolStripSeparator33";
this.toolStripSeparator33.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton3
+ //
+ this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
+ this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton3.Name = "toolStripButton3";
+ this.toolStripButton3.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton3.Text = "Clear";
+ this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3_Click_3);
+ //
// panel20
//
this.panel20.Controls.Add(this.panel21);
@@ -2169,36 +2384,353 @@ private void InitializeComponent()
this.toolStripLabel16.Size = new System.Drawing.Size(81, 22);
this.toolStripLabel16.Text = "Electrical Data";
//
- // tabPage8
- //
- this.tabPage8.BackColor = System.Drawing.Color.LightGray;
- this.tabPage8.Controls.Add(this.panel7);
- this.tabPage8.Controls.Add(this.panel6);
- this.tabPage8.Controls.Add(this.toolStrip15);
- this.tabPage8.Location = new System.Drawing.Point(4, 22);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage8.Size = new System.Drawing.Size(629, 364);
- this.tabPage8.TabIndex = 1;
- this.tabPage8.Text = "Dimensional Info";
- //
- // panel7
- //
- this.panel7.Controls.Add(this.panel8);
- this.panel7.Controls.Add(this.toolStrip16);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel7.Location = new System.Drawing.Point(3, 128);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(623, 233);
- this.panel7.TabIndex = 2;
- //
- // panel8
+ // toolStrip14
//
- this.panel8.Controls.Add(this.dataGridViewIRDIConnectorDimensions);
+ this.toolStrip14.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel13,
+ this.toolStripSeparator27,
+ this.toolStripComboBox1,
+ this.toolStripSeparator26,
+ this.addConnector,
+ this.toolStripSeparator34,
+ this.toolStripButton15,
+ this.toolStripLabel19});
+ this.toolStrip14.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip14.Name = "toolStrip14";
+ this.toolStrip14.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip14.TabIndex = 0;
+ this.toolStrip14.Text = "Connector";
+ //
+ // toolStripLabel13
+ //
+ this.toolStripLabel13.Name = "toolStripLabel13";
+ this.toolStripLabel13.Size = new System.Drawing.Size(66, 22);
+ this.toolStripLabel13.Text = "Connector ";
+ //
+ // toolStripSeparator27
+ //
+ this.toolStripSeparator27.Name = "toolStripSeparator27";
+ this.toolStripSeparator27.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripComboBox1
+ //
+ this.toolStripComboBox1.Items.AddRange(new object[] {
+ "M-5 Connector",
+ "M-8 Connector",
+ "M-12 Connector",
+ "RJ-45 Ethernet Connector",
+ "7/8-Inch Power Supply Connector",
+ "Others"});
+ this.toolStripComboBox1.Name = "toolStripComboBox1";
+ this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
+ //
+ // toolStripSeparator26
+ //
+ this.toolStripSeparator26.Name = "toolStripSeparator26";
+ this.toolStripSeparator26.Size = new System.Drawing.Size(6, 25);
+ //
+ // addConnector
+ //
+ this.addConnector.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addConnector.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_mathe_30;
+ this.addConnector.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addConnector.Name = "addConnector";
+ this.addConnector.Size = new System.Drawing.Size(33, 22);
+ this.addConnector.Text = "Add";
+ this.addConnector.Click += new System.EventHandler(this.AddConnector_Click);
+ //
+ // toolStripSeparator34
+ //
+ this.toolStripSeparator34.Name = "toolStripSeparator34";
+ this.toolStripSeparator34.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton15
+ //
+ this.toolStripButton15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton15.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_löschen_26;
+ this.toolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton15.Name = "toolStripButton15";
+ this.toolStripButton15.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton15.Text = "Clear";
+ this.toolStripButton15.Click += new System.EventHandler(this.ToolStripButton15_Click);
+ //
+ // toolStripLabel19
+ //
+ this.toolStripLabel19.Name = "toolStripLabel19";
+ this.toolStripLabel19.Size = new System.Drawing.Size(0, 22);
+ //
+ // tabPage20
+ //
+ this.tabPage20.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage20.Controls.Add(this.panel35);
+ this.tabPage20.Controls.Add(this.toolStrip21);
+ this.tabPage20.Controls.Add(this.panel22);
+ this.tabPage20.Location = new System.Drawing.Point(4, 22);
+ this.tabPage20.Name = "tabPage20";
+ this.tabPage20.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage20.Size = new System.Drawing.Size(629, 405);
+ this.tabPage20.TabIndex = 4;
+ this.tabPage20.Text = "Cable Info";
+ //
+ // panel35
+ //
+ this.panel35.Controls.Add(this.dataGridView2);
+ this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel35.Location = new System.Drawing.Point(3, 185);
+ this.panel35.Name = "panel35";
+ this.panel35.Size = new System.Drawing.Size(623, 217);
+ this.panel35.TabIndex = 2;
+ //
+ // dataGridView2
+ //
+ this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column19,
+ this.Column20,
+ this.Column21,
+ this.Column22});
+ this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridView2.Location = new System.Drawing.Point(0, 0);
+ this.dataGridView2.Name = "dataGridView2";
+ this.dataGridView2.Size = new System.Drawing.Size(623, 217);
+ this.dataGridView2.TabIndex = 0;
+ //
+ // Column19
+ //
+ this.Column19.HeaderText = "ID";
+ this.Column19.Name = "Column19";
+ //
+ // Column20
+ //
+ this.Column20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column20.HeaderText = "Attribute";
+ this.Column20.Name = "Column20";
+ //
+ // Column21
+ //
+ this.Column21.HeaderText = "Value";
+ this.Column21.Name = "Column21";
+ //
+ // Column22
+ //
+ this.Column22.HeaderText = "Units";
+ this.Column22.Name = "Column22";
+ //
+ // toolStrip21
+ //
+ this.toolStrip21.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel23,
+ this.toolStripSeparator44,
+ this.toolStripButton22,
+ this.toolStripSeparator45,
+ this.toolStripButton23});
+ this.toolStrip21.Location = new System.Drawing.Point(3, 160);
+ this.toolStrip21.Name = "toolStrip21";
+ this.toolStrip21.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip21.TabIndex = 1;
+ this.toolStrip21.Text = "toolStrip21";
+ //
+ // toolStripLabel23
+ //
+ this.toolStripLabel23.Enabled = false;
+ this.toolStripLabel23.Name = "toolStripLabel23";
+ this.toolStripLabel23.Size = new System.Drawing.Size(190, 22);
+ this.toolStripLabel23.Text = "Cable Dimension and Material Info";
+ //
+ // toolStripSeparator44
+ //
+ this.toolStripSeparator44.Name = "toolStripSeparator44";
+ this.toolStripSeparator44.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton22
+ //
+ this.toolStripButton22.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton22.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton22.Image")));
+ this.toolStripButton22.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton22.Name = "toolStripButton22";
+ this.toolStripButton22.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton22.Text = "Add";
+ //
+ // toolStripSeparator45
+ //
+ this.toolStripSeparator45.Name = "toolStripSeparator45";
+ this.toolStripSeparator45.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton23
+ //
+ this.toolStripButton23.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton23.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton23.Image")));
+ this.toolStripButton23.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton23.Name = "toolStripButton23";
+ this.toolStripButton23.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton23.Text = "Clear";
+ //
+ // panel22
+ //
+ this.panel22.Controls.Add(this.panel24);
+ this.panel22.Controls.Add(this.cableLeadsNumber);
+ this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel22.Location = new System.Drawing.Point(3, 3);
+ this.panel22.Name = "panel22";
+ this.panel22.Size = new System.Drawing.Size(623, 157);
+ this.panel22.TabIndex = 0;
+ //
+ // panel24
+ //
+ this.panel24.Controls.Add(this.dataGridViewIRDICableLeads);
+ this.panel24.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel24.Location = new System.Drawing.Point(0, 25);
+ this.panel24.Name = "panel24";
+ this.panel24.Size = new System.Drawing.Size(623, 132);
+ this.panel24.TabIndex = 1;
+ //
+ // dataGridViewIRDICableLeads
+ //
+ this.dataGridViewIRDICableLeads.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDICableLeads.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.PinNumber,
+ this.LeadNumber,
+ this.Function,
+ this.Value,
+ this.Units});
+ this.dataGridViewIRDICableLeads.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDICableLeads.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDICableLeads.Name = "dataGridViewIRDICableLeads";
+ this.dataGridViewIRDICableLeads.Size = new System.Drawing.Size(623, 132);
+ this.dataGridViewIRDICableLeads.TabIndex = 0;
+ //
+ // PinNumber
+ //
+ this.PinNumber.HeaderText = "Pin Number";
+ this.PinNumber.Name = "PinNumber";
+ //
+ // LeadNumber
+ //
+ this.LeadNumber.HeaderText = "Lead Number";
+ this.LeadNumber.Name = "LeadNumber";
+ //
+ // Function
+ //
+ this.Function.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Function.HeaderText = "Function";
+ this.Function.Name = "Function";
+ //
+ // Value
+ //
+ this.Value.HeaderText = "Value";
+ this.Value.Name = "Value";
+ //
+ // Units
+ //
+ this.Units.HeaderText = "Units";
+ this.Units.Name = "Units";
+ //
+ // cableLeadsNumber
+ //
+ this.cableLeadsNumber.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel21,
+ this.toolStripSeparator16,
+ this.toolStripLabel22,
+ this.toolStripSeparator29,
+ this.cableLeadsNumberTxtbx,
+ this.toolStripSeparator42,
+ this.toolStripButton20,
+ this.toolStripSeparator43,
+ this.toolStripButton21});
+ this.cableLeadsNumber.Location = new System.Drawing.Point(0, 0);
+ this.cableLeadsNumber.Name = "cableLeadsNumber";
+ this.cableLeadsNumber.Size = new System.Drawing.Size(623, 25);
+ this.cableLeadsNumber.TabIndex = 0;
+ this.cableLeadsNumber.Text = "toolStrip20";
+ //
+ // toolStripLabel21
+ //
+ this.toolStripLabel21.Enabled = false;
+ this.toolStripLabel21.Name = "toolStripLabel21";
+ this.toolStripLabel21.Size = new System.Drawing.Size(133, 22);
+ this.toolStripLabel21.Text = "Pins to Cable leads Info:";
+ //
+ // toolStripSeparator16
+ //
+ this.toolStripSeparator16.Name = "toolStripSeparator16";
+ this.toolStripSeparator16.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel22
+ //
+ this.toolStripLabel22.Name = "toolStripLabel22";
+ this.toolStripLabel22.Size = new System.Drawing.Size(95, 22);
+ this.toolStripLabel22.Text = "Number of leads";
+ //
+ // toolStripSeparator29
+ //
+ this.toolStripSeparator29.Name = "toolStripSeparator29";
+ this.toolStripSeparator29.Size = new System.Drawing.Size(6, 25);
+ //
+ // cableLeadsNumberTxtbx
+ //
+ this.cableLeadsNumberTxtbx.Name = "cableLeadsNumberTxtbx";
+ this.cableLeadsNumberTxtbx.Size = new System.Drawing.Size(100, 25);
+ //
+ // toolStripSeparator42
+ //
+ this.toolStripSeparator42.Name = "toolStripSeparator42";
+ this.toolStripSeparator42.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton20
+ //
+ this.toolStripButton20.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton20.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton20.Image")));
+ this.toolStripButton20.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton20.Name = "toolStripButton20";
+ this.toolStripButton20.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton20.Text = "Add";
+ this.toolStripButton20.Click += new System.EventHandler(this.ToolStripButton20_Click);
+ //
+ // toolStripSeparator43
+ //
+ this.toolStripSeparator43.Name = "toolStripSeparator43";
+ this.toolStripSeparator43.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton21
+ //
+ this.toolStripButton21.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton21.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton21.Image")));
+ this.toolStripButton21.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton21.Name = "toolStripButton21";
+ this.toolStripButton21.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton21.Text = "Clear";
+ this.toolStripButton21.Click += new System.EventHandler(this.ToolStripButton21_Click);
+ //
+ // tabPage8
+ //
+ this.tabPage8.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage8.Controls.Add(this.panel7);
+ this.tabPage8.Controls.Add(this.panel6);
+ this.tabPage8.Controls.Add(this.toolStrip15);
+ this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(629, 405);
+ this.tabPage8.TabIndex = 1;
+ this.tabPage8.Text = "Dimensional Info";
+ //
+ // panel7
+ //
+ this.panel7.Controls.Add(this.panel8);
+ this.panel7.Controls.Add(this.toolStrip16);
+ this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel7.Location = new System.Drawing.Point(3, 128);
+ this.panel7.Name = "panel7";
+ this.panel7.Size = new System.Drawing.Size(623, 274);
+ this.panel7.TabIndex = 2;
+ //
+ // panel8
+ //
+ this.panel8.Controls.Add(this.dataGridViewIRDIConnectorDimensions);
this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel8.Location = new System.Drawing.Point(0, 25);
this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(623, 208);
+ this.panel8.Size = new System.Drawing.Size(623, 249);
this.panel8.TabIndex = 1;
//
// dataGridViewIRDIConnectorDimensions
@@ -2214,7 +2746,7 @@ private void InitializeComponent()
this.dataGridViewIRDIConnectorDimensions.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorDimensions.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIConnectorDimensions.Name = "dataGridViewIRDIConnectorDimensions";
- this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(623, 208);
+ this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(623, 249);
this.dataGridViewIRDIConnectorDimensions.TabIndex = 0;
//
// Column8
@@ -2276,6 +2808,7 @@ private void InitializeComponent()
//
// toolStripLabel15
//
+ this.toolStripLabel15.Enabled = false;
this.toolStripLabel15.Name = "toolStripLabel15";
this.toolStripLabel15.Size = new System.Drawing.Size(69, 22);
this.toolStripLabel15.Text = "Dimensions";
@@ -2308,11 +2841,50 @@ private void InitializeComponent()
this.toolStripSeparator39.Name = "toolStripSeparator39";
this.toolStripSeparator39.Size = new System.Drawing.Size(6, 25);
//
+ // connectorTypelabel
+ //
+ this.connectorTypelabel.Name = "connectorTypelabel";
+ this.connectorTypelabel.Size = new System.Drawing.Size(91, 22);
+ this.connectorTypelabel.Text = "Connector Type";
+ //
+ // toolStripSeparator41
+ //
+ this.toolStripSeparator41.Name = "toolStripSeparator41";
+ this.toolStripSeparator41.Size = new System.Drawing.Size(6, 25);
+ //
+ // connectorTypeCmbx
+ //
+ this.connectorTypeCmbx.Items.AddRange(new object[] {
+ "Male",
+ "Female"});
+ this.connectorTypeCmbx.Name = "connectorTypeCmbx";
+ this.connectorTypeCmbx.Size = new System.Drawing.Size(75, 25);
+ //
+ // toolStripButton18
+ //
+ this.toolStripButton18.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton18.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.toolStripButton18.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton18.Name = "toolStripButton18";
+ this.toolStripButton18.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton18.Text = "Add";
+ this.toolStripButton18.Click += new System.EventHandler(this.ToolStripButton18_Click);
+ //
// toolStripSeparator40
//
this.toolStripSeparator40.Name = "toolStripSeparator40";
this.toolStripSeparator40.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton19
+ //
+ this.toolStripButton19.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton19.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton19.Image")));
+ this.toolStripButton19.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton19.Name = "toolStripButton19";
+ this.toolStripButton19.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton19.Text = "Clear";
+ this.toolStripButton19.Click += new System.EventHandler(this.ToolStripButton19_Click);
+ //
// panel6
//
this.panel6.Controls.Add(this.dataGridViewIRDIMountingData);
@@ -2399,6 +2971,7 @@ private void InitializeComponent()
"Free Connectors"});
this.connectorStyleCmbx.Name = "connectorStyleCmbx";
this.connectorStyleCmbx.Size = new System.Drawing.Size(75, 25);
+ this.connectorStyleCmbx.Click += new System.EventHandler(this.ConnectorStyleCmbx_Click);
//
// toolStripSeparator23
//
@@ -2456,78 +3029,486 @@ private void InitializeComponent()
this.toolStripSeparator37.Name = "toolStripSeparator37";
this.toolStripSeparator37.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton16
+ //
+ this.toolStripButton16.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton16.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
+ this.toolStripButton16.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton16.Name = "toolStripButton16";
+ this.toolStripButton16.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton16.Text = "Add";
+ this.toolStripButton16.Click += new System.EventHandler(this.ToolStripButton16_Click);
+ //
// toolStripSeparator38
//
this.toolStripSeparator38.Name = "toolStripSeparator38";
this.toolStripSeparator38.Size = new System.Drawing.Size(6, 25);
//
- // tabPage18
+ // toolStripButton17
//
- this.tabPage18.BackColor = System.Drawing.Color.LightGray;
- this.tabPage18.Location = new System.Drawing.Point(4, 22);
- this.tabPage18.Name = "tabPage18";
- this.tabPage18.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage18.Size = new System.Drawing.Size(629, 364);
- this.tabPage18.TabIndex = 2;
- this.tabPage18.Text = "Material Info";
+ this.toolStripButton17.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton17.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton17.Image")));
+ this.toolStripButton17.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton17.Name = "toolStripButton17";
+ this.toolStripButton17.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton17.Text = "Clear";
+ this.toolStripButton17.Click += new System.EventHandler(this.ToolStripButton17_Click);
//
// tabPage19
//
this.tabPage19.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage19.Controls.Add(this.panel36);
+ this.tabPage19.Controls.Add(this.toolStrip19);
this.tabPage19.Location = new System.Drawing.Point(4, 22);
this.tabPage19.Name = "tabPage19";
this.tabPage19.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage19.Size = new System.Drawing.Size(629, 364);
+ this.tabPage19.Size = new System.Drawing.Size(629, 405);
this.tabPage19.TabIndex = 3;
this.tabPage19.Text = "Orientation Info";
//
- // tabPage20
+ // panel36
//
- this.tabPage20.BackColor = System.Drawing.Color.LightGray;
- this.tabPage20.Location = new System.Drawing.Point(4, 22);
- this.tabPage20.Name = "tabPage20";
- this.tabPage20.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage20.Size = new System.Drawing.Size(629, 364);
- this.tabPage20.TabIndex = 4;
- this.tabPage20.Text = "Cable Info";
+ this.panel36.Controls.Add(this.dataGridViewIRDIOrientationData);
+ this.panel36.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel36.Location = new System.Drawing.Point(3, 28);
+ this.panel36.Name = "panel36";
+ this.panel36.Size = new System.Drawing.Size(623, 374);
+ this.panel36.TabIndex = 1;
//
- // toolStrip13
+ // dataGridViewIRDIOrientationData
//
- this.toolStrip13.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.interfaceNumberdrpdwn,
- this.toolStripSeparator17,
- this.interfacesNumberTxtbx,
- this.toolStripSeparator18,
- this.addInterfaces,
- this.toolStripSeparator19,
- this.toolStripButton4,
- this.toolStripSeparator20,
- this.toolStripButton5,
- this.toolStripSeparator21});
- this.toolStrip13.Location = new System.Drawing.Point(0, 23);
- this.toolStrip13.Name = "toolStrip13";
- this.toolStrip13.Size = new System.Drawing.Size(637, 25);
- this.toolStrip13.TabIndex = 2;
- this.toolStrip13.Text = "toolStrip13";
+ this.dataGridViewIRDIOrientationData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIOrientationData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column23,
+ this.Column24,
+ this.Column25,
+ this.Column26});
+ this.dataGridViewIRDIOrientationData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIOrientationData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIOrientationData.Name = "dataGridViewIRDIOrientationData";
+ this.dataGridViewIRDIOrientationData.Size = new System.Drawing.Size(623, 374);
+ this.dataGridViewIRDIOrientationData.TabIndex = 0;
//
- // interfaceNumberdrpdwn
+ // Column23
//
- this.interfaceNumberdrpdwn.Name = "interfaceNumberdrpdwn";
- this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(132, 22);
- this.interfaceNumberdrpdwn.Text = "Number of Interfaces";
+ this.Column23.HeaderText = "ID";
+ this.Column23.Name = "Column23";
+ this.Column23.Width = 150;
//
- // toolStripSeparator17
+ // Column24
//
- this.toolStripSeparator17.Name = "toolStripSeparator17";
- this.toolStripSeparator17.Size = new System.Drawing.Size(6, 25);
+ this.Column24.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column24.HeaderText = "Attribute";
+ this.Column24.Name = "Column24";
//
- // interfacesNumberTxtbx
+ // Column25
+ //
+ this.Column25.HeaderText = "Value";
+ this.Column25.Name = "Column25";
+ //
+ // Column26
+ //
+ this.Column26.HeaderText = "Units";
+ this.Column26.Name = "Column26";
+ //
+ // toolStrip19
+ //
+ this.toolStrip19.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel7,
+ this.toolStripSeparator46,
+ this.toolStripLabel24,
+ this.toolStripSeparator47,
+ this.toolStripTextBox5,
+ this.toolStripSeparator48,
+ this.toolStripButton24,
+ this.toolStripSeparator49,
+ this.toolStripButton25});
+ this.toolStrip19.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip19.Name = "toolStrip19";
+ this.toolStrip19.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip19.TabIndex = 0;
+ this.toolStrip19.Text = "toolStrip19";
+ //
+ // toolStripLabel7
+ //
+ this.toolStripLabel7.Enabled = false;
+ this.toolStripLabel7.Name = "toolStripLabel7";
+ this.toolStripLabel7.Size = new System.Drawing.Size(73, 22);
+ this.toolStripLabel7.Text = "Orientation :";
+ //
+ // toolStripSeparator46
+ //
+ this.toolStripSeparator46.Name = "toolStripSeparator46";
+ this.toolStripSeparator46.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripLabel24
+ //
+ this.toolStripLabel24.Name = "toolStripLabel24";
+ this.toolStripLabel24.Size = new System.Drawing.Size(92, 22);
+ this.toolStripLabel24.Text = "toolStripLabel24";
+ //
+ // toolStripSeparator47
+ //
+ this.toolStripSeparator47.Name = "toolStripSeparator47";
+ this.toolStripSeparator47.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripTextBox5
+ //
+ this.toolStripTextBox5.Name = "toolStripTextBox5";
+ this.toolStripTextBox5.Size = new System.Drawing.Size(100, 25);
+ //
+ // toolStripSeparator48
+ //
+ this.toolStripSeparator48.Name = "toolStripSeparator48";
+ this.toolStripSeparator48.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton24
+ //
+ this.toolStripButton24.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton24.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton24.Image")));
+ this.toolStripButton24.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton24.Name = "toolStripButton24";
+ this.toolStripButton24.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton24.Text = "Add";
+ this.toolStripButton24.Click += new System.EventHandler(this.ToolStripButton24_Click);
+ //
+ // toolStripSeparator49
+ //
+ this.toolStripSeparator49.Name = "toolStripSeparator49";
+ this.toolStripSeparator49.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton25
+ //
+ this.toolStripButton25.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton25.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton25.Image")));
+ this.toolStripButton25.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton25.Name = "toolStripButton25";
+ this.toolStripButton25.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton25.Text = "Clear";
+ this.toolStripButton25.Click += new System.EventHandler(this.ToolStripButton25_Click);
+ //
+ // tabPage18
+ //
+ this.tabPage18.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage18.Controls.Add(this.panel40);
+ this.tabPage18.Controls.Add(this.toolStrip20);
+ this.tabPage18.Controls.Add(this.panel38);
+ this.tabPage18.Controls.Add(this.panel37);
+ this.tabPage18.Location = new System.Drawing.Point(4, 22);
+ this.tabPage18.Name = "tabPage18";
+ this.tabPage18.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage18.Size = new System.Drawing.Size(629, 405);
+ this.tabPage18.TabIndex = 2;
+ this.tabPage18.Text = "Miscellaneous Info";
+ //
+ // panel40
+ //
+ this.panel40.Controls.Add(this.dataGridViewIRDIConnectorMiscData);
+ this.panel40.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel40.Location = new System.Drawing.Point(3, 284);
+ this.panel40.Name = "panel40";
+ this.panel40.Size = new System.Drawing.Size(623, 118);
+ this.panel40.TabIndex = 3;
+ //
+ // dataGridViewIRDIConnectorMiscData
+ //
+ this.dataGridViewIRDIConnectorMiscData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIConnectorMiscData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column34,
+ this.Column35,
+ this.Column36,
+ this.Column37});
+ this.dataGridViewIRDIConnectorMiscData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIConnectorMiscData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorMiscData.Name = "dataGridViewIRDIConnectorMiscData";
+ this.dataGridViewIRDIConnectorMiscData.Size = new System.Drawing.Size(623, 118);
+ this.dataGridViewIRDIConnectorMiscData.TabIndex = 0;
+ //
+ // Column34
+ //
+ this.Column34.HeaderText = "ID";
+ this.Column34.Name = "Column34";
+ this.Column34.Width = 150;
+ //
+ // Column35
+ //
+ this.Column35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column35.HeaderText = "Attribute";
+ this.Column35.Name = "Column35";
+ //
+ // Column36
+ //
+ this.Column36.HeaderText = "Value";
+ this.Column36.Name = "Column36";
+ //
+ // Column37
+ //
+ this.Column37.HeaderText = "Units";
+ this.Column37.Name = "Column37";
+ //
+ // toolStrip20
+ //
+ this.toolStrip20.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel27,
+ this.toolStripButton30,
+ this.toolStripSeparator52,
+ this.toolStripButton31});
+ this.toolStrip20.Location = new System.Drawing.Point(3, 259);
+ this.toolStrip20.Name = "toolStrip20";
+ this.toolStrip20.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip20.TabIndex = 2;
+ this.toolStrip20.Text = "toolStrip20";
+ //
+ // toolStripLabel27
+ //
+ this.toolStripLabel27.Enabled = false;
+ this.toolStripLabel27.Name = "toolStripLabel27";
+ this.toolStripLabel27.Size = new System.Drawing.Size(168, 22);
+ this.toolStripLabel27.Text = "Connector Miscellineous Info :";
+ //
+ // toolStripButton30
+ //
+ this.toolStripButton30.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton30.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton30.Image")));
+ this.toolStripButton30.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton30.Name = "toolStripButton30";
+ this.toolStripButton30.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton30.Text = "Add";
+ this.toolStripButton30.Click += new System.EventHandler(this.ToolStripButton30_Click);
+ //
+ // toolStripSeparator52
+ //
+ this.toolStripSeparator52.Name = "toolStripSeparator52";
+ this.toolStripSeparator52.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton31
+ //
+ this.toolStripButton31.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton31.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton31.Image")));
+ this.toolStripButton31.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton31.Name = "toolStripButton31";
+ this.toolStripButton31.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton31.Text = "Clear";
+ this.toolStripButton31.Click += new System.EventHandler(this.ToolStripButton31_Click);
+ //
+ // panel38
+ //
+ this.panel38.Controls.Add(this.panel39);
+ this.panel38.Controls.Add(this.toolStrip23);
+ this.panel38.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel38.Location = new System.Drawing.Point(3, 132);
+ this.panel38.Name = "panel38";
+ this.panel38.Size = new System.Drawing.Size(623, 127);
+ this.panel38.TabIndex = 1;
+ //
+ // panel39
+ //
+ this.panel39.Controls.Add(this.dataGridViewIRDIConnectorMaterialData);
+ this.panel39.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel39.Location = new System.Drawing.Point(0, 25);
+ this.panel39.Name = "panel39";
+ this.panel39.Size = new System.Drawing.Size(623, 102);
+ this.panel39.TabIndex = 2;
+ //
+ // dataGridViewIRDIConnectorMaterialData
+ //
+ this.dataGridViewIRDIConnectorMaterialData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIConnectorMaterialData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column31,
+ this.Column32,
+ this.Column33});
+ this.dataGridViewIRDIConnectorMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIConnectorMaterialData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorMaterialData.Name = "dataGridViewIRDIConnectorMaterialData";
+ this.dataGridViewIRDIConnectorMaterialData.Size = new System.Drawing.Size(623, 102);
+ this.dataGridViewIRDIConnectorMaterialData.TabIndex = 0;
+ //
+ // Column31
+ //
+ this.Column31.HeaderText = "ID";
+ this.Column31.Name = "Column31";
+ this.Column31.Width = 150;
+ //
+ // Column32
+ //
+ this.Column32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column32.HeaderText = "Attribute";
+ this.Column32.Name = "Column32";
+ //
+ // Column33
+ //
+ this.Column33.HeaderText = "Value";
+ this.Column33.Name = "Column33";
+ //
+ // toolStrip23
+ //
+ this.toolStrip23.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel26,
+ this.toolStripButton28,
+ this.toolStripSeparator51,
+ this.toolStripButton29});
+ this.toolStrip23.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip23.Name = "toolStrip23";
+ this.toolStrip23.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip23.TabIndex = 1;
+ this.toolStrip23.Text = "toolStrip23";
+ //
+ // toolStripLabel26
+ //
+ this.toolStripLabel26.Enabled = false;
+ this.toolStripLabel26.Name = "toolStripLabel26";
+ this.toolStripLabel26.Size = new System.Drawing.Size(139, 22);
+ this.toolStripLabel26.Text = "Connector Material Info :";
+ //
+ // toolStripButton28
+ //
+ this.toolStripButton28.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton28.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton28.Image")));
+ this.toolStripButton28.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton28.Name = "toolStripButton28";
+ this.toolStripButton28.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton28.Text = "Add";
+ this.toolStripButton28.Click += new System.EventHandler(this.ToolStripButton28_Click);
+ //
+ // toolStripSeparator51
+ //
+ this.toolStripSeparator51.Name = "toolStripSeparator51";
+ this.toolStripSeparator51.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton29
+ //
+ this.toolStripButton29.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton29.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton29.Image")));
+ this.toolStripButton29.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton29.Name = "toolStripButton29";
+ this.toolStripButton29.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton29.Text = "Clear";
+ this.toolStripButton29.Click += new System.EventHandler(this.ToolStripButton29_Click);
+ //
+ // panel37
+ //
+ this.panel37.Controls.Add(this.dataGridViewIRDIConnectorTempData);
+ this.panel37.Controls.Add(this.toolStrip22);
+ this.panel37.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel37.Location = new System.Drawing.Point(3, 3);
+ this.panel37.Name = "panel37";
+ this.panel37.Size = new System.Drawing.Size(623, 129);
+ this.panel37.TabIndex = 0;
+ //
+ // dataGridViewIRDIConnectorTempData
+ //
+ this.dataGridViewIRDIConnectorTempData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDIConnectorTempData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column27,
+ this.Column28,
+ this.Column29,
+ this.Column30});
+ this.dataGridViewIRDIConnectorTempData.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDIConnectorTempData.Location = new System.Drawing.Point(0, 25);
+ this.dataGridViewIRDIConnectorTempData.Name = "dataGridViewIRDIConnectorTempData";
+ this.dataGridViewIRDIConnectorTempData.Size = new System.Drawing.Size(623, 104);
+ this.dataGridViewIRDIConnectorTempData.TabIndex = 1;
+ //
+ // Column27
+ //
+ this.Column27.HeaderText = "ID";
+ this.Column27.Name = "Column27";
+ this.Column27.Width = 150;
+ //
+ // Column28
+ //
+ this.Column28.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column28.HeaderText = "Attribute";
+ this.Column28.Name = "Column28";
+ //
+ // Column29
+ //
+ this.Column29.HeaderText = "Value";
+ this.Column29.Name = "Column29";
+ //
+ // Column30
+ //
+ this.Column30.HeaderText = "Units";
+ this.Column30.Name = "Column30";
+ //
+ // toolStrip22
+ //
+ this.toolStrip22.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel25,
+ this.toolStripButton26,
+ this.toolStripSeparator50,
+ this.toolStripButton27});
+ this.toolStrip22.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip22.Name = "toolStrip22";
+ this.toolStrip22.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip22.TabIndex = 0;
+ this.toolStrip22.Text = "toolStrip22";
+ //
+ // toolStripLabel25
+ //
+ this.toolStripLabel25.Enabled = false;
+ this.toolStripLabel25.Name = "toolStripLabel25";
+ this.toolStripLabel25.Size = new System.Drawing.Size(163, 22);
+ this.toolStripLabel25.Text = "Connector Temperature Info :";
+ //
+ // toolStripButton26
+ //
+ this.toolStripButton26.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton26.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton26.Image")));
+ this.toolStripButton26.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton26.Name = "toolStripButton26";
+ this.toolStripButton26.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton26.Text = "Add";
+ this.toolStripButton26.Click += new System.EventHandler(this.ToolStripButton26_Click);
+ //
+ // toolStripSeparator50
+ //
+ this.toolStripSeparator50.Name = "toolStripSeparator50";
+ this.toolStripSeparator50.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton27
+ //
+ this.toolStripButton27.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton27.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton27.Image")));
+ this.toolStripButton27.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton27.Name = "toolStripButton27";
+ this.toolStripButton27.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton27.Text = "Clear";
+ this.toolStripButton27.Click += new System.EventHandler(this.ToolStripButton27_Click);
+ //
+ // toolStrip13
+ //
+ this.toolStrip13.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.interfaceNumberdrpdwn,
+ this.toolStripSeparator17,
+ this.interfacesNumberTxtbx,
+ this.toolStripSeparator18,
+ this.addInterfaces,
+ this.toolStripSeparator19,
+ this.toolStripButton4,
+ this.toolStripSeparator20,
+ this.toolStripButton5,
+ this.toolStripSeparator21,
+ this.interfacecollection});
+ this.toolStrip13.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip13.Name = "toolStrip13";
+ this.toolStrip13.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip13.TabIndex = 2;
+ this.toolStrip13.Text = "toolStrip13";
+ //
+ // interfaceNumberdrpdwn
+ //
+ this.interfaceNumberdrpdwn.Name = "interfaceNumberdrpdwn";
+ this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(119, 22);
+ this.interfaceNumberdrpdwn.Text = "Number of Interfaces";
+ //
+ // toolStripSeparator17
+ //
+ this.toolStripSeparator17.Name = "toolStripSeparator17";
+ this.toolStripSeparator17.Size = new System.Drawing.Size(6, 25);
+ //
+ // interfacesNumberTxtbx
//
- this.interfacesNumberTxtbx.Items.AddRange(new object[] {
- "1",
- "2",
- "3",
- "4"});
this.interfacesNumberTxtbx.Name = "interfacesNumberTxtbx";
this.interfacesNumberTxtbx.Size = new System.Drawing.Size(75, 25);
//
@@ -2536,21 +3517,72 @@ private void InitializeComponent()
this.toolStripSeparator18.Name = "toolStripSeparator18";
this.toolStripSeparator18.Size = new System.Drawing.Size(6, 25);
//
+ // addInterfaces
+ //
+ this.addInterfaces.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.addInterfaces.Image = ((System.Drawing.Image)(resources.GetObject("addInterfaces.Image")));
+ this.addInterfaces.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addInterfaces.Name = "addInterfaces";
+ this.addInterfaces.Size = new System.Drawing.Size(33, 22);
+ this.addInterfaces.Text = "Add";
+ this.addInterfaces.Click += new System.EventHandler(this.ToolStripButton3_Click_1);
+ //
// toolStripSeparator19
//
this.toolStripSeparator19.Name = "toolStripSeparator19";
this.toolStripSeparator19.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton4
+ //
+ this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
+ this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton4.Name = "toolStripButton4";
+ this.toolStripButton4.Size = new System.Drawing.Size(44, 22);
+ this.toolStripButton4.Text = "Delete";
+ //
// toolStripSeparator20
//
this.toolStripSeparator20.Name = "toolStripSeparator20";
this.toolStripSeparator20.Size = new System.Drawing.Size(6, 25);
//
+ // toolStripButton5
+ //
+ this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
+ this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton5.Name = "toolStripButton5";
+ this.toolStripButton5.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton5.Text = "Clear";
+ //
// toolStripSeparator21
//
this.toolStripSeparator21.Name = "toolStripSeparator21";
this.toolStripSeparator21.Size = new System.Drawing.Size(6, 25);
//
+ // interfacecollection
+ //
+ this.interfacecollection.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.interfacecollection.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.interfacecollection.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datenbank_hinzufügen_30;
+ this.interfacecollection.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.interfacecollection.Name = "interfacecollection";
+ this.interfacecollection.Size = new System.Drawing.Size(29, 22);
+ this.interfacecollection.Text = "toolStripButton30";
+ //
+ // button2
+ //
+ this.button2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button2.Location = new System.Drawing.Point(0, 0);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(637, 23);
+ this.button2.TabIndex = 0;
+ this.button2.Text = "Electrical Interface";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2_Click);
+ //
// tabPage6
//
this.tabPage6.AutoScroll = true;
@@ -2700,6 +3732,15 @@ private void InitializeComponent()
this.panel15.Size = new System.Drawing.Size(429, 30);
this.panel15.TabIndex = 1;
//
+ // button11
+ //
+ this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button11.Location = new System.Drawing.Point(262, 2);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(30, 25);
+ this.button11.TabIndex = 4;
+ this.button11.UseVisualStyleBackColor = true;
+ //
// textBox22
//
this.textBox22.Location = new System.Drawing.Point(0, 5);
@@ -2719,6 +3760,15 @@ private void InitializeComponent()
this.panel16.Size = new System.Drawing.Size(429, 30);
this.panel16.TabIndex = 2;
//
+ // button12
+ //
+ this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button12.Location = new System.Drawing.Point(262, 3);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(30, 25);
+ this.button12.TabIndex = 5;
+ this.button12.UseVisualStyleBackColor = true;
+ //
// textBox23
//
this.textBox23.Location = new System.Drawing.Point(0, 4);
@@ -2738,6 +3788,15 @@ private void InitializeComponent()
this.panel17.Size = new System.Drawing.Size(429, 30);
this.panel17.TabIndex = 5;
//
+ // button13
+ //
+ this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button13.Location = new System.Drawing.Point(262, 3);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(30, 25);
+ this.button13.TabIndex = 6;
+ this.button13.UseVisualStyleBackColor = true;
+ //
// textBox24
//
this.textBox24.Location = new System.Drawing.Point(0, 5);
@@ -2746,6 +3805,20 @@ private void InitializeComponent()
this.textBox24.Size = new System.Drawing.Size(250, 20);
this.textBox24.TabIndex = 1;
//
+ // button10
+ //
+ this.button10.BackColor = System.Drawing.Color.DarkGray;
+ this.button10.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button10.Location = new System.Drawing.Point(0, 0);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(600, 25);
+ this.button10.TabIndex = 0;
+ this.button10.Text = "+ Add Documents ";
+ this.button10.UseVisualStyleBackColor = false;
+ this.button10.Click += new System.EventHandler(this.Button10_Click);
+ //
// panel10
//
this.panel10.BackColor = System.Drawing.Color.WhiteSmoke;
@@ -2876,6 +3949,15 @@ private void InitializeComponent()
this.panel11.Size = new System.Drawing.Size(429, 30);
this.panel11.TabIndex = 1;
//
+ // button4
+ //
+ this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button4.Location = new System.Drawing.Point(262, 3);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(30, 25);
+ this.button4.TabIndex = 1;
+ this.button4.UseVisualStyleBackColor = true;
+ //
// textBox19
//
this.textBox19.Location = new System.Drawing.Point(0, 5);
@@ -2896,6 +3978,15 @@ private void InitializeComponent()
this.panel12.Size = new System.Drawing.Size(429, 30);
this.panel12.TabIndex = 5;
//
+ // button5
+ //
+ this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button5.Location = new System.Drawing.Point(262, 3);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(30, 25);
+ this.button5.TabIndex = 2;
+ this.button5.UseVisualStyleBackColor = true;
+ //
// textBox20
//
this.textBox20.Location = new System.Drawing.Point(0, 4);
@@ -2915,6 +4006,15 @@ private void InitializeComponent()
this.panel13.Size = new System.Drawing.Size(429, 30);
this.panel13.TabIndex = 6;
//
+ // button9
+ //
+ this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.button9.Location = new System.Drawing.Point(262, 3);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(30, 25);
+ this.button9.TabIndex = 3;
+ this.button9.UseVisualStyleBackColor = true;
+ //
// textBox21
//
this.textBox21.Location = new System.Drawing.Point(0, 5);
@@ -2923,6 +4023,21 @@ private void InitializeComponent()
this.textBox21.Size = new System.Drawing.Size(250, 20);
this.textBox21.TabIndex = 2;
//
+ // button1
+ //
+ this.button1.BackColor = System.Drawing.Color.DarkGray;
+ this.button1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button1.Location = new System.Drawing.Point(0, 0);
+ this.button1.Margin = new System.Windows.Forms.Padding(0);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(600, 25);
+ this.button1.TabIndex = 0;
+ this.button1.Text = "+ Add Logo";
+ this.button1.UseVisualStyleBackColor = false;
+ this.button1.Click += new System.EventHandler(this.Button1_Click);
+ //
// tabPage2
//
this.tabPage2.AutoScroll = true;
@@ -2967,6 +4082,36 @@ private void InitializeComponent()
this.toolStrip8.TabIndex = 3;
this.toolStrip8.Text = "toolStrip8";
//
+ // toolStripButton12
+ //
+ this.toolStripButton12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
+ this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton12.Name = "toolStripButton12";
+ this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton12.Text = "Clear";
+ //
+ // toolStripButton13
+ //
+ this.toolStripButton13.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
+ this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton13.Name = "toolStripButton13";
+ this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton13.Text = "Cancel";
+ //
+ // toolStripButton14
+ //
+ this.toolStripButton14.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
+ this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton14.Name = "toolStripButton14";
+ this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton14.Text = "Save";
+ //
// toolStripLabel12
//
this.toolStripLabel12.Name = "toolStripLabel12";
@@ -3229,6 +4374,20 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
this.dataGridViewTextBoxColumn9.Width = 250;
//
+ // button33
+ //
+ this.button33.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button33.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button33.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button33.Location = new System.Drawing.Point(0, 0);
+ this.button33.Margin = new System.Windows.Forms.Padding(0);
+ this.button33.Name = "button33";
+ this.button33.Size = new System.Drawing.Size(637, 23);
+ this.button33.TabIndex = 1;
+ this.button33.Text = "Commercial Data";
+ this.button33.UseVisualStyleBackColor = true;
+ this.button33.Click += new System.EventHandler(this.Button33_Click);
+ //
// panel28
//
this.panel28.Controls.Add(this.toolStrip7);
@@ -3258,9 +4417,39 @@ private void InitializeComponent()
this.toolStrip7.TabIndex = 3;
this.toolStrip7.Text = "toolStrip7";
//
- // toolStripLabel11
+ // toolStripButton9
//
- this.toolStripLabel11.Name = "toolStripLabel11";
+ this.toolStripButton9.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
+ this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton9.Name = "toolStripButton9";
+ this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton9.Text = "Clear";
+ //
+ // toolStripButton10
+ //
+ this.toolStripButton10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
+ this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton10.Name = "toolStripButton10";
+ this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton10.Text = "Cancel";
+ //
+ // toolStripButton11
+ //
+ this.toolStripButton11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
+ this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton11.Name = "toolStripButton11";
+ this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton11.Text = "Save";
+ //
+ // toolStripLabel11
+ //
+ this.toolStripLabel11.Name = "toolStripLabel11";
this.toolStripLabel11.Size = new System.Drawing.Size(111, 22);
this.toolStripLabel11.Text = "Ref Semantic Prefix:";
//
@@ -3534,6 +4723,20 @@ private void InitializeComponent()
this.textBox84.Size = new System.Drawing.Size(163, 20);
this.textBox84.TabIndex = 1;
//
+ // button32
+ //
+ this.button32.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button32.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button32.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button32.Location = new System.Drawing.Point(0, 0);
+ this.button32.Margin = new System.Windows.Forms.Padding(0);
+ this.button32.Name = "button32";
+ this.button32.Size = new System.Drawing.Size(637, 23);
+ this.button32.TabIndex = 1;
+ this.button32.Text = "General Technical Data";
+ this.button32.UseVisualStyleBackColor = true;
+ this.button32.Click += new System.EventHandler(this.Button32_Click);
+ //
// panel27
//
this.panel27.Controls.Add(this.panel32);
@@ -3611,6 +4814,51 @@ private void InitializeComponent()
this.toolStrip6.TabIndex = 2;
this.toolStrip6.Text = "toolStrip6";
//
+ // toolStripButton6
+ //
+ this.toolStripButton6.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
+ this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton6.Name = "toolStripButton6";
+ this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton6.Text = "Clear";
+ this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
+ //
+ // toolStripButton7
+ //
+ this.toolStripButton7.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
+ this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton7.Name = "toolStripButton7";
+ this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton7.Text = "Cancel";
+ //
+ // toolStripButton8
+ //
+ this.toolStripButton8.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
+ this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton8.Name = "toolStripButton8";
+ this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton8.Text = "Save";
+ //
+ // button3
+ //
+ this.button3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button3.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.button3.Location = new System.Drawing.Point(0, 0);
+ this.button3.Margin = new System.Windows.Forms.Padding(0);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(637, 23);
+ this.button3.TabIndex = 0;
+ this.button3.Text = "Identification Data";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3_Click_1);
+ //
// panel25
//
this.panel25.BackColor = System.Drawing.Color.LightGray;
@@ -3629,37 +4877,37 @@ private void InitializeComponent()
this.treeView2.Dock = System.Windows.Forms.DockStyle.Top;
this.treeView2.Location = new System.Drawing.Point(0, 25);
this.treeView2.Name = "treeView2";
- treeNode25.Name = "Node10";
- treeNode25.Text = "Node10";
- treeNode26.Name = "Node11";
- treeNode26.Text = "Node11";
- treeNode27.Name = "Node6";
- treeNode27.Text = "Node6";
- treeNode28.Name = "Node7";
- treeNode28.Text = "Node7";
- treeNode29.Name = "Node0";
- treeNode29.Text = "Node0";
- treeNode30.Name = "Node8";
- treeNode30.Text = "Node8";
- treeNode31.Name = "Node9";
- treeNode31.Text = "Node9";
- treeNode32.Name = "Node1";
- treeNode32.Text = "Node1";
- treeNode33.Name = "Node2";
- treeNode33.Text = "Node2";
- treeNode34.Name = "Node3";
- treeNode34.Text = "Node3";
- treeNode35.Name = "Node4";
- treeNode35.Text = "Node4";
- treeNode36.Name = "Node5";
- treeNode36.Text = "Node5";
+ treeNode1.Name = "Node10";
+ treeNode1.Text = "Node10";
+ treeNode2.Name = "Node11";
+ treeNode2.Text = "Node11";
+ treeNode3.Name = "Node6";
+ treeNode3.Text = "Node6";
+ treeNode4.Name = "Node7";
+ treeNode4.Text = "Node7";
+ treeNode5.Name = "Node0";
+ treeNode5.Text = "Node0";
+ treeNode6.Name = "Node8";
+ treeNode6.Text = "Node8";
+ treeNode7.Name = "Node9";
+ treeNode7.Text = "Node9";
+ treeNode8.Name = "Node1";
+ treeNode8.Text = "Node1";
+ treeNode9.Name = "Node2";
+ treeNode9.Text = "Node2";
+ treeNode10.Name = "Node3";
+ treeNode10.Text = "Node3";
+ treeNode11.Name = "Node4";
+ treeNode11.Text = "Node4";
+ treeNode12.Name = "Node5";
+ treeNode12.Text = "Node5";
this.treeView2.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
- treeNode29,
- treeNode32,
- treeNode33,
- treeNode34,
- treeNode35,
- treeNode36});
+ treeNode5,
+ treeNode8,
+ treeNode9,
+ treeNode10,
+ treeNode11,
+ treeNode12});
this.treeView2.Size = new System.Drawing.Size(200, 230);
this.treeView2.TabIndex = 2;
//
@@ -3784,16 +5032,44 @@ private void InitializeComponent()
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
+ // addSemanticSystems
+ //
+ this.addSemanticSystems.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.addSemanticSystems.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
+ this.addSemanticSystems.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.addSemanticSystems.Name = "addSemanticSystems";
+ this.addSemanticSystems.Size = new System.Drawing.Size(23, 22);
+ this.addSemanticSystems.Text = "addSemanticSystems";
+ this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
+ //
// toolStripSeparator15
//
this.toolStripSeparator15.Name = "toolStripSeparator15";
this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
//
+ // cancelSemanticSystem
+ //
+ this.cancelSemanticSystem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.cancelSemanticSystem.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_abo_kündigen_16;
+ this.cancelSemanticSystem.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.cancelSemanticSystem.Name = "cancelSemanticSystem";
+ this.cancelSemanticSystem.Size = new System.Drawing.Size(23, 22);
+ this.cancelSemanticSystem.Text = "toolStripButton3";
+ this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
+ //
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
//
+ // generaterAML
+ //
+ this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
+ this.generaterAML.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.generaterAML.Name = "generaterAML";
+ this.generaterAML.Size = new System.Drawing.Size(74, 22);
+ this.generaterAML.Text = "Generate";
+ //
// statusStrip1
//
this.statusStrip1.Location = new System.Drawing.Point(0, 735);
@@ -3831,538 +5107,7 @@ private void InitializeComponent()
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
- // connectorTypelabel
- //
- this.connectorTypelabel.Name = "connectorTypelabel";
- this.connectorTypelabel.Size = new System.Drawing.Size(91, 22);
- this.connectorTypelabel.Text = "Connector Type";
- //
- // toolStripSeparator41
- //
- this.toolStripSeparator41.Name = "toolStripSeparator41";
- this.toolStripSeparator41.Size = new System.Drawing.Size(6, 25);
- //
- // connectorTypeCmbx
- //
- this.connectorTypeCmbx.Items.AddRange(new object[] {
- "Male",
- "Female"});
- this.connectorTypeCmbx.Name = "connectorTypeCmbx";
- this.connectorTypeCmbx.Size = new System.Drawing.Size(75, 25);
- //
- // toolStripLabel13
- //
- this.toolStripLabel13.Name = "toolStripLabel13";
- this.toolStripLabel13.Size = new System.Drawing.Size(66, 22);
- this.toolStripLabel13.Text = "Connector ";
- //
- // toolStripSeparator27
- //
- this.toolStripSeparator27.Name = "toolStripSeparator27";
- this.toolStripSeparator27.Size = new System.Drawing.Size(6, 25);
- //
- // toolStripComboBox1
- //
- this.toolStripComboBox1.Items.AddRange(new object[] {
- "M-5 Connector",
- "M-8 Connector",
- "M-12 Connector",
- "RJ-45 Ethernet Connector",
- "7/8-Inch Power Supply Connector",
- "Others"});
- this.toolStripComboBox1.Name = "toolStripComboBox1";
- this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
- //
- // toolStripSeparator26
- //
- this.toolStripSeparator26.Name = "toolStripSeparator26";
- this.toolStripSeparator26.Size = new System.Drawing.Size(6, 25);
- //
- // toolStripSeparator34
- //
- this.toolStripSeparator34.Name = "toolStripSeparator34";
- this.toolStripSeparator34.Size = new System.Drawing.Size(6, 25);
- //
- // toolStripLabel19
- //
- this.toolStripLabel19.Name = "toolStripLabel19";
- this.toolStripLabel19.Size = new System.Drawing.Size(0, 22);
- //
- // toolStrip14
- //
- this.toolStrip14.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripLabel13,
- this.toolStripSeparator27,
- this.toolStripComboBox1,
- this.toolStripSeparator26,
- this.addConnector,
- this.toolStripSeparator34,
- this.toolStripButton15,
- this.toolStripLabel19});
- this.toolStrip14.Location = new System.Drawing.Point(3, 3);
- this.toolStrip14.Name = "toolStrip14";
- this.toolStrip14.Size = new System.Drawing.Size(623, 25);
- this.toolStrip14.TabIndex = 0;
- this.toolStrip14.Text = "Connector";
- //
- // addPinsButton
- //
- this.addPinsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.addPinsButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
- this.addPinsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.addPinsButton.Name = "addPinsButton";
- this.addPinsButton.Size = new System.Drawing.Size(33, 22);
- this.addPinsButton.Text = "Add";
- this.addPinsButton.Click += new System.EventHandler(this.ToolStripButton3_Click_2);
- //
- // toolStripButton3
- //
- this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
- this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton3.Name = "toolStripButton3";
- this.toolStripButton3.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton3.Text = "Clear";
- this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3_Click_3);
- //
- // toolStripButton15
- //
- this.toolStripButton15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton15.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_löschen_26;
- this.toolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton15.Name = "toolStripButton15";
- this.toolStripButton15.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton15.Text = "Clear";
- this.toolStripButton15.Click += new System.EventHandler(this.ToolStripButton15_Click);
- //
- // toolStripButton18
- //
- this.toolStripButton18.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton18.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
- this.toolStripButton18.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton18.Name = "toolStripButton18";
- this.toolStripButton18.Size = new System.Drawing.Size(33, 22);
- this.toolStripButton18.Text = "Add";
- this.toolStripButton18.Click += new System.EventHandler(this.ToolStripButton18_Click);
- //
- // toolStripButton19
- //
- this.toolStripButton19.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton19.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton19.Image")));
- this.toolStripButton19.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton19.Name = "toolStripButton19";
- this.toolStripButton19.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton19.Text = "Clear";
- this.toolStripButton19.Click += new System.EventHandler(this.ToolStripButton19_Click);
- //
- // toolStripButton16
- //
- this.toolStripButton16.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton16.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
- this.toolStripButton16.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton16.Name = "toolStripButton16";
- this.toolStripButton16.Size = new System.Drawing.Size(33, 22);
- this.toolStripButton16.Text = "Add";
- this.toolStripButton16.Click += new System.EventHandler(this.ToolStripButton16_Click);
- //
- // toolStripButton17
- //
- this.toolStripButton17.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton17.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton17.Image")));
- this.toolStripButton17.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton17.Name = "toolStripButton17";
- this.toolStripButton17.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton17.Text = "Clear";
- this.toolStripButton17.Click += new System.EventHandler(this.ToolStripButton17_Click);
- //
- // addInterfaces
- //
- this.addInterfaces.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.addInterfaces.Image = ((System.Drawing.Image)(resources.GetObject("addInterfaces.Image")));
- this.addInterfaces.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.addInterfaces.Name = "addInterfaces";
- this.addInterfaces.Size = new System.Drawing.Size(33, 22);
- this.addInterfaces.Text = "Add";
- this.addInterfaces.Click += new System.EventHandler(this.ToolStripButton3_Click_1);
- //
- // toolStripButton4
- //
- this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
- this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton4.Name = "toolStripButton4";
- this.toolStripButton4.Size = new System.Drawing.Size(44, 22);
- this.toolStripButton4.Text = "Delete";
- //
- // toolStripButton5
- //
- this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
- this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton5.Name = "toolStripButton5";
- this.toolStripButton5.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton5.Text = "Clear";
- //
- // button2
- //
- this.button2.Dock = System.Windows.Forms.DockStyle.Top;
- this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button2.Location = new System.Drawing.Point(0, 0);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(637, 23);
- this.button2.TabIndex = 0;
- this.button2.Text = "Electrical Interface";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.Button2_Click);
- //
- // button11
- //
- this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button11.Location = new System.Drawing.Point(262, 2);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(30, 25);
- this.button11.TabIndex = 4;
- this.button11.UseVisualStyleBackColor = true;
- //
- // button12
- //
- this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button12.Location = new System.Drawing.Point(262, 3);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(30, 25);
- this.button12.TabIndex = 5;
- this.button12.UseVisualStyleBackColor = true;
- //
- // button13
- //
- this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button13.Location = new System.Drawing.Point(262, 3);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(30, 25);
- this.button13.TabIndex = 6;
- this.button13.UseVisualStyleBackColor = true;
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.DarkGray;
- this.button10.Dock = System.Windows.Forms.DockStyle.Top;
- this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button10.Location = new System.Drawing.Point(0, 0);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(600, 25);
- this.button10.TabIndex = 0;
- this.button10.Text = "+ Add Documents ";
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.Button10_Click);
- //
- // button4
- //
- this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button4.Location = new System.Drawing.Point(262, 3);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(30, 25);
- this.button4.TabIndex = 1;
- this.button4.UseVisualStyleBackColor = true;
- //
- // button5
- //
- this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button5.Location = new System.Drawing.Point(262, 3);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(30, 25);
- this.button5.TabIndex = 2;
- this.button5.UseVisualStyleBackColor = true;
- //
- // button9
- //
- this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button9.Location = new System.Drawing.Point(262, 3);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(30, 25);
- this.button9.TabIndex = 3;
- this.button9.UseVisualStyleBackColor = true;
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.DarkGray;
- this.button1.Dock = System.Windows.Forms.DockStyle.Top;
- this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button1.Location = new System.Drawing.Point(0, 0);
- this.button1.Margin = new System.Windows.Forms.Padding(0);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(600, 25);
- this.button1.TabIndex = 0;
- this.button1.Text = "+ Add Logo";
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.Button1_Click);
- //
- // toolStripButton12
- //
- this.toolStripButton12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
- this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton12.Name = "toolStripButton12";
- this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton12.Text = "Clear";
- //
- // toolStripButton13
- //
- this.toolStripButton13.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
- this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton13.Name = "toolStripButton13";
- this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton13.Text = "Cancel";
- //
- // toolStripButton14
- //
- this.toolStripButton14.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
- this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton14.Name = "toolStripButton14";
- this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton14.Text = "Save";
- //
- // button33
- //
- this.button33.Dock = System.Windows.Forms.DockStyle.Top;
- this.button33.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button33.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button33.Location = new System.Drawing.Point(0, 0);
- this.button33.Margin = new System.Windows.Forms.Padding(0);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(637, 23);
- this.button33.TabIndex = 1;
- this.button33.Text = "Commercial Data";
- this.button33.UseVisualStyleBackColor = true;
- this.button33.Click += new System.EventHandler(this.Button33_Click);
- //
- // toolStripButton9
- //
- this.toolStripButton9.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
- this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton9.Name = "toolStripButton9";
- this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton9.Text = "Clear";
- //
- // toolStripButton10
- //
- this.toolStripButton10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
- this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton10.Name = "toolStripButton10";
- this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton10.Text = "Cancel";
- //
- // toolStripButton11
- //
- this.toolStripButton11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
- this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton11.Name = "toolStripButton11";
- this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton11.Text = "Save";
- //
- // button32
- //
- this.button32.Dock = System.Windows.Forms.DockStyle.Top;
- this.button32.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button32.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button32.Location = new System.Drawing.Point(0, 0);
- this.button32.Margin = new System.Windows.Forms.Padding(0);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(637, 23);
- this.button32.TabIndex = 1;
- this.button32.Text = "General Technical Data";
- this.button32.UseVisualStyleBackColor = true;
- this.button32.Click += new System.EventHandler(this.Button32_Click);
- //
- // toolStripButton6
- //
- this.toolStripButton6.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
- this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton6.Name = "toolStripButton6";
- this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
- this.toolStripButton6.Text = "Clear";
- this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
- //
- // toolStripButton7
- //
- this.toolStripButton7.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
- this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton7.Name = "toolStripButton7";
- this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
- this.toolStripButton7.Text = "Cancel";
- //
- // toolStripButton8
- //
- this.toolStripButton8.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
- this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
- this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton8.Name = "toolStripButton8";
- this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
- this.toolStripButton8.Text = "Save";
- //
- // button3
- //
- this.button3.Dock = System.Windows.Forms.DockStyle.Top;
- this.button3.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
- this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.button3.Location = new System.Drawing.Point(0, 0);
- this.button3.Margin = new System.Windows.Forms.Padding(0);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(637, 23);
- this.button3.TabIndex = 0;
- this.button3.Text = "Identification Data";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.Button3_Click_1);
- //
- // addSemanticSystems
- //
- this.addSemanticSystems.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.addSemanticSystems.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.addSemanticSystems.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.addSemanticSystems.Name = "addSemanticSystems";
- this.addSemanticSystems.Size = new System.Drawing.Size(23, 22);
- this.addSemanticSystems.Text = "addSemanticSystems";
- this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
- //
- // cancelSemanticSystem
- //
- this.cancelSemanticSystem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.cancelSemanticSystem.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_abo_kündigen_16;
- this.cancelSemanticSystem.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.cancelSemanticSystem.Name = "cancelSemanticSystem";
- this.cancelSemanticSystem.Size = new System.Drawing.Size(23, 22);
- this.cancelSemanticSystem.Text = "toolStripButton3";
- this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
- //
- // generaterAML
- //
- this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
- this.generaterAML.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.generaterAML.Name = "generaterAML";
- this.generaterAML.Size = new System.Drawing.Size(74, 22);
- this.generaterAML.Text = "Generate";
- //
- // toolStripButton1
- //
- this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
- this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton1.Name = "toolStripButton1";
- this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
- this.toolStripButton1.Text = "toolStripButton1";
- this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
- //
- // toolStripButton2
- //
- this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
- this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.toolStripButton2.Name = "toolStripButton2";
- this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
- this.toolStripButton2.Text = "toolStripButton2";
- //
- // newToolStripButton
- //
- this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
- this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.newToolStripButton.Name = "newToolStripButton";
- this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.newToolStripButton.Text = "&New";
- //
- // openToolStripButton
- //
- this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
- this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.openToolStripButton.Name = "openToolStripButton";
- this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.openToolStripButton.Text = "&Open";
- //
- // saveToolStripButton
- //
- this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
- this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.saveToolStripButton.Name = "saveToolStripButton";
- this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.saveToolStripButton.Text = "&Save";
- this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
- //
- // printToolStripButton
- //
- this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
- this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.printToolStripButton.Name = "printToolStripButton";
- this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.printToolStripButton.Text = "&Print";
- //
- // cutToolStripButton
- //
- this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
- this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.cutToolStripButton.Name = "cutToolStripButton";
- this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.cutToolStripButton.Text = "C&ut";
- //
- // copyToolStripButton
- //
- this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
- this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.copyToolStripButton.Name = "copyToolStripButton";
- this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.copyToolStripButton.Text = "&Copy";
- //
- // pasteToolStripButton
- //
- this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
- this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.pasteToolStripButton.Name = "pasteToolStripButton";
- this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.pasteToolStripButton.Text = "&Paste";
- //
- // helpToolStripButton
- //
- this.helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
- this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
- this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.helpToolStripButton.Name = "helpToolStripButton";
- this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
- this.helpToolStripButton.Text = "He&lp";
- //
- // addConnector
- //
- this.addConnector.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.addConnector.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_mathe_30;
- this.addConnector.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.addConnector.Name = "addConnector";
- this.addConnector.Size = new System.Drawing.Size(33, 22);
- this.addConnector.Text = "Add";
- this.addConnector.Click += new System.EventHandler(this.AddConnector_Click);
- //
- // CreateDevice
+ // CreateDevice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -4425,6 +5170,20 @@ private void InitializeComponent()
((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIElectricalData)).EndInit();
this.toolStrip17.ResumeLayout(false);
this.toolStrip17.PerformLayout();
+ this.toolStrip14.ResumeLayout(false);
+ this.toolStrip14.PerformLayout();
+ this.tabPage20.ResumeLayout(false);
+ this.tabPage20.PerformLayout();
+ this.panel35.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
+ this.toolStrip21.ResumeLayout(false);
+ this.toolStrip21.PerformLayout();
+ this.panel22.ResumeLayout(false);
+ this.panel22.PerformLayout();
+ this.panel24.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDICableLeads)).EndInit();
+ this.cableLeadsNumber.ResumeLayout(false);
+ this.cableLeadsNumber.PerformLayout();
this.tabPage8.ResumeLayout(false);
this.tabPage8.PerformLayout();
this.panel7.ResumeLayout(false);
@@ -4437,6 +5196,29 @@ private void InitializeComponent()
((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIMountingData)).EndInit();
this.toolStrip15.ResumeLayout(false);
this.toolStrip15.PerformLayout();
+ this.tabPage19.ResumeLayout(false);
+ this.tabPage19.PerformLayout();
+ this.panel36.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIOrientationData)).EndInit();
+ this.toolStrip19.ResumeLayout(false);
+ this.toolStrip19.PerformLayout();
+ this.tabPage18.ResumeLayout(false);
+ this.tabPage18.PerformLayout();
+ this.panel40.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorMiscData)).EndInit();
+ this.toolStrip20.ResumeLayout(false);
+ this.toolStrip20.PerformLayout();
+ this.panel38.ResumeLayout(false);
+ this.panel38.PerformLayout();
+ this.panel39.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorMaterialData)).EndInit();
+ this.toolStrip23.ResumeLayout(false);
+ this.toolStrip23.PerformLayout();
+ this.panel37.ResumeLayout(false);
+ this.panel37.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDIConnectorTempData)).EndInit();
+ this.toolStrip22.ResumeLayout(false);
+ this.toolStrip22.PerformLayout();
this.toolStrip13.ResumeLayout(false);
this.toolStrip13.PerformLayout();
this.tabPage6.ResumeLayout(false);
@@ -4512,8 +5294,6 @@ private void InitializeComponent()
this.toolStrip4.PerformLayout();
this.toolStrip3.ResumeLayout(false);
this.toolStrip3.PerformLayout();
- this.toolStrip14.ResumeLayout(false);
- this.toolStrip14.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
@@ -4839,9 +5619,7 @@ private void InitializeComponent()
private System.Windows.Forms.Panel panel5;
private System.Windows.Forms.ToolStrip toolStrip13;
private System.Windows.Forms.Button button2;
- private System.Windows.Forms.ToolStripDropDownButton interfaceNumberdrpdwn;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
- private System.Windows.Forms.ToolStripComboBox interfacesNumberTxtbx;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator18;
private System.Windows.Forms.ToolStripButton addInterfaces;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
@@ -4933,5 +5711,87 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripSeparator toolStripSeparator41;
private System.Windows.Forms.ToolStripComboBox connectorTypeCmbx;
private System.Windows.Forms.ToolStripButton addConnector;
+ private System.Windows.Forms.ToolStrip toolStrip19;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel7;
+ private System.Windows.Forms.Panel panel35;
+ private System.Windows.Forms.DataGridView dataGridView2;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column19;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column20;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column21;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column22;
+ private System.Windows.Forms.ToolStrip toolStrip21;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel23;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator44;
+ private System.Windows.Forms.ToolStripButton toolStripButton22;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator45;
+ private System.Windows.Forms.ToolStripButton toolStripButton23;
+ private System.Windows.Forms.Panel panel22;
+ private System.Windows.Forms.Panel panel24;
+ private System.Windows.Forms.DataGridView dataGridViewIRDICableLeads;
+ private System.Windows.Forms.DataGridViewTextBoxColumn PinNumber;
+ private System.Windows.Forms.DataGridViewTextBoxColumn LeadNumber;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Function;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Value;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Units;
+ private System.Windows.Forms.ToolStrip cableLeadsNumber;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel21;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator16;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel22;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator29;
+ private System.Windows.Forms.ToolStripTextBox cableLeadsNumberTxtbx;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator42;
+ private System.Windows.Forms.ToolStripButton toolStripButton20;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator43;
+ private System.Windows.Forms.ToolStripButton toolStripButton21;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator46;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel24;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator47;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox5;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator48;
+ private System.Windows.Forms.ToolStripButton toolStripButton24;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator49;
+ private System.Windows.Forms.ToolStripButton toolStripButton25;
+ private System.Windows.Forms.Panel panel36;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIOrientationData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column23;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column24;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column25;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column26;
+ private System.Windows.Forms.Panel panel37;
+ private System.Windows.Forms.ToolStrip toolStrip22;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel25;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIConnectorTempData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column27;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column28;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column29;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column30;
+ private System.Windows.Forms.ToolStripButton toolStripButton26;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator50;
+ private System.Windows.Forms.ToolStripButton toolStripButton27;
+ private System.Windows.Forms.Panel panel38;
+ private System.Windows.Forms.Panel panel39;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIConnectorMaterialData;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column31;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column32;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column33;
+ private System.Windows.Forms.ToolStrip toolStrip23;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel26;
+ private System.Windows.Forms.ToolStripButton toolStripButton28;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator51;
+ private System.Windows.Forms.ToolStripButton toolStripButton29;
+ private System.Windows.Forms.ToolStripLabel interfaceNumberdrpdwn;
+ private System.Windows.Forms.ToolStripDropDownButton interfacecollection;
+ private System.Windows.Forms.ToolStripTextBox interfacesNumberTxtbx;
+ private System.Windows.Forms.Panel panel40;
+ private System.Windows.Forms.DataGridView dataGridViewIRDIConnectorMiscData;
+ private System.Windows.Forms.ToolStrip toolStrip20;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel27;
+ private System.Windows.Forms.ToolStripButton toolStripButton30;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator52;
+ private System.Windows.Forms.ToolStripButton toolStripButton31;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column34;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column35;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column36;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column37;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index 51cd2ee..12ceb38 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -562,6 +562,17 @@ private void Button2_Click(object sender, EventArgs e)
private void ToolStripButton3_Click_1(object sender, EventArgs e)
{
+ if (interfacesNumberTxtbx.Text != null)
+ {
+ string a = interfacesNumberTxtbx.Text;
+ int b = Convert.ToInt32(a);
+
+ for (int i = 0; i IRDIOD = DIRDI.IRDIConnectorOrientationData();
+
+ datatables.CreateDataTableWith4Columns(IRDIOD, datatableheadersIRDIOD, dataGridViewIRDIOrientationData);
+
+ }
+
+ private void ToolStripButton25_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIOrientationData.Rows.Clear();
+ }
+
+ private void ToolStripButton26_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersIRDITD = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+ Dictionary IRDITD = DIRDI.IRDITemperatureData();
+
+ datatables.CreateDataTableWith4Columns(IRDITD, datatableheadersIRDITD, dataGridViewIRDIConnectorTempData);
+ }
+
+ private void ToolStripButton27_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIConnectorTempData.Rows.Clear();
+ }
+
+ private void ToolStripButton28_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersIRDIMD = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+ Dictionary IRDIMD = DIRDI.IRDIMaterialData();
+
+ datatables.CreateDataTableWith3Columns(IRDIMD, datatableheadersIRDIMD, dataGridViewIRDIConnectorMaterialData);
+ }
+
+ private void ToolStripButton29_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIConnectorMaterialData.Rows.Clear();
+ }
+
+ private void ToolStripButton20_Click(object sender, EventArgs e)
+ {
+ if (cableLeadsNumberTxtbx.Text != null)
+ {
+ int countofleads = 0;
+ string entredvalue = cableLeadsNumberTxtbx.Text;
+ int convertednumber = Convert.ToInt32(entredvalue);
+
+ for (int i =0; i< convertednumber;i++)
+ {
+ dataGridViewIRDICableLeads.Rows.Add();
+ dataGridViewIRDICableLeads.Rows[countofleads + i].Cells[1].Value = (i + 1).ToString();
+ }
+ }
+ }
+
+ private void ToolStripButton21_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDICableLeads.Rows.Clear();
+ }
+
+ private void ToolStripButton30_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersIRDIMiscD = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+ Dictionary IRDIMiscD = DIRDI.IRDIMiscelliniousData();
+
+ datatables.CreateDataTableWith4Columns(IRDIMiscD, datatableheadersIRDIMiscD, dataGridViewIRDIConnectorMiscData);
+ }
+
+ private void ToolStripButton31_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDIConnectorMiscData.Rows.Clear();
+ }
+
+ private void ConnectorStyleCmbx_Click(object sender, EventArgs e)
+ {
+
+ }
}
+}
-}
+
diff --git a/CreateDevice.resx b/CreateDevice.resx
index 4cdcadb..87f9e28 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -129,57 +129,197 @@
545, 20
-
- 650, 20
-
-
- 755, 20
-
-
- 17, 98
-
-
- 1043, 59
-
-
- 794, 98
-
-
- 346, 98
-
-
- 570, 98
-
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
- YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
- 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
- bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
- VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
- c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
- Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
- mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
- kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
- TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
+ 0iiDPCGiE3ZCRkvR8VzTeBhnyR5/ccaZNnPhB4t9sdf6Ln5hb8QeathNJFVFKF5C8DqL4ksDVHWGDf7j
+ LHyPg6NjviSaFqlu5yQYR+KpupaIkrMknCxT3Y7v/NYYb0ITK1c3BarbWWhLQ7IR0cTKReyZ6lZ0XYei
+ ztHpK4bAc+h1FgQijzSxMptrGIxVSO0xX3AaStFki7bUMVFmaMm/eJMGfIH/MkGzLep0AXn4h/r3CJV3
+ mS9gn2bY4UY/UzQ7E9TqfeTFtnuB+XAfzSHKr11kSl/uBebDiZ89ZCst3OUkdwL28sIVsE83ock+EIQV
+ 2Mz2wxeg6/UAAAAASUVORK5CYII=
-
- 458, 98
-
-
- 234, 98
-
-
- 1155, 59
-
-
- 518, 59
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
+ olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
+ 4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
+ YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
+ 5Kni3aFlFg2j3y1z5mnRTJccnNIltQhwq0jFry+mOXNtpWZWDx1Z1NhV3C3JwGFOw25SYjVe5oYhiUKd
+ HKMmwQUrMWUw/CF3NnZvvYKqUh1TvUroS3fXe7HXkwidMngTS2t5KLbregSzMY2f3Wr4qKW6LJvGR1rX
+ 0MLor8OhKYTJBn/GHvvxrliCTBrsOqXIoOBHh5K+hmSq7FqmexTQHuUytkaKxuNMNgYyVneA4Qd7GKjc
+ hjLaRzxH7gIU6JIZaEvgtk1D8wsxSWecCDgNzWFMvwxm/PkhRmr3Mli1nW9lvjRdWc0Jf+/5jzRmyWmv
+ S+GOLQu6U6BFjPvqKOP1AYw88WOoZif9DgmfLVtxaj1RSLdwNvrkPCA3M54KqxrnvRia9MKcGrUrqFOt
+ 5H7qKsqT1mGO9+Lqhc2ELdw+U/r0i+gVZ8hMiCDx3DHORwZyKnQ/hw/uYt9uCTskPvh6e7Fp41rWr/Fg
+ g6eHO+A/lyD8ARfG3mk9fv1YAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
+ DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
+ 8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
+ 1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
+ 4AJizD4UXJrCAUuzEDgbZrjgou2DiohshIcnQtgme5GTPYbkJKcQ1N8OckHW2REVi+RXuM8fxGaDG4oy
+ ALPZIQQ11Z+5QDk1oKJ/hjv7P2FTfCMOH3mFxMQ6IbhROYWOdrCnBI4dfwPr0V4+bRoY9UzXppMjcDdS
+ rC8hy3YhuFI2gTYf2A4Aza4f7N2/o/zaLB8qDYx6zszwr8P7k1thNFYIweXCMXgeAfedq2xxwjClZUeV
+ Jd2GtDNFETiJwfs8MBjKhMCWN8pgoLoqzE8miH1GjE7G4PsZjE7OQsm9ij2mFg7rdrug1xcJAa2l4w7W
+ r00Cgk/n38S7wBwC04u4UGxHrMHF4CbEJtyDLj5fCDIzhljfSxzeavRgyw4Zj9t64GvvQ0d3P3pfD2Kv
+ 2QqNvgFxDN6urYdWmyMElJMnevh60obRktA701PRtGlg1DOdSkXwzrisaMG/RZLWAE60OMW5fNhvAAAA
+ AElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
+ jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
+ X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
+ J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
+ I5DjtuYV7uksRYhr2kebhx2eP6nrycFIEh5fBA/1Nvru8q5+PDaOovK0rABwfwugWzcErfkzHhjsePL6
+ E7q1VrTdNUDcrgGvSYlDZHN5XTNOnL8BVe8AJAoNDtZfLgDu9L1BPJmikzcrk81hlRwodZJwdBXziwnI
+ OrVoaOkiT8C8hKLHBPO7CbywOaE1jeC+bhAd6meQdvZC1KoG/5IS3MZ2HObLUHZSggvkWq3wOvbWiAqA
+ VpWeyStVfCUNf3AZ4zNhfHCFMEDMgye+hYr6FrDLzxQAUuVTpr0ocn74mchg5vsKRt1RcHp2Qv9+kZ78
+ UcE17KkWFgHNN/uQzgBkGKLJPBZiecyGchjzrmFwPIF++xJUbDbUQzEacIArLpopSRSP4CUN1Obf1Abz
+ uqob5KjiXwWH/GVl5HPt5zZh37GL2H1EiF1VZ7GDI6CNW5r/TSzWbwHYL0mKJ5czAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
+ LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
+ QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
+ EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
+ 1NsXzN4PKIxJLLgeIJ2MoXvmFraNBKK3eXZRIveJPvs7FIYniEkXZENOdE+GIZ2Ko10TwLK7tJmKmL0F
+ EEYarYM+NMnt0C1sQzpx/lcSEnZ2gcKY/gs0dlmZuWvmjjmpwA1qxVp2AWFIMAF/OAGBzMjMI7ZrtJCb
+ 4Df3o4Zfxy7QrdxDRFKol5khkpR2H4qmIOzUQNBGwrsXYxccnNOQqNbQ0KGGZ+eEPVwdeLxvqqrf4wGh
+ TNAAAAAASUVORK5CYII=
+
+
+
+
+ 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
+
+
+
+ 650, 20
-
- 413, 59
+
+
+ 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
+
+
+
+ 755, 20
17, 98
@@ -202,319 +342,349 @@
True
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
794, 98
-
- 682, 98
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
True
-
- True
-
-
- True
-
-
- True
-
-
- 682, 98
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- 833, 59
-
-
- 833, 59
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- True
-
-
- 122, 98
-
-
- True
-
-
- True
-
-
- True
-
-
+
True
-
+
True
-
+
True
-
- 122, 98
-
-
- True
+
+ 682, 98
-
- True
+
+ 346, 98
-
+
True
-
+
True
-
+
True
-
+
True
-
- 728, 59
-
-
- 728, 59
+
+ 1130, 98
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
+
True
-
+
True
-
+
True
-
+
True
-
- True
+
+ 1018, 11
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
+
True
-
+
True
-
+
True
-
+
True
-
+
True
-
- True
+
+ 570, 98
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
+
True
-
+
True
-
+
True
-
- True
+
+ 458, 98
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
+
True
-
+
True
-
+
True
-
- True
+
+ 906, 98
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
- 623, 59
-
-
+
True
-
+
True
-
+
True
-
- True
+
+ 241, 137
-
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
True
-
+
True
-
- 623, 59
+
+ True
-
- 1155, 59
+
+ 129, 137
-
- 870, 20
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ True
-
- 1102, 20
+
+ True
-
- 122, 59
+
+ True
-
- 277, 59
+
+ True
-
- 346, 98
+
+ 17, 137
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
@@ -529,7 +699,7 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
@@ -544,6 +714,9 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+ 234, 98
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -589,6 +762,9 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+ 833, 59
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -634,6 +810,48 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 122, 98
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 728, 59
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -679,6 +897,54 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 623, 59
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -724,191 +990,27 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
-
-
- 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
- 2Mz2wxeg6/UAAAAASUVORK5CYII=
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
- olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
- 4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
- YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
- 5Kni3aFlFg2j3y1z5mnRTJccnNIltQhwq0jFry+mOXNtpWZWDx1Z1NhV3C3JwGFOw25SYjVe5oYhiUKd
- HKMmwQUrMWUw/CF3NnZvvYKqUh1TvUroS3fXe7HXkwidMngTS2t5KLbregSzMY2f3Wr4qKW6LJvGR1rX
- 0MLor8OhKYTJBn/GHvvxrliCTBrsOqXIoOBHh5K+hmSq7FqmexTQHuUytkaKxuNMNgYyVneA4Qd7GKjc
- hjLaRzxH7gIU6JIZaEvgtk1D8wsxSWecCDgNzWFMvwxm/PkhRmr3Mli1nW9lvjRdWc0Jf+/5jzRmyWmv
- S+GOLQu6U6BFjPvqKOP1AYw88WOoZif9DgmfLVtxaj1RSLdwNvrkPCA3M54KqxrnvRia9MKcGrUrqFOt
- 5H7qKsqT1mGO9+Lqhc2ELdw+U/r0i+gVZ8hMiCDx3DHORwZyKnQ/hw/uYt9uCTskPvh6e7Fp41rWr/Fg
- g6eHO+A/lyD8ARfG3mk9fv1YAAAAAElFTkSuQmCC
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
- DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
- 8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
- 1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
- 4AJizD4UXJrCAUuzEDgbZrjgou2DiohshIcnQtgme5GTPYbkJKcQ1N8OckHW2REVi+RXuM8fxGaDG4oy
- ALPZIQQ11Z+5QDk1oKJ/hjv7P2FTfCMOH3mFxMQ6IbhROYWOdrCnBI4dfwPr0V4+bRoY9UzXppMjcDdS
- rC8hy3YhuFI2gTYf2A4Aza4f7N2/o/zaLB8qDYx6zszwr8P7k1thNFYIweXCMXgeAfedq2xxwjClZUeV
- Jd2GtDNFETiJwfs8MBjKhMCWN8pgoLoqzE8miH1GjE7G4PsZjE7OQsm9ij2mFg7rdrug1xcJAa2l4w7W
- r00Cgk/n38S7wBwC04u4UGxHrMHF4CbEJtyDLj5fCDIzhljfSxzeavRgyw4Zj9t64GvvQ0d3P3pfD2Kv
- 2QqNvgFxDN6urYdWmyMElJMnevh60obRktA701PRtGlg1DOdSkXwzrisaMG/RZLWAE60OMW5fNhvAAAA
- AElFTkSuQmCC
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
- jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
- X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
- J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
- I5DjtuYV7uksRYhr2kebhx2eP6nrycFIEh5fBA/1Nvru8q5+PDaOovK0rABwfwugWzcErfkzHhjsePL6
- E7q1VrTdNUDcrgGvSYlDZHN5XTNOnL8BVe8AJAoNDtZfLgDu9L1BPJmikzcrk81hlRwodZJwdBXziwnI
- OrVoaOkiT8C8hKLHBPO7CbywOaE1jeC+bhAd6meQdvZC1KoG/5IS3MZ2HObLUHZSggvkWq3wOvbWiAqA
- VpWeyStVfCUNf3AZ4zNhfHCFMEDMgye+hYr6FrDLzxQAUuVTpr0ocn74mchg5vsKRt1RcHp2Qv9+kZ78
- UcE17KkWFgHNN/uQzgBkGKLJPBZiecyGchjzrmFwPIF++xJUbDbUQzEacIArLpopSRSP4CUN1Obf1Abz
- uqob5KjiXwWH/GVl5HPt5zZh37GL2H1EiF1VZ7GDI6CNW5r/TSzWbwHYL0mKJ5czAAAAAElFTkSuQmCC
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
- LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
- QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
- EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
- 1NsXzN4PKIxJLLgeIJ2MoXvmFraNBKK3eXZRIveJPvs7FIYniEkXZENOdE+GIZ2Ko10TwLK7tJmKmL0F
- EEYarYM+NMnt0C1sQzpx/lcSEnZ2gcKY/gs0dlmZuWvmjjmpwA1qxVp2AWFIMAF/OAGBzMjMI7ZrtJCb
- 4Df3o4Zfxy7QrdxDRFKol5khkpR2H4qmIOzUQNBGwrsXYxccnNOQqNbQ0KGGZ+eEPVwdeLxvqqrf4wGh
- TNAAAAAASUVORK5CYII=
-
-
-
-
- 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
-
-
+
+ 1155, 59
+
+
+ 518, 59
+
+
+ 413, 59
+
+
+ 870, 20
+
+
+ 1102, 20
+
+
+ 122, 59
+
+
+ 277, 59
+
72
diff --git a/Datatables.cs b/Datatables.cs
index 04e2c03..c8e08b3 100644
--- a/Datatables.cs
+++ b/Datatables.cs
@@ -132,6 +132,7 @@ public void CreateDataTableWith5Columns(Dictionary dictName, Da
DataGridViewName.Rows[num].Cells[1].Value = IDT["Attribute"].ToString();
DataGridViewName.Rows[num].Cells[2].Value = IDT["Value"].ToString();
DataGridViewName.Rows[num].Cells[3].Value = IDT["Unit"].ToString();
+
break;
}
diff --git a/Dictionary.cs b/Dictionary.cs
index a46bc89..c446560 100644
--- a/Dictionary.cs
+++ b/Dictionary.cs
@@ -205,16 +205,54 @@ public Dictionary IRDIMechanicalData()
return IRDIMechanicalDataParameters;
}
- public Dictionary IRDIMaterialData()
+ public Dictionary IRDITemperatureData()
{
- Parameters IRDIMaterialData1 = new Parameters() { ID = 001, Parameter = "Housing or Body material", RefSemanticPrefix = "0112/2///62683#ACE260" };
- Parameters IRDIMaterialData2 = new Parameters() { ID = 002, Parameter = "Sensing face material", RefSemanticPrefix = "0112/2///62683#ACE261" };
- Parameters IRDIMaterialData3 = new Parameters() { ID = 003, Parameter = "Surface Protection", RefSemanticPrefix = "" };
+ Parameters IRDITemperatureData1 = new Parameters() { ID = 001, Parameter = "stress temperature min (T_stress(min))", RefSemanticPrefix = "0112/2///61360_4#AAF276#002",Value = "",Unit = "°C" };
+ Parameters IRDITemperatureData2 = new Parameters() { ID = 002, Parameter = "stress temperature max (T_stress(max))", RefSemanticPrefix = "0112/2///61360_4#AAF277#002", Value = "", Unit = "°C" };
+ Parameters IRDITemperatureData3 = new Parameters() { ID = 003, Parameter = "stress ambient temperature (T_stesss(amb))", RefSemanticPrefix = "0112/2///61360_4#AAF278#002", Value = "", Unit = "°C" };
+ Parameters IRDITemperatureData4 = new Parameters() { ID = 004, Parameter = "upper category temperature (T_ucat)", RefSemanticPrefix = "0112/2///61360_4#AAH007#002", Value = "", Unit = "°C" };
+ Parameters IRDITemperatureData5= new Parameters() { ID = 006, Parameter = "lower category temperature (T_lcat)", RefSemanticPrefix = "0112/2///61360_4#AAH008#002", Value = "", Unit = "°C" };
+ Parameters IRDITemperatureData6= new Parameters() { ID = 007, Parameter = "temperature (@T)", RefSemanticPrefix = "0112/2///61360_4#AAE685#001", Value = "", Unit = "°C" };
+ Parameters IRDITemperatureData7 = new Parameters() { ID = 008, Parameter = "storage temperature (T_stg)", RefSemanticPrefix = "0112/2///61360_4#AAE841#002", Value = "", Unit = "°C" };
+
+ Dictionary IRDITemperatureDataParameters = new Dictionary();
+ IRDITemperatureDataParameters.Add(IRDITemperatureData1.ID, IRDITemperatureData1);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData2.ID, IRDITemperatureData2);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData3.ID, IRDITemperatureData3);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData4.ID, IRDITemperatureData4);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData5.ID, IRDITemperatureData5);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData6.ID, IRDITemperatureData6);
+ IRDITemperatureDataParameters.Add(IRDITemperatureData7.ID, IRDITemperatureData7);
+
+ return IRDITemperatureDataParameters;
+ }
+ public Dictionary IRDIMaterialData()
+ {
+ Parameters IRDIMaterialData1 = new Parameters() { ID = 001, Parameter = "Housing or Body material", RefSemanticPrefix = "0112/2///61360_4#AAE351#006", Value = "" };
+ Parameters IRDIMaterialData2 = new Parameters() { ID = 002, Parameter = "Sensing face material", RefSemanticPrefix = "0112/2///62683#ACE261", Value = "" };
+ Parameters IRDIMaterialData3 = new Parameters() { ID = 003, Parameter = "Surface Protection", RefSemanticPrefix = "", Value = "" };
+ Parameters IRDIMaterialData4 = new Parameters() { ID = 004, Parameter = "Contact body material", RefSemanticPrefix = "0112/2///61360_4#AAE355#001", Value = "" };
+ Parameters IRDIMaterialData5 = new Parameters() { ID = 005, Parameter = "terminal material", RefSemanticPrefix = "0112/2///61360_4#AAE634#001", Value = "" };
+ Parameters IRDIMaterialData6 = new Parameters() { ID = 006, Parameter = "contact spring material", RefSemanticPrefix = "0112/2///61360_4#AAF125#001", Value = "" };
+ Parameters IRDIMaterialData7 = new Parameters() { ID = 007, Parameter = "insulating material group", RefSemanticPrefix = "0112/2///61360_4#AAH025#002", Value = "" };
+ Parameters IRDIMaterialData8 = new Parameters() { ID = 008, Parameter = "body insulation material", RefSemanticPrefix = "0112/2///61360_4#AAH056#002", Value = "" };
+ Parameters IRDIMaterialData9 = new Parameters() { ID = 009, Parameter = "contact finish", RefSemanticPrefix = "0112/2///61360_4#AAE350#001", Value = "" };
+ Parameters IRDIMaterialData10 = new Parameters() { ID = 010, Parameter = "housing finish", RefSemanticPrefix = "0112/2///61360_4#AAH005#002", Value = "" };
+ Parameters IRDIMaterialData11 = new Parameters() { ID = 011, Parameter = "terminal finish", RefSemanticPrefix = "0112/2///61360_4#AAH028#002", Value = "" };
Dictionary IRDIMaterialDataParameters = new Dictionary();
IRDIMaterialDataParameters.Add(IRDIMaterialData1.ID, IRDIMaterialData1);
IRDIMaterialDataParameters.Add(IRDIMaterialData2.ID, IRDIMaterialData2);
IRDIMaterialDataParameters.Add(IRDIMaterialData3.ID, IRDIMaterialData3);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData4.ID, IRDIMaterialData4);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData5.ID, IRDIMaterialData5);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData6.ID, IRDIMaterialData6);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData7.ID, IRDIMaterialData7);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData8.ID, IRDIMaterialData8);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData9.ID, IRDIMaterialData9);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData10.ID, IRDIMaterialData10);
+ IRDIMaterialDataParameters.Add(IRDIMaterialData11.ID, IRDIMaterialData11);
+
return IRDIMaterialDataParameters;
}
@@ -229,7 +267,8 @@ public Dictionary IRDIElectricalData()
Parameters IRDIElectricalData7 = new Parameters() { ID = 007, Parameter = "Rated Current (I_rat)", RefSemanticPrefix = "0112/2///61360_4#AAH066#002", Unit = "A" };
Parameters IRDIElectricalData8 = new Parameters() { ID = 008, Parameter = "Connector rated Voltage (V_r)", RefSemanticPrefix = "0112/2///61360_4#AAJ042#002", Unit = "V" };
Parameters IRDIElectricalData9 = new Parameters() { ID = 009, Parameter = "Connector rated Current (I_r)", RefSemanticPrefix = "0112/2///61360_4#AAJ043#002", Unit = "A" };
- Parameters IRDIElectricalData10 = new Parameters() { ID = 0010, Parameter = "Contact current max (I_cont)", RefSemanticPrefix = "0112/2///61360_4#AAE358#001", Unit = "A" };
+ Parameters IRDIElectricalData10 = new Parameters() { ID = 010, Parameter = "Contact current max (I_cont)", RefSemanticPrefix = "0112/2///61360_4#AAE358#001", Unit = "A" };
+ Parameters IRDIElectricalData11 = new Parameters() { ID = 011, Parameter = "power dissipation (P_dis)", RefSemanticPrefix = "0112/2///61360_4#AAE257#003", Unit = "W" };
Dictionary IRDIElectricalDataParameters = new Dictionary();
IRDIElectricalDataParameters.Add(IRDIElectricalData1.ID, IRDIElectricalData1);
@@ -240,7 +279,9 @@ public Dictionary IRDIElectricalData()
IRDIElectricalDataParameters.Add(IRDIElectricalData6.ID, IRDIElectricalData6);
IRDIElectricalDataParameters.Add(IRDIElectricalData7.ID, IRDIElectricalData7);
IRDIElectricalDataParameters.Add(IRDIElectricalData8.ID, IRDIElectricalData8);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData9.ID, IRDIElectricalData9);
IRDIElectricalDataParameters.Add(IRDIElectricalData10.ID, IRDIElectricalData10);
+ IRDIElectricalDataParameters.Add(IRDIElectricalData11.ID, IRDIElectricalData11);
return IRDIElectricalDataParameters;
@@ -248,13 +289,29 @@ public Dictionary IRDIElectricalData()
}
public Dictionary IRDIMountingSquareFlangeData()
{
- Parameters IRDIMountingSquareFlangeData1 = new Parameters() { ID = 001, Parameter = "Square flange Length", RefSemanticPrefix = "", Unit = "mm", Value = "20" };
- Parameters IRDIMountingSquareFlangeData2 = new Parameters() { ID = 002, Parameter = "Flange hole Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "3.2" };
- Parameters IRDIMountingSquareFlangeData3 = new Parameters() { ID = 003, Parameter = "Flange holes length", RefSemanticPrefix = "", Unit = "mm", Value = "14" };
- Parameters IRDIMountingSquareFlangeData4 = new Parameters() { ID = 004, Parameter = "Flange Thickness", RefSemanticPrefix = "", Unit = "mm", Value = "4" };
- Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 005, Parameter = "Connector Length", RefSemanticPrefix = "", Unit = "mm", Value = "28" };
- Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 006, Parameter = "Connector Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "" };
- Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 007, Parameter = "Connector Thread Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData1 = new Parameters() { ID = 001, Parameter = "Flange Length (I_flange)", RefSemanticPrefix = "0112/2///61360_4#AAF317#001", Unit = "mm", Value = "20" };
+ Parameters IRDIMountingSquareFlangeData2 = new Parameters() { ID = 002, Parameter = "Flange breadth (b_flange)", RefSemanticPrefix = "0112/2///61360_4#AAF318#001", Unit = "mm", Value = "20" };
+ Parameters IRDIMountingSquareFlangeData3 = new Parameters() { ID = 003, Parameter = "Flange height (h_flg)", RefSemanticPrefix = "0112/2///61360_4#AAF317#001", Unit = "mm", Value = "20" };
+ Parameters IRDIMountingSquareFlangeData4 = new Parameters() { ID = 004, Parameter = "Flange hole Diameter", RefSemanticPrefix = "0112/2///61360_4#AAF319#001", Unit = "mm", Value = "3.2" };
+ Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 005, Parameter = "Flange holes distance", RefSemanticPrefix = "", Unit = "mm", Value = "14" };
+ Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 006, Parameter = "Flange Thickness", RefSemanticPrefix = "", Unit = "mm", Value = "4" };
+ Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 007, Parameter = "Terminal Length (I_term)", RefSemanticPrefix = "0112/2///61360_4#AAE072#001", Unit = "mm", Value = "28" };
+ Parameters IRDIMountingSquareFlangeData8 = new Parameters() { ID = 008, Parameter = "Outside Diameter (d_out)", RefSemanticPrefix = "0112/2///61360_4#AAE022#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData9 = new Parameters() { ID = 009, Parameter = "Terminal Diameter (d_term)", RefSemanticPrefix = "0112/2///61360_4#AAE022#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData10 = new Parameters() { ID = 010, Parameter = "terminal Pitch (p_term)", RefSemanticPrefix = "0112/2///61360_4#AAE024#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData11 = new Parameters() { ID = 011, Parameter = "lacquered length (l_lacq)", RefSemanticPrefix = "0112/2///61360_4#AAE633#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ /* Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData12 = new Parameters() { ID = 0012, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };*/
Dictionary IRDIMountingSquareFlangeDataParameters = new Dictionary();
IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData1.ID, IRDIMountingSquareFlangeData1);
@@ -264,17 +321,25 @@ public Dictionary IRDIMountingSquareFlangeData()
IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData5.ID, IRDIMountingSquareFlangeData5);
IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData6.ID, IRDIMountingSquareFlangeData6);
IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData7.ID, IRDIMountingSquareFlangeData7);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData8.ID, IRDIMountingSquareFlangeData8);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData9.ID, IRDIMountingSquareFlangeData9);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData10.ID, IRDIMountingSquareFlangeData10);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData11.ID, IRDIMountingSquareFlangeData11);
+ IRDIMountingSquareFlangeDataParameters.Add(IRDIMountingSquareFlangeData12.ID, IRDIMountingSquareFlangeData12);
return IRDIMountingSquareFlangeDataParameters;
}
public Dictionary IRDIMountingSingleHoleData()
{
Parameters IRDIMountingSingleHoleData1 = new Parameters() { ID = 001, Parameter = "Single Hole Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "20" };
- Parameters IRDIMountingSingleHoleData2 = new Parameters() { ID = 002, Parameter = "Single Hole Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "3.2" };
+ Parameters IRDIMountingSingleHoleData2 = new Parameters() { ID = 002, Parameter = "Hole Pitch (p_hole)", RefSemanticPrefix = "0112/2///61360_4#AAF316#001", Unit = "mm", Value = "3.2" };
Parameters IRDIMountingSingleHoleData3 = new Parameters() { ID = 003, Parameter = "Length of Wire ends", RefSemanticPrefix = "", Unit = "mm", Value = "14" };
- Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 004, Parameter = "Connector Length", RefSemanticPrefix = "", Unit = "mm", Value = "28" };
- Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 005, Parameter = "Connector Diameter", RefSemanticPrefix = "", Unit = "mm", Value = "" };
- Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 006, Parameter = "Connector Thread Pitch", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData5 = new Parameters() { ID = 004, Parameter = "Terminal Length (I_term)", RefSemanticPrefix = "0112/2///61360_4#AAE072#001", Unit = "mm", Value = "28" };
+ Parameters IRDIMountingSquareFlangeData6 = new Parameters() { ID = 005, Parameter = "Outside Diameter (d_out)", RefSemanticPrefix = "0112/2///61360_4#AAE022#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData7 = new Parameters() { ID = 006, Parameter = "Terminal Diameter (d_term)", RefSemanticPrefix = "0112/2///61360_4#AAE022#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData8 = new Parameters() { ID = 008, Parameter = "terminal Pitch (p_term)", RefSemanticPrefix = "0112/2///61360_4#AAE024#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData9 = new Parameters() { ID = 009, Parameter = "lacquered length (l_lacq)", RefSemanticPrefix = "0112/2///61360_4#AAE633#001", Unit = "mm", Value = "" };
+ Parameters IRDIMountingSquareFlangeData10 = new Parameters() { ID = 0010, Parameter = "Pitch Circle Diameter (d_p)", RefSemanticPrefix = "0112/2///61360_4#AAF337#001", Unit = "mm", Value = "" };
Dictionary IRDIMountingSingleHoleDataParameters = new Dictionary();
IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSingleHoleData1.ID, IRDIMountingSingleHoleData1);
@@ -283,7 +348,9 @@ public Dictionary IRDIMountingSingleHoleData()
IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData5.ID, IRDIMountingSquareFlangeData5);
IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData6.ID, IRDIMountingSquareFlangeData6);
IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData7.ID, IRDIMountingSquareFlangeData7);
-
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData8.ID, IRDIMountingSquareFlangeData8);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData9.ID, IRDIMountingSquareFlangeData9);
+ IRDIMountingSingleHoleDataParameters.Add(IRDIMountingSquareFlangeData10.ID, IRDIMountingSquareFlangeData10);
return IRDIMountingSingleHoleDataParameters;
}
@@ -362,6 +429,108 @@ public Dictionary IRDIFemaleConnectorDimensionData()
return IRDIFemaleConnectorDimensioneDataParameters;
}
+ public Dictionary IRDIConnectorOrientationData()
+ {
+ Parameters IRDIConnectorOrientationData1 = new Parameters() { ID = 001, Parameter = "Pitch (X-axis) (p_x)", RefSemanticPrefix = "0112/2///61360_4#AAF321#001", Unit = "m", Value ="" };
+ Parameters IRDIConnectorOrientationData2 = new Parameters() { ID = 002, Parameter = "Pitch (Y-axis) (p_y)", RefSemanticPrefix = "0112/2///61360_4#AAF322#001", Unit = "m", Value = "" };
+ Parameters IRDIConnectorOrientationData3 = new Parameters() { ID = 003, Parameter = "Offset (y-axis) (s_y)", RefSemanticPrefix = "0112/2///61360_4#AAF340#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData4 = new Parameters() { ID = 004, Parameter = "Offset (x-axis) (s_x)", RefSemanticPrefix = "0112/2///61360_4#AAF341#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData5 = new Parameters() { ID = 005, Parameter = "Number of pitches (x-axis) (N_p(x))", RefSemanticPrefix = "0112/2///61360_4#AAF374#001", Unit = "", Value = "" };
+ Parameters IRDIConnectorOrientationData6 = new Parameters() { ID = 006, Parameter = "Number of pitches (y-axis) (N_p(y))", RefSemanticPrefix = "0112/2///61360_4#AAF375#001", Unit = "", Value = "" };
+ Parameters IRDIConnectorOrientationData7= new Parameters() { ID = 007, Parameter = "x-coordinate of the reference point (x-coor ref pt)", RefSemanticPrefix = "0112/2///61360_4#AAF393#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData8 = new Parameters() { ID = 008, Parameter = "y-coordinate of the reference point (y-coor ref pt)", RefSemanticPrefix = "0112/2///61360_4#AAF394#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData9= new Parameters() { ID = 009, Parameter = "z-coordinate of the reference point (z-coor ref pt)", RefSemanticPrefix = "0112/2///61360_4#AAF395#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData10= new Parameters() { ID = 010, Parameter = "Angle axis to x-axis (α_x)", RefSemanticPrefix = "0112/2///61360_4#AAF411#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData11 = new Parameters() { ID = 011, Parameter = "Angle axis to y-axis (α_y)", RefSemanticPrefix = "0112/2///61360_4#AAF412#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData12 = new Parameters() { ID = 012, Parameter = "Angle axis to z-axis (α_z)", RefSemanticPrefix = "0112/2///61360_4#AAF413#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData13 = new Parameters() { ID = 013, Parameter = "y-coordinate of centre (y-c_sphere)", RefSemanticPrefix = "0112/2///61360_4#AAF419#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData14 = new Parameters() { ID = 014, Parameter = "z-coordinate of centre (z-c_sphere)", RefSemanticPrefix = "0112/2///61360_4#AAF420#001", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData15 = new Parameters() { ID = 015, Parameter = "Contact pitch (x-axis) (l_xpitch)", RefSemanticPrefix = "0112/2///61360_4#AAH045#002", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData16 = new Parameters() { ID = 016, Parameter = "Contact pitch (y-axis) (l_ypitch)", RefSemanticPrefix = "0112/2///61360_4#AAH046#002", Unit = "mm", Value = "" };
+ Parameters IRDIConnectorOrientationData17 = new Parameters() { ID = 0117, Parameter = "z-axis displacement of centre of gravity (C_grav(z-axis))", RefSemanticPrefix = "0112/2///61360_4#AAF472#001", Unit = "mm", Value = "" };
+
+
+ Dictionary IRDIConnectorOrientationDataParameters = new Dictionary();
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData1.ID, IRDIConnectorOrientationData1);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData2.ID, IRDIConnectorOrientationData2);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData3.ID, IRDIConnectorOrientationData3);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData4.ID, IRDIConnectorOrientationData4);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData5.ID, IRDIConnectorOrientationData5);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData6.ID, IRDIConnectorOrientationData6);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData7.ID, IRDIConnectorOrientationData7);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData8.ID, IRDIConnectorOrientationData8);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData9.ID, IRDIConnectorOrientationData9);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData10.ID, IRDIConnectorOrientationData10);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData11.ID, IRDIConnectorOrientationData11);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData12.ID, IRDIConnectorOrientationData12);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData13.ID, IRDIConnectorOrientationData13);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData14.ID, IRDIConnectorOrientationData14);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData15.ID, IRDIConnectorOrientationData15);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData16.ID, IRDIConnectorOrientationData16);
+ IRDIConnectorOrientationDataParameters.Add(IRDIConnectorOrientationData17.ID, IRDIConnectorOrientationData17);
+
+ return IRDIConnectorOrientationDataParameters;
+ }
+ public Dictionary IRDIMiscelliniousData()
+ {
+ Parameters IRDIMiscelliniousData1 = new Parameters() { ID = 001, Parameter = "engaging force (F_eng)", RefSemanticPrefix = "0112/2///61360_4#AAF045#001", Unit = "F", Value = "" };
+ Parameters IRDIMiscelliniousData2 = new Parameters() { ID = 002, Parameter = "separating force (F_sep)", RefSemanticPrefix = "0112/2///61360_4#AAF046#001", Unit = "F", Value = "" };
+ Parameters IRDIMiscelliniousData3 = new Parameters() { ID = 003, Parameter = "contact force (F_contact)", RefSemanticPrefix = "0112/2///61360_4#AAH018#002", Unit = "F", Value = "" };
+ Parameters IRDIMiscelliniousData4 = new Parameters() { ID = 004, Parameter = "mechanical endurance (N_endu)", RefSemanticPrefix = "0112/2///61360_4#AAE361#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData5 = new Parameters() { ID = 005, Parameter = "creepage distance (d_crpg)", RefSemanticPrefix = "0112/2///61360_4#AAE159#001", Unit = "mm", Value = "" };
+ Parameters IRDIMiscelliniousData6 = new Parameters() { ID = 006, Parameter = "polarisation ", RefSemanticPrefix = "0112/2///61360_4#AAE354#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData7 = new Parameters() { ID = 007, Parameter = "quality approval authority", RefSemanticPrefix = "0112/2///61360_4#AAE687#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData8 = new Parameters() { ID = 008, Parameter = "locking device", RefSemanticPrefix = "0112/2///61360_4#AAF051#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData9 = new Parameters() { ID = 009, Parameter = "integrated component", RefSemanticPrefix = "0112/2///61360_4#AAF124#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData10 = new Parameters() { ID = 010, Parameter = "UL flammability", RefSemanticPrefix = "0112/2///61360_4#AAF126#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData11 = new Parameters() { ID = 011, Parameter = "IEC flammability", RefSemanticPrefix = "0112/2///61360_4#AAF127#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData12 = new Parameters() { ID = 012, Parameter = "fireproofness", RefSemanticPrefix = "0112/2///61360_4#AAH038#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData13 = new Parameters() { ID = 013, Parameter = "package colour", RefSemanticPrefix = "0112/2///61360_4#AAF128#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData14 = new Parameters() { ID = 014, Parameter = "socket type", RefSemanticPrefix = "0112/2///61360_4#AAF148#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData15 = new Parameters() { ID = 015, Parameter = "terminal connection type", RefSemanticPrefix = "0112/2///61360_4#AAF435#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData16 = new Parameters() { ID = 016, Parameter = "simultaneity factor", RefSemanticPrefix = "0112/2///61360_4#AAF436#001", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData17 = new Parameters() { ID = 017, Parameter = "packaging quality", RefSemanticPrefix = "0112/2///61360_4#AAH001#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData18 = new Parameters() { ID = 018, Parameter = "fixing method", RefSemanticPrefix = "0112/2///61360_4#AAH003#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData19 = new Parameters() { ID = 019, Parameter = "mounting means", RefSemanticPrefix = "0112/2///61360_4#AAH004#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData20 = new Parameters() { ID = 020, Parameter = "protective earth", RefSemanticPrefix = "0112/2///61360_4#AAH006#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData21 = new Parameters() { ID = 021, Parameter = "pollution degree", RefSemanticPrefix = "0112/2///61360_4#AAH023#002", Unit = "", Value = "" };
+ Parameters IRDIMiscelliniousData22 = new Parameters() { ID = 022, Parameter = "acceleration strength (a_acc)", RefSemanticPrefix = "0112/2///61360_4#AAH029#002", Unit = "m/s2", Value = "" };
+ Parameters IRDIMiscelliniousData23 = new Parameters() { ID = 023, Parameter = "shock resistance (a_shock)", RefSemanticPrefix = "0112/2///61360_4#AAH030#002", Unit = "m/s2", Value = "" };
+ Parameters IRDIMiscelliniousData24 = new Parameters() { ID = 024, Parameter = "bump resistance (a_bump)", RefSemanticPrefix = "0112/2///61360_4#AAH031#002", Unit = "m/s2", Value = "" };
+ Parameters IRDIMiscelliniousData25 = new Parameters() { ID = 025, Parameter = "housing colour", RefSemanticPrefix = "0112/2///61360_4#AAH065#002", Unit = "", Value = "" };
+
+
+ Dictionary IRDIMiscelliniousDataParameters = new Dictionary();
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData1.ID, IRDIMiscelliniousData1);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData2.ID, IRDIMiscelliniousData2);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData3.ID, IRDIMiscelliniousData3);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData4.ID, IRDIMiscelliniousData4);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData5.ID, IRDIMiscelliniousData5);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData6.ID, IRDIMiscelliniousData6);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData7.ID, IRDIMiscelliniousData7);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData8.ID, IRDIMiscelliniousData8);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData9.ID, IRDIMiscelliniousData9);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData10.ID, IRDIMiscelliniousData10);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData11.ID, IRDIMiscelliniousData11);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData12.ID, IRDIMiscelliniousData12);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData13.ID, IRDIMiscelliniousData13);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData14.ID, IRDIMiscelliniousData14);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData15.ID, IRDIMiscelliniousData15);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData16.ID, IRDIMiscelliniousData16);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData17.ID, IRDIMiscelliniousData17);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData18.ID, IRDIMiscelliniousData18);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData19.ID, IRDIMiscelliniousData19);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData20.ID, IRDIMiscelliniousData20);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData21.ID, IRDIMiscelliniousData21);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData22.ID, IRDIMiscelliniousData22);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData23.ID, IRDIMiscelliniousData23);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData24.ID, IRDIMiscelliniousData24);
+ IRDIMiscelliniousDataParameters.Add(IRDIMiscelliniousData25.ID, IRDIMiscelliniousData25);
+
+
+
+ return IRDIMiscelliniousDataParameters;
+ }
}
From 2ede8701b5bf87d3fd4ef10d83bcdb30851ecfbd Mon Sep 17 00:00:00 2001
From: RajKumarPulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Wed, 14 Aug 2019 13:06:09 +0200
Subject: [PATCH 06/34] New IRDI Cable Dimension Dictionary Created
---
Dictionary.cs | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/Dictionary.cs b/Dictionary.cs
index c446560..94ead44 100644
--- a/Dictionary.cs
+++ b/Dictionary.cs
@@ -531,6 +531,21 @@ public Dictionary IRDIMiscelliniousData()
return IRDIMiscelliniousDataParameters;
}
+ public Dictionary IRDICableDimensionData()
+ {
+ Parameters IRDIFemaleConnectorDimensioneData1 = new Parameters() { ID = 001, Parameter = "BA", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData2 = new Parameters() { ID = 002, Parameter = "BB", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData3 = new Parameters() { ID = 003, Parameter = "BC", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+ Parameters IRDIFemaleConnectorDimensioneData4 = new Parameters() { ID = 004, Parameter = "BD", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
+
+ Dictionary IRDIFemaleConnectorDimensioneDataParameters = new Dictionary();
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData1.ID, IRDIFemaleConnectorDimensioneData1);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData2.ID, IRDIFemaleConnectorDimensioneData2);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData3.ID, IRDIFemaleConnectorDimensioneData3);
+ IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData4.ID, IRDIFemaleConnectorDimensioneData4);
+
+ return IRDIFemaleConnectorDimensioneDataParameters;
+ }
}
From 4805441bc0d0367d810a0f0b924ec469051dc7f0 Mon Sep 17 00:00:00 2001
From: RajKumarPulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Mon, 19 Aug 2019 17:10:08 +0200
Subject: [PATCH 07/34] Tree View Updated
---
AnimationClass.cs | 34 +-
CreateDevice.Designer.cs | 1866 +++++++++++++++++++++++++-------------
CreateDevice.cs | 225 ++++-
CreateDevice.resx | 333 +++++--
CreateInterface.cs | 4 +-
Dictionary.cs | 49 +-
6 files changed, 1781 insertions(+), 730 deletions(-)
diff --git a/AnimationClass.cs b/AnimationClass.cs
index b98bff0..0ac382a 100644
--- a/AnimationClass.cs
+++ b/AnimationClass.cs
@@ -5,6 +5,8 @@
using System.Threading.Tasks;
using System.Windows.Forms;
using Aml.Editor.Plugin.Properties;
+using System.IO;
+using System.Drawing;
namespace Aml.Editor.Plugin
{
@@ -13,11 +15,14 @@ class AnimationClass
public Panel PanelNumber { get; set; }
public Button ButtonNumber { get; set; }
+ public TextBox TextboxName { get; set; }
+ public PictureBox PictureboxNumber { get; set; }
+
public AnimationClass()
{
}
- // Method for window size maximum nd minimum
+ // Method for window size maximum and minimum
public void WindowSizeChanger(Panel panelNumber,Button buttonNumber)
{
PanelNumber = panelNumber;
@@ -33,6 +38,33 @@ public void WindowSizeChanger(Panel panelNumber,Button buttonNumber)
buttonNumber.Image = Resources.icons8_collapse_arrow_24;
}
}
+ public void OpenFileDialog(TextBox textboxName)
+ {
+ TextboxName = textboxName;
+
+ OpenFileDialog open = new OpenFileDialog();
+ open.Filter = "Document Files(*.pdf; *.doc;)|*.pdf; *.doc;";
+ if (open.ShowDialog() == DialogResult.OK)
+ {
+ textboxName.Text = open.FileName;
+
+ }
+ }
+
+
+ // Open Dialog Box related method that takes parmeters of textbox name and the picture box number.
+ public void OpenFileDialog(TextBox textboxName,PictureBox pictureBoxNumber)
+ {
+ TextboxName = textboxName;
+ PictureboxNumber = pictureBoxNumber;
+ OpenFileDialog open = new OpenFileDialog();
+ open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp; *.png;)|*.jpg; *.jpeg; *.gif; *.bmp; *.png;";
+ if (open.ShowDialog() == DialogResult.OK)
+ {
+ textboxName.Text = open.FileName;
+ pictureBoxNumber.Image = new Bitmap(open.FileName);
+ }
+ }
}
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index f886a1b..b69372a 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -30,24 +30,6 @@ private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDevice));
- System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node10");
- System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node11");
- System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
- treeNode1,
- treeNode2});
- System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node7");
- System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
- treeNode3,
- treeNode4});
- System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node8");
- System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node9");
- System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
- treeNode6,
- treeNode7});
- System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node2");
- System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Node3");
- System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Node4");
- System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Node5");
this.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
this.openVendorLogoDialog = new System.Windows.Forms.OpenFileDialog();
this.openDeviceIconDialog = new System.Windows.Forms.OpenFileDialog();
@@ -122,6 +104,7 @@ private void InitializeComponent()
this.treeViewCH = new System.Windows.Forms.TreeView();
this.toolStrip9 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripLabel28 = new System.Windows.Forms.ToolStripLabel();
this.panel30 = new System.Windows.Forms.Panel();
this.toolStrip10 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
@@ -205,6 +188,55 @@ private void InitializeComponent()
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.panel41 = new System.Windows.Forms.Panel();
+ this.panel42 = new System.Windows.Forms.Panel();
+ this.panel43 = new System.Windows.Forms.Panel();
+ this.tabControl5 = new System.Windows.Forms.TabControl();
+ this.tabPage21 = new System.Windows.Forms.TabPage();
+ this.tabPage22 = new System.Windows.Forms.TabPage();
+ this.dataGridViewSensingMaterialOrientation = new System.Windows.Forms.DataGridView();
+ this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip28 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel33 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator61 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton42 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator60 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton43 = new System.Windows.Forms.ToolStripButton();
+ this.panel45 = new System.Windows.Forms.Panel();
+ this.dataGridViewSensorInterfaceOrienatation = new System.Windows.Forms.DataGridView();
+ this.Column38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Column41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.toolStrip27 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel32 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator58 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton40 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator59 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton41 = new System.Windows.Forms.ToolStripButton();
+ this.tabPage23 = new System.Windows.Forms.TabPage();
+ this.toolStrip26 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel31 = new System.Windows.Forms.ToolStripLabel();
+ this.panel44 = new System.Windows.Forms.Panel();
+ this.toolStrip25 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel30 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator57 = new System.Windows.Forms.ToolStripSeparator();
+ this.tabPage24 = new System.Windows.Forms.TabPage();
+ this.toolStrip24 = new System.Windows.Forms.ToolStrip();
+ this.toolStripLabel29 = new System.Windows.Forms.ToolStripLabel();
+ this.toolStripSeparator53 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripTextBox4 = new System.Windows.Forms.ToolStripTextBox();
+ this.toolStripSeparator54 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton32 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator55 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton33 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator56 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButton34 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton35 = new System.Windows.Forms.ToolStripButton();
+ this.sensorInterfaceButton = new System.Windows.Forms.Button();
this.panel4 = new System.Windows.Forms.Panel();
this.panel5 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
@@ -245,7 +277,7 @@ private void InitializeComponent()
this.toolStripLabel19 = new System.Windows.Forms.ToolStripLabel();
this.tabPage20 = new System.Windows.Forms.TabPage();
this.panel35 = new System.Windows.Forms.Panel();
- this.dataGridView2 = new System.Windows.Forms.DataGridView();
+ this.dataGridViewIRDICableDMI = new System.Windows.Forms.DataGridView();
this.Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -386,42 +418,34 @@ private void InitializeComponent()
this.tabPage6 = new System.Windows.Forms.TabPage();
this.panel9 = new System.Windows.Forms.Panel();
this.panel14 = new System.Windows.Forms.Panel();
- this.panel18 = new System.Windows.Forms.Panel();
- this.button16 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
- this.label53 = new System.Windows.Forms.Label();
- this.label52 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.panel15 = new System.Windows.Forms.Panel();
- this.button11 = new System.Windows.Forms.Button();
- this.textBox22 = new System.Windows.Forms.TextBox();
- this.panel16 = new System.Windows.Forms.Panel();
- this.button12 = new System.Windows.Forms.Button();
- this.textBox23 = new System.Windows.Forms.TextBox();
- this.panel17 = new System.Windows.Forms.Panel();
- this.button13 = new System.Windows.Forms.Button();
- this.textBox24 = new System.Windows.Forms.TextBox();
+ this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
+ this.label32 = new System.Windows.Forms.Label();
+ this.bomTxtbx = new System.Windows.Forms.TextBox();
+ this.button7 = new System.Windows.Forms.Button();
+ this.label33 = new System.Windows.Forms.Label();
+ this.shortGuideTxtbx = new System.Windows.Forms.TextBox();
+ this.button8 = new System.Windows.Forms.Button();
+ this.label34 = new System.Windows.Forms.Label();
+ this.DofcTxtbx = new System.Windows.Forms.TextBox();
+ this.button9 = new System.Windows.Forms.Button();
+ this.toolStrip30 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton36 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton39 = new System.Windows.Forms.ToolStripButton();
this.button10 = new System.Windows.Forms.Button();
this.panel10 = new System.Windows.Forms.Panel();
- this.panel19 = new System.Windows.Forms.Panel();
- this.button17 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
- this.label50 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.label48 = new System.Windows.Forms.Label();
- this.panel11 = new System.Windows.Forms.Panel();
- this.button4 = new System.Windows.Forms.Button();
- this.textBox19 = new System.Windows.Forms.TextBox();
- this.panel12 = new System.Windows.Forms.Panel();
+ this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
+ this.label31 = new System.Windows.Forms.Label();
+ this.addDevicePictureTxtbx = new System.Windows.Forms.TextBox();
+ this.button6 = new System.Windows.Forms.Button();
+ this.label30 = new System.Windows.Forms.Label();
+ this.addDeviceIconTxtbx = new System.Windows.Forms.TextBox();
this.button5 = new System.Windows.Forms.Button();
- this.textBox20 = new System.Windows.Forms.TextBox();
- this.panel13 = new System.Windows.Forms.Panel();
- this.button9 = new System.Windows.Forms.Button();
- this.textBox21 = new System.Windows.Forms.TextBox();
+ this.label29 = new System.Windows.Forms.Label();
+ this.addVendorLogoTxtbx = new System.Windows.Forms.TextBox();
+ this.button4 = new System.Windows.Forms.Button();
+ this.toolStrip29 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton37 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton38 = new System.Windows.Forms.ToolStripButton();
this.button1 = new System.Windows.Forms.Button();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.panel29 = new System.Windows.Forms.Panel();
@@ -512,6 +536,9 @@ private void InitializeComponent()
this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
this.button3 = new System.Windows.Forms.Button();
this.panel25 = new System.Windows.Forms.Panel();
+ this.pictureBox3 = new System.Windows.Forms.PictureBox();
+ this.pictureBox2 = new System.Windows.Forms.PictureBox();
+ this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.treeView2 = new System.Windows.Forms.TreeView();
this.toolStrip11 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
@@ -540,6 +567,7 @@ private void InitializeComponent()
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
+ this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.toolStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@@ -562,6 +590,21 @@ private void InitializeComponent()
this.panel23.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tabPage5.SuspendLayout();
+ this.panel41.SuspendLayout();
+ this.panel42.SuspendLayout();
+ this.panel43.SuspendLayout();
+ this.tabControl5.SuspendLayout();
+ this.tabPage22.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSensingMaterialOrientation)).BeginInit();
+ this.toolStrip28.SuspendLayout();
+ this.panel45.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSensorInterfaceOrienatation)).BeginInit();
+ this.toolStrip27.SuspendLayout();
+ this.tabPage23.SuspendLayout();
+ this.toolStrip26.SuspendLayout();
+ this.panel44.SuspendLayout();
+ this.toolStrip25.SuspendLayout();
+ this.toolStrip24.SuspendLayout();
this.panel4.SuspendLayout();
this.panel5.SuspendLayout();
this.tabControl1.SuspendLayout();
@@ -575,7 +618,7 @@ private void InitializeComponent()
this.toolStrip14.SuspendLayout();
this.tabPage20.SuspendLayout();
this.panel35.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDICableDMI)).BeginInit();
this.toolStrip21.SuspendLayout();
this.panel22.SuspendLayout();
this.panel24.SuspendLayout();
@@ -608,17 +651,11 @@ private void InitializeComponent()
this.tabPage6.SuspendLayout();
this.panel9.SuspendLayout();
this.panel14.SuspendLayout();
- this.panel18.SuspendLayout();
- this.tableLayoutPanel7.SuspendLayout();
- this.panel15.SuspendLayout();
- this.panel16.SuspendLayout();
- this.panel17.SuspendLayout();
+ this.tableLayoutPanel3.SuspendLayout();
+ this.toolStrip30.SuspendLayout();
this.panel10.SuspendLayout();
- this.panel19.SuspendLayout();
- this.tableLayoutPanel6.SuspendLayout();
- this.panel11.SuspendLayout();
- this.panel12.SuspendLayout();
- this.panel13.SuspendLayout();
+ this.tableLayoutPanel2.SuspendLayout();
+ this.toolStrip29.SuspendLayout();
this.tabPage2.SuspendLayout();
this.panel29.SuspendLayout();
this.toolStrip8.SuspendLayout();
@@ -652,6 +689,9 @@ private void InitializeComponent()
((System.ComponentModel.ISupportInitialize)(this.dataGridViewIDT)).BeginInit();
this.toolStrip6.SuspendLayout();
this.panel25.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.toolStrip11.SuspendLayout();
this.toolStrip5.SuspendLayout();
this.toolStrip4.SuspendLayout();
@@ -682,6 +722,7 @@ private void InitializeComponent()
// toolStrip1
//
this.toolStrip1.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newToolStripButton,
this.openToolStripButton,
@@ -695,7 +736,7 @@ private void InitializeComponent()
this.helpToolStripButton});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip1.Size = new System.Drawing.Size(1090, 27);
this.toolStrip1.TabIndex = 43;
this.toolStrip1.Text = "toolStrip1";
//
@@ -705,7 +746,7 @@ private void InitializeComponent()
this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.newToolStripButton.Name = "newToolStripButton";
- this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.newToolStripButton.Size = new System.Drawing.Size(24, 24);
this.newToolStripButton.Text = "&New";
//
// openToolStripButton
@@ -714,7 +755,7 @@ private void InitializeComponent()
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.openToolStripButton.Name = "openToolStripButton";
- this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.openToolStripButton.Size = new System.Drawing.Size(24, 24);
this.openToolStripButton.Text = "&Open";
//
// saveToolStripButton
@@ -723,7 +764,7 @@ private void InitializeComponent()
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.saveToolStripButton.Name = "saveToolStripButton";
- this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.saveToolStripButton.Size = new System.Drawing.Size(24, 24);
this.saveToolStripButton.Text = "&Save";
this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
//
@@ -733,13 +774,13 @@ private void InitializeComponent()
this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.printToolStripButton.Name = "printToolStripButton";
- this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.printToolStripButton.Size = new System.Drawing.Size(24, 24);
this.printToolStripButton.Text = "&Print";
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
- this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator.Size = new System.Drawing.Size(6, 27);
//
// cutToolStripButton
//
@@ -747,7 +788,7 @@ private void InitializeComponent()
this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cutToolStripButton.Name = "cutToolStripButton";
- this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.cutToolStripButton.Size = new System.Drawing.Size(24, 24);
this.cutToolStripButton.Text = "C&ut";
//
// copyToolStripButton
@@ -756,7 +797,7 @@ private void InitializeComponent()
this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.copyToolStripButton.Name = "copyToolStripButton";
- this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.copyToolStripButton.Size = new System.Drawing.Size(24, 24);
this.copyToolStripButton.Text = "&Copy";
//
// pasteToolStripButton
@@ -765,13 +806,13 @@ private void InitializeComponent()
this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.pasteToolStripButton.Name = "pasteToolStripButton";
- this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.pasteToolStripButton.Size = new System.Drawing.Size(24, 24);
this.pasteToolStripButton.Text = "&Paste";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator1.Size = new System.Drawing.Size(6, 27);
//
// helpToolStripButton
//
@@ -779,19 +820,20 @@ private void InitializeComponent()
this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.helpToolStripButton.Name = "helpToolStripButton";
- this.helpToolStripButton.Size = new System.Drawing.Size(23, 22);
+ this.helpToolStripButton.Size = new System.Drawing.Size(24, 24);
this.helpToolStripButton.Text = "He&lp";
//
// toolStrip2
//
this.toolStrip2.BackColor = System.Drawing.SystemColors.ControlLight;
+ this.toolStrip2.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.toolStripSeparator2,
this.toolStripButton2});
- this.toolStrip2.Location = new System.Drawing.Point(0, 25);
+ this.toolStrip2.Location = new System.Drawing.Point(0, 27);
this.toolStrip2.Name = "toolStrip2";
- this.toolStrip2.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip2.Size = new System.Drawing.Size(1090, 27);
this.toolStrip2.TabIndex = 44;
this.toolStrip2.Text = "toolStrip2";
//
@@ -801,14 +843,14 @@ private void InitializeComponent()
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
- this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton1.Size = new System.Drawing.Size(24, 24);
this.toolStripButton1.Text = "toolStripButton1";
this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator2.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton2
//
@@ -816,12 +858,13 @@ private void InitializeComponent()
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
- this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
+ this.toolStripButton2.Size = new System.Drawing.Size(24, 24);
this.toolStripButton2.Text = "toolStripButton2";
//
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.Color.LightGray;
+ this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.automationComponentToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
@@ -1179,10 +1222,10 @@ private void InitializeComponent()
this.panel1.Controls.Add(this.splitContainer1);
this.panel1.Controls.Add(this.menuStrip1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 50);
+ this.panel1.Location = new System.Drawing.Point(0, 54);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1090, 660);
+ this.panel1.Size = new System.Drawing.Size(1090, 656);
this.panel1.TabIndex = 45;
//
// splitContainer1
@@ -1204,8 +1247,8 @@ private void InitializeComponent()
this.splitContainer1.Panel2.Controls.Add(this.panel25);
this.splitContainer1.Panel2.Controls.Add(this.toolStrip5);
this.splitContainer1.Panel2.Controls.Add(this.toolStrip4);
- this.splitContainer1.Size = new System.Drawing.Size(1090, 636);
- this.splitContainer1.SplitterDistance = 235;
+ this.splitContainer1.Size = new System.Drawing.Size(1090, 632);
+ this.splitContainer1.SplitterDistance = 234;
this.splitContainer1.TabIndex = 48;
this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.SplitContainer1_SplitterMoved);
//
@@ -1216,7 +1259,7 @@ private void InitializeComponent()
this.panel31.Dock = System.Windows.Forms.DockStyle.Top;
this.panel31.Location = new System.Drawing.Point(0, 25);
this.panel31.Name = "panel31";
- this.panel31.Size = new System.Drawing.Size(235, 280);
+ this.panel31.Size = new System.Drawing.Size(234, 280);
this.panel31.TabIndex = 1;
//
// treeViewCH
@@ -1225,17 +1268,19 @@ private void InitializeComponent()
this.treeViewCH.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeViewCH.Location = new System.Drawing.Point(0, 25);
this.treeViewCH.Name = "treeViewCH";
- this.treeViewCH.Size = new System.Drawing.Size(235, 255);
+ this.treeViewCH.Size = new System.Drawing.Size(234, 255);
this.treeViewCH.TabIndex = 1;
this.treeViewCH.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeViewCH_AfterSelect);
//
// toolStrip9
//
+ this.toolStrip9.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip9.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripLabel2});
+ this.toolStripLabel2,
+ this.toolStripLabel28});
this.toolStrip9.Location = new System.Drawing.Point(0, 0);
this.toolStrip9.Name = "toolStrip9";
- this.toolStrip9.Size = new System.Drawing.Size(235, 25);
+ this.toolStrip9.Size = new System.Drawing.Size(234, 25);
this.toolStrip9.TabIndex = 0;
this.toolStrip9.Text = "toolStrip9";
//
@@ -1244,6 +1289,12 @@ private void InitializeComponent()
this.toolStripLabel2.Name = "toolStripLabel2";
this.toolStripLabel2.Size = new System.Drawing.Size(0, 22);
//
+ // toolStripLabel28
+ //
+ this.toolStripLabel28.Name = "toolStripLabel28";
+ this.toolStripLabel28.Size = new System.Drawing.Size(71, 22);
+ this.toolStripLabel28.Text = "Component";
+ //
// panel30
//
this.panel30.Controls.Add(this.toolStrip10);
@@ -1251,16 +1302,17 @@ private void InitializeComponent()
this.panel30.Location = new System.Drawing.Point(0, 0);
this.panel30.Margin = new System.Windows.Forms.Padding(0);
this.panel30.Name = "panel30";
- this.panel30.Size = new System.Drawing.Size(235, 25);
+ this.panel30.Size = new System.Drawing.Size(234, 25);
this.panel30.TabIndex = 0;
//
// toolStrip10
//
+ this.toolStrip10.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip10.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel9});
this.toolStrip10.Location = new System.Drawing.Point(0, 0);
this.toolStrip10.Name = "toolStrip10";
- this.toolStrip10.Size = new System.Drawing.Size(235, 25);
+ this.toolStrip10.Size = new System.Drawing.Size(234, 25);
this.toolStrip10.TabIndex = 0;
this.toolStrip10.Text = "toolStrip10";
//
@@ -1274,9 +1326,9 @@ private void InitializeComponent()
//
this.panel26.Controls.Add(this.tabControl2);
this.panel26.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel26.Location = new System.Drawing.Point(0, 50);
+ this.panel26.Location = new System.Drawing.Point(0, 52);
this.panel26.Name = "panel26";
- this.panel26.Size = new System.Drawing.Size(651, 586);
+ this.panel26.Size = new System.Drawing.Size(652, 580);
this.panel26.TabIndex = 51;
//
// tabControl2
@@ -1292,7 +1344,7 @@ private void InitializeComponent()
this.tabControl2.Margin = new System.Windows.Forms.Padding(0);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
- this.tabControl2.Size = new System.Drawing.Size(651, 586);
+ this.tabControl2.Size = new System.Drawing.Size(652, 580);
this.tabControl2.TabIndex = 47;
//
// tabPage1
@@ -1300,8 +1352,8 @@ private void InitializeComponent()
this.tabPage1.Controls.Add(this.panel2);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(643, 560);
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage1.Size = new System.Drawing.Size(644, 554);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Identification data";
this.tabPage1.UseVisualStyleBackColor = true;
@@ -1349,7 +1401,7 @@ private void InitializeComponent()
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(3, 3);
this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(637, 554);
+ this.panel2.Size = new System.Drawing.Size(638, 548);
this.panel2.TabIndex = 0;
//
// label2
@@ -1704,8 +1756,8 @@ private void InitializeComponent()
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Margin = new System.Windows.Forms.Padding(0);
this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(643, 560);
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage3.Size = new System.Drawing.Size(643, 586);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Classification data";
this.tabPage3.UseVisualStyleBackColor = true;
@@ -1788,7 +1840,7 @@ private void InitializeComponent()
this.tabPage4.Controls.Add(this.panel3);
this.tabPage4.Location = new System.Drawing.Point(4, 22);
this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(643, 560);
+ this.tabPage4.Size = new System.Drawing.Size(643, 586);
this.tabPage4.TabIndex = 8;
this.tabPage4.Text = "Identification data 1";
//
@@ -1798,7 +1850,7 @@ private void InitializeComponent()
this.panel3.Controls.Add(this.panel23);
this.panel3.Controls.Add(this.tableLayoutPanel1);
this.panel3.Location = new System.Drawing.Point(56, 33);
- this.panel3.Margin = new System.Windows.Forms.Padding(10);
+ this.panel3.Margin = new System.Windows.Forms.Padding(10, 10, 10, 10);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(700, 500);
this.panel3.TabIndex = 0;
@@ -2135,16 +2187,453 @@ private void InitializeComponent()
//
this.tabPage5.AutoScroll = true;
this.tabPage5.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage5.Controls.Add(this.panel41);
this.tabPage5.Controls.Add(this.panel4);
this.tabPage5.Location = new System.Drawing.Point(4, 22);
this.tabPage5.Margin = new System.Windows.Forms.Padding(0);
this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage5.Size = new System.Drawing.Size(643, 560);
+ this.tabPage5.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage5.Size = new System.Drawing.Size(644, 554);
this.tabPage5.TabIndex = 9;
this.tabPage5.Text = "Interfaces ";
this.tabPage5.Click += new System.EventHandler(this.TabPage5_Click);
//
+ // panel41
+ //
+ this.panel41.Controls.Add(this.panel42);
+ this.panel41.Controls.Add(this.sensorInterfaceButton);
+ this.panel41.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel41.Location = new System.Drawing.Point(3, 26);
+ this.panel41.MaximumSize = new System.Drawing.Size(637, 450);
+ this.panel41.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel41.Name = "panel41";
+ this.panel41.Size = new System.Drawing.Size(637, 23);
+ this.panel41.TabIndex = 1;
+ //
+ // panel42
+ //
+ this.panel42.Controls.Add(this.panel43);
+ this.panel42.Controls.Add(this.toolStrip24);
+ this.panel42.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel42.Location = new System.Drawing.Point(0, 23);
+ this.panel42.Name = "panel42";
+ this.panel42.Size = new System.Drawing.Size(637, 0);
+ this.panel42.TabIndex = 2;
+ //
+ // panel43
+ //
+ this.panel43.Controls.Add(this.tabControl5);
+ this.panel43.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel43.Location = new System.Drawing.Point(0, 27);
+ this.panel43.Name = "panel43";
+ this.panel43.Size = new System.Drawing.Size(637, 0);
+ this.panel43.TabIndex = 1;
+ //
+ // tabControl5
+ //
+ this.tabControl5.Controls.Add(this.tabPage21);
+ this.tabControl5.Controls.Add(this.tabPage22);
+ this.tabControl5.Controls.Add(this.tabPage23);
+ this.tabControl5.Controls.Add(this.tabPage24);
+ this.tabControl5.Location = new System.Drawing.Point(0, 0);
+ this.tabControl5.Name = "tabControl5";
+ this.tabControl5.SelectedIndex = 0;
+ this.tabControl5.Size = new System.Drawing.Size(637, 376);
+ this.tabControl5.TabIndex = 0;
+ //
+ // tabPage21
+ //
+ this.tabPage21.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage21.Location = new System.Drawing.Point(4, 22);
+ this.tabPage21.Name = "tabPage21";
+ this.tabPage21.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage21.Size = new System.Drawing.Size(629, 350);
+ this.tabPage21.TabIndex = 0;
+ this.tabPage21.Text = "Basic Info ";
+ //
+ // tabPage22
+ //
+ this.tabPage22.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage22.Controls.Add(this.dataGridViewSensingMaterialOrientation);
+ this.tabPage22.Controls.Add(this.toolStrip28);
+ this.tabPage22.Controls.Add(this.panel45);
+ this.tabPage22.Location = new System.Drawing.Point(4, 22);
+ this.tabPage22.Name = "tabPage22";
+ this.tabPage22.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage22.Size = new System.Drawing.Size(629, 350);
+ this.tabPage22.TabIndex = 1;
+ this.tabPage22.Text = "Orientation Info";
+ //
+ // dataGridViewSensingMaterialOrientation
+ //
+ this.dataGridViewSensingMaterialOrientation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewSensingMaterialOrientation.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewTextBoxColumn26,
+ this.dataGridViewTextBoxColumn27,
+ this.dataGridViewTextBoxColumn28,
+ this.dataGridViewTextBoxColumn29});
+ this.dataGridViewSensingMaterialOrientation.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewSensingMaterialOrientation.Location = new System.Drawing.Point(3, 202);
+ this.dataGridViewSensingMaterialOrientation.Name = "dataGridViewSensingMaterialOrientation";
+ this.dataGridViewSensingMaterialOrientation.RowHeadersWidth = 51;
+ this.dataGridViewSensingMaterialOrientation.Size = new System.Drawing.Size(623, 145);
+ this.dataGridViewSensingMaterialOrientation.TabIndex = 2;
+ //
+ // dataGridViewTextBoxColumn26
+ //
+ this.dataGridViewTextBoxColumn26.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn26.MinimumWidth = 6;
+ this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
+ this.dataGridViewTextBoxColumn26.Width = 125;
+ //
+ // dataGridViewTextBoxColumn27
+ //
+ this.dataGridViewTextBoxColumn27.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.dataGridViewTextBoxColumn27.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn27.MinimumWidth = 6;
+ this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
+ //
+ // dataGridViewTextBoxColumn28
+ //
+ this.dataGridViewTextBoxColumn28.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn28.MinimumWidth = 6;
+ this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
+ this.dataGridViewTextBoxColumn28.Width = 125;
+ //
+ // dataGridViewTextBoxColumn29
+ //
+ this.dataGridViewTextBoxColumn29.HeaderText = "Units";
+ this.dataGridViewTextBoxColumn29.MinimumWidth = 6;
+ this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
+ this.dataGridViewTextBoxColumn29.Width = 125;
+ //
+ // toolStrip28
+ //
+ this.toolStrip28.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip28.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel33,
+ this.toolStripSeparator61,
+ this.toolStripButton42,
+ this.toolStripSeparator60,
+ this.toolStripButton43});
+ this.toolStrip28.Location = new System.Drawing.Point(3, 177);
+ this.toolStrip28.Name = "toolStrip28";
+ this.toolStrip28.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip28.TabIndex = 1;
+ this.toolStrip28.Text = "toolStrip28";
+ //
+ // toolStripLabel33
+ //
+ this.toolStripLabel33.Name = "toolStripLabel33";
+ this.toolStripLabel33.Size = new System.Drawing.Size(116, 22);
+ this.toolStripLabel33.Text = "Material Orientation:";
+ //
+ // toolStripSeparator61
+ //
+ this.toolStripSeparator61.Name = "toolStripSeparator61";
+ this.toolStripSeparator61.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton42
+ //
+ this.toolStripButton42.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton42.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton42.Image")));
+ this.toolStripButton42.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton42.Name = "toolStripButton42";
+ this.toolStripButton42.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton42.Text = "Add";
+ this.toolStripButton42.Click += new System.EventHandler(this.ToolStripButton42_Click);
+ //
+ // toolStripSeparator60
+ //
+ this.toolStripSeparator60.Name = "toolStripSeparator60";
+ this.toolStripSeparator60.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton43
+ //
+ this.toolStripButton43.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton43.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton43.Image")));
+ this.toolStripButton43.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton43.Name = "toolStripButton43";
+ this.toolStripButton43.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton43.Text = "Clear";
+ this.toolStripButton43.Click += new System.EventHandler(this.ToolStripButton43_Click);
+ //
+ // panel45
+ //
+ this.panel45.Controls.Add(this.dataGridViewSensorInterfaceOrienatation);
+ this.panel45.Controls.Add(this.toolStrip27);
+ this.panel45.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel45.Location = new System.Drawing.Point(3, 3);
+ this.panel45.Name = "panel45";
+ this.panel45.Size = new System.Drawing.Size(623, 174);
+ this.panel45.TabIndex = 0;
+ //
+ // dataGridViewSensorInterfaceOrienatation
+ //
+ this.dataGridViewSensorInterfaceOrienatation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewSensorInterfaceOrienatation.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.Column38,
+ this.Column39,
+ this.Column40,
+ this.Column41});
+ this.dataGridViewSensorInterfaceOrienatation.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewSensorInterfaceOrienatation.Location = new System.Drawing.Point(0, 25);
+ this.dataGridViewSensorInterfaceOrienatation.Name = "dataGridViewSensorInterfaceOrienatation";
+ this.dataGridViewSensorInterfaceOrienatation.RowHeadersWidth = 51;
+ this.dataGridViewSensorInterfaceOrienatation.Size = new System.Drawing.Size(623, 149);
+ this.dataGridViewSensorInterfaceOrienatation.TabIndex = 1;
+ //
+ // Column38
+ //
+ this.Column38.HeaderText = "ID";
+ this.Column38.MinimumWidth = 6;
+ this.Column38.Name = "Column38";
+ this.Column38.Width = 125;
+ //
+ // Column39
+ //
+ this.Column39.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.Column39.HeaderText = "Attribute";
+ this.Column39.MinimumWidth = 6;
+ this.Column39.Name = "Column39";
+ //
+ // Column40
+ //
+ this.Column40.HeaderText = "Value";
+ this.Column40.MinimumWidth = 6;
+ this.Column40.Name = "Column40";
+ this.Column40.Width = 125;
+ //
+ // Column41
+ //
+ this.Column41.HeaderText = "Units";
+ this.Column41.MinimumWidth = 6;
+ this.Column41.Name = "Column41";
+ this.Column41.Width = 125;
+ //
+ // toolStrip27
+ //
+ this.toolStrip27.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip27.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel32,
+ this.toolStripSeparator58,
+ this.toolStripButton40,
+ this.toolStripSeparator59,
+ this.toolStripButton41});
+ this.toolStrip27.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip27.Name = "toolStrip27";
+ this.toolStrip27.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip27.TabIndex = 0;
+ this.toolStrip27.Text = "toolStrip27";
+ //
+ // toolStripLabel32
+ //
+ this.toolStripLabel32.Name = "toolStripLabel32";
+ this.toolStripLabel32.Size = new System.Drawing.Size(119, 22);
+ this.toolStripLabel32.Text = "Interface Orientation:";
+ //
+ // toolStripSeparator58
+ //
+ this.toolStripSeparator58.Name = "toolStripSeparator58";
+ this.toolStripSeparator58.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton40
+ //
+ this.toolStripButton40.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton40.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton40.Image")));
+ this.toolStripButton40.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton40.Name = "toolStripButton40";
+ this.toolStripButton40.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton40.Text = "Add";
+ this.toolStripButton40.Click += new System.EventHandler(this.ToolStripButton40_Click);
+ //
+ // toolStripSeparator59
+ //
+ this.toolStripSeparator59.Name = "toolStripSeparator59";
+ this.toolStripSeparator59.Size = new System.Drawing.Size(6, 25);
+ //
+ // toolStripButton41
+ //
+ this.toolStripButton41.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton41.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton41.Image")));
+ this.toolStripButton41.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton41.Name = "toolStripButton41";
+ this.toolStripButton41.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton41.Text = "Clear";
+ this.toolStripButton41.Click += new System.EventHandler(this.ToolStripButton41_Click);
+ //
+ // tabPage23
+ //
+ this.tabPage23.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage23.Controls.Add(this.toolStrip26);
+ this.tabPage23.Controls.Add(this.panel44);
+ this.tabPage23.Location = new System.Drawing.Point(4, 22);
+ this.tabPage23.Name = "tabPage23";
+ this.tabPage23.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage23.Size = new System.Drawing.Size(629, 350);
+ this.tabPage23.TabIndex = 2;
+ this.tabPage23.Text = "I/O Info";
+ //
+ // toolStrip26
+ //
+ this.toolStrip26.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip26.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel31});
+ this.toolStrip26.Location = new System.Drawing.Point(3, 180);
+ this.toolStrip26.Name = "toolStrip26";
+ this.toolStrip26.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip26.TabIndex = 1;
+ this.toolStrip26.Text = "toolStrip26";
+ //
+ // toolStripLabel31
+ //
+ this.toolStripLabel31.Name = "toolStripLabel31";
+ this.toolStripLabel31.Size = new System.Drawing.Size(72, 22);
+ this.toolStripLabel31.Text = "Output Info:";
+ //
+ // panel44
+ //
+ this.panel44.Controls.Add(this.toolStrip25);
+ this.panel44.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel44.Location = new System.Drawing.Point(3, 3);
+ this.panel44.Name = "panel44";
+ this.panel44.Size = new System.Drawing.Size(623, 177);
+ this.panel44.TabIndex = 0;
+ //
+ // toolStrip25
+ //
+ this.toolStrip25.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip25.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel30,
+ this.toolStripSeparator57});
+ this.toolStrip25.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip25.Name = "toolStrip25";
+ this.toolStrip25.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip25.TabIndex = 0;
+ this.toolStrip25.Text = "toolStrip25";
+ //
+ // toolStripLabel30
+ //
+ this.toolStripLabel30.Name = "toolStripLabel30";
+ this.toolStripLabel30.Size = new System.Drawing.Size(62, 22);
+ this.toolStripLabel30.Text = "Input Info:";
+ //
+ // toolStripSeparator57
+ //
+ this.toolStripSeparator57.Name = "toolStripSeparator57";
+ this.toolStripSeparator57.Size = new System.Drawing.Size(6, 25);
+ //
+ // tabPage24
+ //
+ this.tabPage24.BackColor = System.Drawing.Color.LightGray;
+ this.tabPage24.Location = new System.Drawing.Point(4, 22);
+ this.tabPage24.Name = "tabPage24";
+ this.tabPage24.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage24.Size = new System.Drawing.Size(629, 350);
+ this.tabPage24.TabIndex = 3;
+ this.tabPage24.Text = "Geometry Info";
+ //
+ // toolStrip24
+ //
+ this.toolStrip24.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip24.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripLabel29,
+ this.toolStripSeparator53,
+ this.toolStripTextBox4,
+ this.toolStripSeparator54,
+ this.toolStripButton32,
+ this.toolStripSeparator55,
+ this.toolStripButton33,
+ this.toolStripSeparator56,
+ this.toolStripButton34,
+ this.toolStripButton35});
+ this.toolStrip24.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip24.Name = "toolStrip24";
+ this.toolStrip24.Size = new System.Drawing.Size(637, 27);
+ this.toolStrip24.TabIndex = 0;
+ this.toolStrip24.Text = "toolStrip24";
+ //
+ // toolStripLabel29
+ //
+ this.toolStripLabel29.Name = "toolStripLabel29";
+ this.toolStripLabel29.Size = new System.Drawing.Size(119, 24);
+ this.toolStripLabel29.Text = "Number of Interfaces";
+ //
+ // toolStripSeparator53
+ //
+ this.toolStripSeparator53.Name = "toolStripSeparator53";
+ this.toolStripSeparator53.Size = new System.Drawing.Size(6, 27);
+ //
+ // toolStripTextBox4
+ //
+ this.toolStripTextBox4.Name = "toolStripTextBox4";
+ this.toolStripTextBox4.Size = new System.Drawing.Size(75, 27);
+ //
+ // toolStripSeparator54
+ //
+ this.toolStripSeparator54.Name = "toolStripSeparator54";
+ this.toolStripSeparator54.Size = new System.Drawing.Size(6, 27);
+ //
+ // toolStripButton32
+ //
+ this.toolStripButton32.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton32.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton32.Image")));
+ this.toolStripButton32.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton32.Name = "toolStripButton32";
+ this.toolStripButton32.Size = new System.Drawing.Size(33, 24);
+ this.toolStripButton32.Text = "Add";
+ //
+ // toolStripSeparator55
+ //
+ this.toolStripSeparator55.Name = "toolStripSeparator55";
+ this.toolStripSeparator55.Size = new System.Drawing.Size(6, 27);
+ //
+ // toolStripButton33
+ //
+ this.toolStripButton33.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton33.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton33.Image")));
+ this.toolStripButton33.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton33.Name = "toolStripButton33";
+ this.toolStripButton33.Size = new System.Drawing.Size(44, 24);
+ this.toolStripButton33.Text = "Delete";
+ //
+ // toolStripSeparator56
+ //
+ this.toolStripSeparator56.Name = "toolStripSeparator56";
+ this.toolStripSeparator56.Size = new System.Drawing.Size(6, 27);
+ //
+ // toolStripButton34
+ //
+ this.toolStripButton34.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton34.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton34.Image")));
+ this.toolStripButton34.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton34.Name = "toolStripButton34";
+ this.toolStripButton34.Size = new System.Drawing.Size(38, 24);
+ this.toolStripButton34.Text = "Clear";
+ //
+ // toolStripButton35
+ //
+ this.toolStripButton35.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton35.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.toolStripButton35.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datenbank_hinzufügen_30;
+ this.toolStripButton35.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton35.Name = "toolStripButton35";
+ this.toolStripButton35.Size = new System.Drawing.Size(24, 24);
+ this.toolStripButton35.Text = "toolStripButton35";
+ //
+ // sensorInterfaceButton
+ //
+ this.sensorInterfaceButton.Dock = System.Windows.Forms.DockStyle.Top;
+ this.sensorInterfaceButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
+ this.sensorInterfaceButton.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
+ this.sensorInterfaceButton.Location = new System.Drawing.Point(0, 0);
+ this.sensorInterfaceButton.Name = "sensorInterfaceButton";
+ this.sensorInterfaceButton.Size = new System.Drawing.Size(637, 23);
+ this.sensorInterfaceButton.TabIndex = 1;
+ this.sensorInterfaceButton.Text = "Sensor Interface";
+ this.sensorInterfaceButton.UseVisualStyleBackColor = true;
+ this.sensorInterfaceButton.Click += new System.EventHandler(this.Button6_Click);
+ //
// panel4
//
this.panel4.Controls.Add(this.panel5);
@@ -2155,14 +2644,14 @@ private void InitializeComponent()
this.panel4.MaximumSize = new System.Drawing.Size(637, 500);
this.panel4.MinimumSize = new System.Drawing.Size(637, 23);
this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(637, 500);
+ this.panel4.Size = new System.Drawing.Size(637, 23);
this.panel4.TabIndex = 0;
//
// panel5
//
this.panel5.Controls.Add(this.tabControl1);
this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel5.Location = new System.Drawing.Point(0, 48);
+ this.panel5.Location = new System.Drawing.Point(0, 50);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(637, 431);
this.panel5.TabIndex = 3;
@@ -2190,7 +2679,7 @@ private void InitializeComponent()
this.tabPage7.Controls.Add(this.toolStrip14);
this.tabPage7.Location = new System.Drawing.Point(4, 22);
this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage7.Size = new System.Drawing.Size(629, 405);
this.tabPage7.TabIndex = 0;
this.tabPage7.Text = "Interface Type";
@@ -2207,18 +2696,21 @@ private void InitializeComponent()
this.dataGridViewPinInfo.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewPinInfo.Location = new System.Drawing.Point(3, 213);
this.dataGridViewPinInfo.Name = "dataGridViewPinInfo";
+ this.dataGridViewPinInfo.RowHeadersWidth = 51;
this.dataGridViewPinInfo.Size = new System.Drawing.Size(623, 189);
this.dataGridViewPinInfo.TabIndex = 3;
//
// Column18
//
this.Column18.HeaderText = "Pin";
+ this.Column18.MinimumWidth = 6;
this.Column18.Name = "Column18";
this.Column18.Width = 30;
//
// dataGridViewTextBoxColumn22
//
this.dataGridViewTextBoxColumn22.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn22.MinimumWidth = 6;
this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
this.dataGridViewTextBoxColumn22.Width = 150;
//
@@ -2226,20 +2718,26 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn23.HeaderText = "Attribute/Function";
+ this.dataGridViewTextBoxColumn23.MinimumWidth = 6;
this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
//
// dataGridViewTextBoxColumn24
//
this.dataGridViewTextBoxColumn24.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn24.MinimumWidth = 6;
this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
+ this.dataGridViewTextBoxColumn24.Width = 125;
//
// dataGridViewTextBoxColumn25
//
this.dataGridViewTextBoxColumn25.HeaderText = "Units";
+ this.dataGridViewTextBoxColumn25.MinimumWidth = 6;
this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
+ this.dataGridViewTextBoxColumn25.Width = 125;
//
// toolStrip18
//
+ this.toolStrip18.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip18.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel17,
this.toolStripSeparator30,
@@ -2343,12 +2841,14 @@ private void InitializeComponent()
this.dataGridViewIRDIElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIElectricalData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIElectricalData.Name = "dataGridViewIRDIElectricalData";
+ this.dataGridViewIRDIElectricalData.RowHeadersWidth = 51;
this.dataGridViewIRDIElectricalData.Size = new System.Drawing.Size(623, 135);
this.dataGridViewIRDIElectricalData.TabIndex = 0;
//
// Column14
//
this.Column14.HeaderText = "ID";
+ this.Column14.MinimumWidth = 6;
this.Column14.Name = "Column14";
this.Column14.Width = 150;
//
@@ -2356,20 +2856,26 @@ private void InitializeComponent()
//
this.Column15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column15.HeaderText = "Attribute";
+ this.Column15.MinimumWidth = 6;
this.Column15.Name = "Column15";
//
// Column16
//
this.Column16.HeaderText = "Value";
+ this.Column16.MinimumWidth = 6;
this.Column16.Name = "Column16";
+ this.Column16.Width = 125;
//
// Column17
//
this.Column17.HeaderText = "Units";
+ this.Column17.MinimumWidth = 6;
this.Column17.Name = "Column17";
+ this.Column17.Width = 125;
//
// toolStrip17
//
+ this.toolStrip17.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip17.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel16});
this.toolStrip17.Location = new System.Drawing.Point(0, 0);
@@ -2386,6 +2892,7 @@ private void InitializeComponent()
//
// toolStrip14
//
+ this.toolStrip14.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip14.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel13,
this.toolStripSeparator27,
@@ -2467,57 +2974,66 @@ private void InitializeComponent()
this.tabPage20.Controls.Add(this.panel22);
this.tabPage20.Location = new System.Drawing.Point(4, 22);
this.tabPage20.Name = "tabPage20";
- this.tabPage20.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage20.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage20.Size = new System.Drawing.Size(629, 405);
this.tabPage20.TabIndex = 4;
this.tabPage20.Text = "Cable Info";
//
// panel35
//
- this.panel35.Controls.Add(this.dataGridView2);
+ this.panel35.Controls.Add(this.dataGridViewIRDICableDMI);
this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel35.Location = new System.Drawing.Point(3, 185);
this.panel35.Name = "panel35";
this.panel35.Size = new System.Drawing.Size(623, 217);
this.panel35.TabIndex = 2;
//
- // dataGridView2
+ // dataGridViewIRDICableDMI
//
- this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.dataGridViewIRDICableDMI.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridViewIRDICableDMI.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column19,
this.Column20,
this.Column21,
this.Column22});
- this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridView2.Location = new System.Drawing.Point(0, 0);
- this.dataGridView2.Name = "dataGridView2";
- this.dataGridView2.Size = new System.Drawing.Size(623, 217);
- this.dataGridView2.TabIndex = 0;
+ this.dataGridViewIRDICableDMI.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridViewIRDICableDMI.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDICableDMI.Name = "dataGridViewIRDICableDMI";
+ this.dataGridViewIRDICableDMI.RowHeadersWidth = 51;
+ this.dataGridViewIRDICableDMI.Size = new System.Drawing.Size(623, 217);
+ this.dataGridViewIRDICableDMI.TabIndex = 0;
//
// Column19
//
this.Column19.HeaderText = "ID";
+ this.Column19.MinimumWidth = 6;
this.Column19.Name = "Column19";
+ this.Column19.Width = 125;
//
// Column20
//
this.Column20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column20.HeaderText = "Attribute";
+ this.Column20.MinimumWidth = 6;
this.Column20.Name = "Column20";
//
// Column21
//
this.Column21.HeaderText = "Value";
+ this.Column21.MinimumWidth = 6;
this.Column21.Name = "Column21";
+ this.Column21.Width = 125;
//
// Column22
//
this.Column22.HeaderText = "Units";
+ this.Column22.MinimumWidth = 6;
this.Column22.Name = "Column22";
+ this.Column22.Width = 125;
//
// toolStrip21
//
+ this.toolStrip21.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip21.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel23,
this.toolStripSeparator44,
@@ -2550,6 +3066,7 @@ private void InitializeComponent()
this.toolStripButton22.Name = "toolStripButton22";
this.toolStripButton22.Size = new System.Drawing.Size(33, 22);
this.toolStripButton22.Text = "Add";
+ this.toolStripButton22.Click += new System.EventHandler(this.ToolStripButton22_Click);
//
// toolStripSeparator45
//
@@ -2564,6 +3081,7 @@ private void InitializeComponent()
this.toolStripButton23.Name = "toolStripButton23";
this.toolStripButton23.Size = new System.Drawing.Size(38, 22);
this.toolStripButton23.Text = "Clear";
+ this.toolStripButton23.Click += new System.EventHandler(this.ToolStripButton23_Click);
//
// panel22
//
@@ -2596,37 +3114,48 @@ private void InitializeComponent()
this.dataGridViewIRDICableLeads.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDICableLeads.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDICableLeads.Name = "dataGridViewIRDICableLeads";
+ this.dataGridViewIRDICableLeads.RowHeadersWidth = 51;
this.dataGridViewIRDICableLeads.Size = new System.Drawing.Size(623, 132);
this.dataGridViewIRDICableLeads.TabIndex = 0;
//
// PinNumber
//
this.PinNumber.HeaderText = "Pin Number";
+ this.PinNumber.MinimumWidth = 6;
this.PinNumber.Name = "PinNumber";
+ this.PinNumber.Width = 125;
//
// LeadNumber
//
this.LeadNumber.HeaderText = "Lead Number";
+ this.LeadNumber.MinimumWidth = 6;
this.LeadNumber.Name = "LeadNumber";
+ this.LeadNumber.Width = 125;
//
// Function
//
this.Function.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Function.HeaderText = "Function";
+ this.Function.MinimumWidth = 6;
this.Function.Name = "Function";
//
// Value
//
this.Value.HeaderText = "Value";
+ this.Value.MinimumWidth = 6;
this.Value.Name = "Value";
+ this.Value.Width = 125;
//
// Units
//
this.Units.HeaderText = "Units";
+ this.Units.MinimumWidth = 6;
this.Units.Name = "Units";
+ this.Units.Width = 125;
//
// cableLeadsNumber
//
+ this.cableLeadsNumber.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cableLeadsNumber.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel21,
this.toolStripSeparator16,
@@ -2709,7 +3238,7 @@ private void InitializeComponent()
this.tabPage8.Controls.Add(this.toolStrip15);
this.tabPage8.Location = new System.Drawing.Point(4, 22);
this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage8.Size = new System.Drawing.Size(629, 405);
this.tabPage8.TabIndex = 1;
this.tabPage8.Text = "Dimensional Info";
@@ -2746,12 +3275,14 @@ private void InitializeComponent()
this.dataGridViewIRDIConnectorDimensions.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorDimensions.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIConnectorDimensions.Name = "dataGridViewIRDIConnectorDimensions";
+ this.dataGridViewIRDIConnectorDimensions.RowHeadersWidth = 51;
this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(623, 249);
this.dataGridViewIRDIConnectorDimensions.TabIndex = 0;
//
// Column8
//
this.Column8.HeaderText = "ID";
+ this.Column8.MinimumWidth = 6;
this.Column8.Name = "Column8";
this.Column8.Width = 150;
//
@@ -2759,34 +3290,40 @@ private void InitializeComponent()
//
this.Column9.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column9.HeaderText = "Attribute";
+ this.Column9.MinimumWidth = 6;
this.Column9.Name = "Column9";
//
// Column10
//
this.Column10.HeaderText = "Minimum";
+ this.Column10.MinimumWidth = 6;
this.Column10.Name = "Column10";
this.Column10.Width = 65;
//
// Column11
//
this.Column11.HeaderText = "Nominal";
+ this.Column11.MinimumWidth = 6;
this.Column11.Name = "Column11";
this.Column11.Width = 65;
//
// Column12
//
this.Column12.HeaderText = "Maximum";
+ this.Column12.MinimumWidth = 6;
this.Column12.Name = "Column12";
this.Column12.Width = 65;
//
// Column13
//
this.Column13.HeaderText = "Units";
+ this.Column13.MinimumWidth = 6;
this.Column13.Name = "Column13";
this.Column13.Width = 50;
//
// toolStrip16
//
+ this.toolStrip16.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip16.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel15,
this.toolStripSeparator28,
@@ -2904,12 +3441,14 @@ private void InitializeComponent()
this.Column7});
this.dataGridViewIRDIMountingData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIMountingData.Name = "dataGridViewIRDIMountingData";
+ this.dataGridViewIRDIMountingData.RowHeadersWidth = 51;
this.dataGridViewIRDIMountingData.Size = new System.Drawing.Size(623, 100);
this.dataGridViewIRDIMountingData.TabIndex = 0;
//
// Column4
//
this.Column4.HeaderText = "ID";
+ this.Column4.MinimumWidth = 6;
this.Column4.Name = "Column4";
this.Column4.Width = 150;
//
@@ -2917,20 +3456,26 @@ private void InitializeComponent()
//
this.Column5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column5.HeaderText = "Attribute";
+ this.Column5.MinimumWidth = 6;
this.Column5.Name = "Column5";
//
// Column6
//
this.Column6.HeaderText = "Value";
+ this.Column6.MinimumWidth = 6;
this.Column6.Name = "Column6";
+ this.Column6.Width = 125;
//
// Column7
//
this.Column7.HeaderText = "Units";
+ this.Column7.MinimumWidth = 6;
this.Column7.Name = "Column7";
+ this.Column7.Width = 125;
//
// toolStrip15
//
+ this.toolStrip15.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip15.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel8,
this.toolStripSeparator24,
@@ -3061,7 +3606,7 @@ private void InitializeComponent()
this.tabPage19.Controls.Add(this.toolStrip19);
this.tabPage19.Location = new System.Drawing.Point(4, 22);
this.tabPage19.Name = "tabPage19";
- this.tabPage19.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage19.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage19.Size = new System.Drawing.Size(629, 405);
this.tabPage19.TabIndex = 3;
this.tabPage19.Text = "Orientation Info";
@@ -3086,12 +3631,14 @@ private void InitializeComponent()
this.dataGridViewIRDIOrientationData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIOrientationData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIOrientationData.Name = "dataGridViewIRDIOrientationData";
+ this.dataGridViewIRDIOrientationData.RowHeadersWidth = 51;
this.dataGridViewIRDIOrientationData.Size = new System.Drawing.Size(623, 374);
this.dataGridViewIRDIOrientationData.TabIndex = 0;
//
// Column23
//
this.Column23.HeaderText = "ID";
+ this.Column23.MinimumWidth = 6;
this.Column23.Name = "Column23";
this.Column23.Width = 150;
//
@@ -3099,20 +3646,26 @@ private void InitializeComponent()
//
this.Column24.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column24.HeaderText = "Attribute";
+ this.Column24.MinimumWidth = 6;
this.Column24.Name = "Column24";
//
// Column25
//
this.Column25.HeaderText = "Value";
+ this.Column25.MinimumWidth = 6;
this.Column25.Name = "Column25";
+ this.Column25.Width = 125;
//
// Column26
//
this.Column26.HeaderText = "Units";
+ this.Column26.MinimumWidth = 6;
this.Column26.Name = "Column26";
+ this.Column26.Width = 125;
//
// toolStrip19
//
+ this.toolStrip19.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip19.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel7,
this.toolStripSeparator46,
@@ -3144,8 +3697,8 @@ private void InitializeComponent()
// toolStripLabel24
//
this.toolStripLabel24.Name = "toolStripLabel24";
- this.toolStripLabel24.Size = new System.Drawing.Size(92, 22);
- this.toolStripLabel24.Text = "toolStripLabel24";
+ this.toolStripLabel24.Size = new System.Drawing.Size(108, 22);
+ this.toolStripLabel24.Text = "Orientation System";
//
// toolStripSeparator47
//
@@ -3196,7 +3749,7 @@ private void InitializeComponent()
this.tabPage18.Controls.Add(this.panel37);
this.tabPage18.Location = new System.Drawing.Point(4, 22);
this.tabPage18.Name = "tabPage18";
- this.tabPage18.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage18.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage18.Size = new System.Drawing.Size(629, 405);
this.tabPage18.TabIndex = 2;
this.tabPage18.Text = "Miscellaneous Info";
@@ -3221,12 +3774,14 @@ private void InitializeComponent()
this.dataGridViewIRDIConnectorMiscData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorMiscData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIConnectorMiscData.Name = "dataGridViewIRDIConnectorMiscData";
+ this.dataGridViewIRDIConnectorMiscData.RowHeadersWidth = 51;
this.dataGridViewIRDIConnectorMiscData.Size = new System.Drawing.Size(623, 118);
this.dataGridViewIRDIConnectorMiscData.TabIndex = 0;
//
// Column34
//
this.Column34.HeaderText = "ID";
+ this.Column34.MinimumWidth = 6;
this.Column34.Name = "Column34";
this.Column34.Width = 150;
//
@@ -3234,20 +3789,26 @@ private void InitializeComponent()
//
this.Column35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column35.HeaderText = "Attribute";
+ this.Column35.MinimumWidth = 6;
this.Column35.Name = "Column35";
//
// Column36
//
this.Column36.HeaderText = "Value";
+ this.Column36.MinimumWidth = 6;
this.Column36.Name = "Column36";
+ this.Column36.Width = 125;
//
// Column37
//
this.Column37.HeaderText = "Units";
+ this.Column37.MinimumWidth = 6;
this.Column37.Name = "Column37";
+ this.Column37.Width = 125;
//
// toolStrip20
//
+ this.toolStrip20.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip20.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel27,
this.toolStripButton30,
@@ -3320,12 +3881,14 @@ private void InitializeComponent()
this.dataGridViewIRDIConnectorMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorMaterialData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIRDIConnectorMaterialData.Name = "dataGridViewIRDIConnectorMaterialData";
+ this.dataGridViewIRDIConnectorMaterialData.RowHeadersWidth = 51;
this.dataGridViewIRDIConnectorMaterialData.Size = new System.Drawing.Size(623, 102);
this.dataGridViewIRDIConnectorMaterialData.TabIndex = 0;
//
// Column31
//
this.Column31.HeaderText = "ID";
+ this.Column31.MinimumWidth = 6;
this.Column31.Name = "Column31";
this.Column31.Width = 150;
//
@@ -3333,15 +3896,19 @@ private void InitializeComponent()
//
this.Column32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column32.HeaderText = "Attribute";
+ this.Column32.MinimumWidth = 6;
this.Column32.Name = "Column32";
//
// Column33
//
this.Column33.HeaderText = "Value";
+ this.Column33.MinimumWidth = 6;
this.Column33.Name = "Column33";
+ this.Column33.Width = 125;
//
// toolStrip23
//
+ this.toolStrip23.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip23.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel26,
this.toolStripButton28,
@@ -3406,12 +3973,14 @@ private void InitializeComponent()
this.dataGridViewIRDIConnectorTempData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorTempData.Location = new System.Drawing.Point(0, 25);
this.dataGridViewIRDIConnectorTempData.Name = "dataGridViewIRDIConnectorTempData";
+ this.dataGridViewIRDIConnectorTempData.RowHeadersWidth = 51;
this.dataGridViewIRDIConnectorTempData.Size = new System.Drawing.Size(623, 104);
this.dataGridViewIRDIConnectorTempData.TabIndex = 1;
//
// Column27
//
this.Column27.HeaderText = "ID";
+ this.Column27.MinimumWidth = 6;
this.Column27.Name = "Column27";
this.Column27.Width = 150;
//
@@ -3419,20 +3988,26 @@ private void InitializeComponent()
//
this.Column28.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column28.HeaderText = "Attribute";
+ this.Column28.MinimumWidth = 6;
this.Column28.Name = "Column28";
//
// Column29
//
this.Column29.HeaderText = "Value";
+ this.Column29.MinimumWidth = 6;
this.Column29.Name = "Column29";
+ this.Column29.Width = 125;
//
// Column30
//
this.Column30.HeaderText = "Units";
+ this.Column30.MinimumWidth = 6;
this.Column30.Name = "Column30";
+ this.Column30.Width = 125;
//
// toolStrip22
//
+ this.toolStrip22.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip22.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel25,
this.toolStripButton26,
@@ -3478,6 +4053,7 @@ private void InitializeComponent()
//
// toolStrip13
//
+ this.toolStrip13.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip13.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.interfaceNumberdrpdwn,
this.toolStripSeparator17,
@@ -3492,30 +4068,30 @@ private void InitializeComponent()
this.interfacecollection});
this.toolStrip13.Location = new System.Drawing.Point(0, 23);
this.toolStrip13.Name = "toolStrip13";
- this.toolStrip13.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip13.Size = new System.Drawing.Size(637, 27);
this.toolStrip13.TabIndex = 2;
this.toolStrip13.Text = "toolStrip13";
//
// interfaceNumberdrpdwn
//
this.interfaceNumberdrpdwn.Name = "interfaceNumberdrpdwn";
- this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(119, 22);
+ this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(119, 24);
this.interfaceNumberdrpdwn.Text = "Number of Interfaces";
//
// toolStripSeparator17
//
this.toolStripSeparator17.Name = "toolStripSeparator17";
- this.toolStripSeparator17.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator17.Size = new System.Drawing.Size(6, 27);
//
// interfacesNumberTxtbx
//
this.interfacesNumberTxtbx.Name = "interfacesNumberTxtbx";
- this.interfacesNumberTxtbx.Size = new System.Drawing.Size(75, 25);
+ this.interfacesNumberTxtbx.Size = new System.Drawing.Size(75, 27);
//
// toolStripSeparator18
//
this.toolStripSeparator18.Name = "toolStripSeparator18";
- this.toolStripSeparator18.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator18.Size = new System.Drawing.Size(6, 27);
//
// addInterfaces
//
@@ -3523,14 +4099,14 @@ private void InitializeComponent()
this.addInterfaces.Image = ((System.Drawing.Image)(resources.GetObject("addInterfaces.Image")));
this.addInterfaces.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addInterfaces.Name = "addInterfaces";
- this.addInterfaces.Size = new System.Drawing.Size(33, 22);
+ this.addInterfaces.Size = new System.Drawing.Size(33, 24);
this.addInterfaces.Text = "Add";
this.addInterfaces.Click += new System.EventHandler(this.ToolStripButton3_Click_1);
//
// toolStripSeparator19
//
this.toolStripSeparator19.Name = "toolStripSeparator19";
- this.toolStripSeparator19.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator19.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton4
//
@@ -3538,13 +4114,13 @@ private void InitializeComponent()
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton4.Name = "toolStripButton4";
- this.toolStripButton4.Size = new System.Drawing.Size(44, 22);
+ this.toolStripButton4.Size = new System.Drawing.Size(44, 24);
this.toolStripButton4.Text = "Delete";
//
// toolStripSeparator20
//
this.toolStripSeparator20.Name = "toolStripSeparator20";
- this.toolStripSeparator20.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator20.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton5
//
@@ -3552,13 +4128,13 @@ private void InitializeComponent()
this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton5.Name = "toolStripButton5";
- this.toolStripButton5.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton5.Size = new System.Drawing.Size(38, 24);
this.toolStripButton5.Text = "Clear";
//
// toolStripSeparator21
//
this.toolStripSeparator21.Name = "toolStripSeparator21";
- this.toolStripSeparator21.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator21.Size = new System.Drawing.Size(6, 27);
//
// interfacecollection
//
@@ -3567,7 +4143,7 @@ private void InitializeComponent()
this.interfacecollection.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datenbank_hinzufügen_30;
this.interfacecollection.ImageTransparentColor = System.Drawing.Color.Magenta;
this.interfacecollection.Name = "interfacecollection";
- this.interfacecollection.Size = new System.Drawing.Size(29, 22);
+ this.interfacecollection.Size = new System.Drawing.Size(33, 24);
this.interfacecollection.Text = "toolStripButton30";
//
// button2
@@ -3590,8 +4166,8 @@ private void InitializeComponent()
this.tabPage6.Controls.Add(this.panel9);
this.tabPage6.Location = new System.Drawing.Point(4, 22);
this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(643, 560);
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage6.Size = new System.Drawing.Size(643, 586);
this.tabPage6.TabIndex = 10;
this.tabPage6.Text = "Field attachables";
//
@@ -3603,217 +4179,183 @@ private void InitializeComponent()
this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
this.panel9.Location = new System.Drawing.Point(3, 3);
this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(634, 554);
+ this.panel9.Size = new System.Drawing.Size(637, 580);
this.panel9.TabIndex = 0;
//
// panel14
//
- this.panel14.Controls.Add(this.panel18);
- this.panel14.Controls.Add(this.tableLayoutPanel7);
+ this.panel14.BackColor = System.Drawing.Color.LightGray;
+ this.panel14.Controls.Add(this.tableLayoutPanel3);
+ this.panel14.Controls.Add(this.toolStrip30);
this.panel14.Controls.Add(this.button10);
this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel14.Location = new System.Drawing.Point(0, 25);
- this.panel14.MaximumSize = new System.Drawing.Size(600, 250);
- this.panel14.MinimumSize = new System.Drawing.Size(600, 25);
+ this.panel14.Location = new System.Drawing.Point(0, 23);
+ this.panel14.MaximumSize = new System.Drawing.Size(637, 250);
+ this.panel14.MinimumSize = new System.Drawing.Size(637, 23);
this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(600, 25);
+ this.panel14.Size = new System.Drawing.Size(637, 23);
this.panel14.TabIndex = 1;
//
- // panel18
- //
- this.panel18.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel18.Controls.Add(this.button16);
- this.panel18.Controls.Add(this.button15);
- this.panel18.Controls.Add(this.button14);
- this.panel18.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel18.Location = new System.Drawing.Point(0, 148);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(600, 25);
- this.panel18.TabIndex = 2;
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Silver;
- this.button16.Dock = System.Windows.Forms.DockStyle.Right;
- this.button16.Location = new System.Drawing.Point(375, 0);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(75, 25);
- this.button16.TabIndex = 2;
- this.button16.Text = "Add ";
- this.button16.UseVisualStyleBackColor = false;
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Silver;
- this.button15.Dock = System.Windows.Forms.DockStyle.Right;
- this.button15.Location = new System.Drawing.Point(450, 0);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(75, 25);
- this.button15.TabIndex = 1;
- this.button15.Text = "Clear";
- this.button15.UseVisualStyleBackColor = false;
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Silver;
- this.button14.Dock = System.Windows.Forms.DockStyle.Right;
- this.button14.Location = new System.Drawing.Point(525, 0);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(75, 25);
- this.button14.TabIndex = 0;
- this.button14.Text = "Cancel";
- this.button14.UseVisualStyleBackColor = false;
- //
- // tableLayoutPanel7
- //
- this.tableLayoutPanel7.BackColor = System.Drawing.Color.WhiteSmoke;
- this.tableLayoutPanel7.ColumnCount = 2;
- this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
- this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.42857F));
- this.tableLayoutPanel7.Controls.Add(this.label53, 0, 2);
- this.tableLayoutPanel7.Controls.Add(this.label52, 0, 1);
- this.tableLayoutPanel7.Controls.Add(this.label51, 0, 0);
- this.tableLayoutPanel7.Controls.Add(this.panel15, 1, 0);
- this.tableLayoutPanel7.Controls.Add(this.panel16, 1, 1);
- this.tableLayoutPanel7.Controls.Add(this.panel17, 1, 2);
- this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel7.Location = new System.Drawing.Point(0, 25);
- this.tableLayoutPanel7.Name = "tableLayoutPanel7";
- this.tableLayoutPanel7.RowCount = 5;
- this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel7.Size = new System.Drawing.Size(600, 123);
- this.tableLayoutPanel7.TabIndex = 1;
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label53.Location = new System.Drawing.Point(3, 60);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(165, 30);
- this.label53.TabIndex = 4;
- this.label53.Text = "Short Guide:";
- this.label53.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label52.Location = new System.Drawing.Point(3, 30);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(165, 30);
- this.label52.TabIndex = 3;
- this.label52.Text = "Declaration of Conformity:";
- this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label51.Location = new System.Drawing.Point(3, 0);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(165, 30);
- this.label51.TabIndex = 0;
- this.label51.Text = "MFFT Certificate:";
- this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // panel15
- //
- this.panel15.Controls.Add(this.button11);
- this.panel15.Controls.Add(this.textBox22);
- this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel15.Location = new System.Drawing.Point(171, 0);
- this.panel15.Margin = new System.Windows.Forms.Padding(0);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(429, 30);
- this.panel15.TabIndex = 1;
- //
- // button11
- //
- this.button11.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button11.Location = new System.Drawing.Point(262, 2);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(30, 25);
- this.button11.TabIndex = 4;
- this.button11.UseVisualStyleBackColor = true;
- //
- // textBox22
- //
- this.textBox22.Location = new System.Drawing.Point(0, 5);
- this.textBox22.Margin = new System.Windows.Forms.Padding(0);
- this.textBox22.Name = "textBox22";
- this.textBox22.Size = new System.Drawing.Size(250, 20);
- this.textBox22.TabIndex = 0;
- //
- // panel16
- //
- this.panel16.Controls.Add(this.button12);
- this.panel16.Controls.Add(this.textBox23);
- this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel16.Location = new System.Drawing.Point(171, 30);
- this.panel16.Margin = new System.Windows.Forms.Padding(0);
- this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(429, 30);
- this.panel16.TabIndex = 2;
- //
- // button12
- //
- this.button12.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button12.Location = new System.Drawing.Point(262, 3);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(30, 25);
- this.button12.TabIndex = 5;
- this.button12.UseVisualStyleBackColor = true;
- //
- // textBox23
- //
- this.textBox23.Location = new System.Drawing.Point(0, 4);
- this.textBox23.Margin = new System.Windows.Forms.Padding(0);
- this.textBox23.Name = "textBox23";
- this.textBox23.Size = new System.Drawing.Size(250, 20);
- this.textBox23.TabIndex = 0;
- //
- // panel17
- //
- this.panel17.Controls.Add(this.button13);
- this.panel17.Controls.Add(this.textBox24);
- this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel17.Location = new System.Drawing.Point(171, 60);
- this.panel17.Margin = new System.Windows.Forms.Padding(0);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(429, 30);
- this.panel17.TabIndex = 5;
- //
- // button13
- //
- this.button13.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button13.Location = new System.Drawing.Point(262, 3);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(30, 25);
- this.button13.TabIndex = 6;
- this.button13.UseVisualStyleBackColor = true;
- //
- // textBox24
- //
- this.textBox24.Location = new System.Drawing.Point(0, 5);
- this.textBox24.Margin = new System.Windows.Forms.Padding(0);
- this.textBox24.Name = "textBox24";
- this.textBox24.Size = new System.Drawing.Size(250, 20);
- this.textBox24.TabIndex = 1;
+ // tableLayoutPanel3
+ //
+ this.tableLayoutPanel3.ColumnCount = 4;
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.00001F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 59.99999F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 78F));
+ this.tableLayoutPanel3.Controls.Add(this.label32, 0, 2);
+ this.tableLayoutPanel3.Controls.Add(this.bomTxtbx, 1, 2);
+ this.tableLayoutPanel3.Controls.Add(this.button7, 2, 2);
+ this.tableLayoutPanel3.Controls.Add(this.label33, 0, 1);
+ this.tableLayoutPanel3.Controls.Add(this.shortGuideTxtbx, 1, 1);
+ this.tableLayoutPanel3.Controls.Add(this.button8, 2, 1);
+ this.tableLayoutPanel3.Controls.Add(this.label34, 0, 0);
+ this.tableLayoutPanel3.Controls.Add(this.DofcTxtbx, 1, 0);
+ this.tableLayoutPanel3.Controls.Add(this.button9, 2, 0);
+ this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 48);
+ this.tableLayoutPanel3.Name = "tableLayoutPanel3";
+ this.tableLayoutPanel3.RowCount = 4;
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel3.Size = new System.Drawing.Size(637, 113);
+ this.tableLayoutPanel3.TabIndex = 3;
+ //
+ // label32
+ //
+ this.label32.AutoSize = true;
+ this.label32.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label32.Location = new System.Drawing.Point(3, 56);
+ this.label32.Name = "label32";
+ this.label32.Size = new System.Drawing.Size(187, 28);
+ this.label32.TabIndex = 6;
+ this.label32.Text = "Bill of materials:";
+ this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // bomTxtbx
+ //
+ this.bomTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.bomTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.bomTxtbx.Location = new System.Drawing.Point(196, 59);
+ this.bomTxtbx.Name = "bomTxtbx";
+ this.bomTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.bomTxtbx.TabIndex = 7;
+ //
+ // button7
+ //
+ this.button7.Location = new System.Drawing.Point(486, 59);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(69, 21);
+ this.button7.TabIndex = 8;
+ this.button7.Text = "Upload";
+ this.button7.UseVisualStyleBackColor = true;
+ this.button7.Click += new System.EventHandler(this.Button7_Click);
+ //
+ // label33
+ //
+ this.label33.AutoSize = true;
+ this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label33.Location = new System.Drawing.Point(3, 28);
+ this.label33.Name = "label33";
+ this.label33.Size = new System.Drawing.Size(187, 28);
+ this.label33.TabIndex = 3;
+ this.label33.Text = "Short Guide:";
+ this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // shortGuideTxtbx
+ //
+ this.shortGuideTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.shortGuideTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.shortGuideTxtbx.Location = new System.Drawing.Point(196, 31);
+ this.shortGuideTxtbx.Name = "shortGuideTxtbx";
+ this.shortGuideTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.shortGuideTxtbx.TabIndex = 4;
+ //
+ // button8
+ //
+ this.button8.Dock = System.Windows.Forms.DockStyle.Left;
+ this.button8.Location = new System.Drawing.Point(486, 31);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(69, 22);
+ this.button8.TabIndex = 5;
+ this.button8.Text = "Upload";
+ this.button8.UseVisualStyleBackColor = true;
+ this.button8.Click += new System.EventHandler(this.Button8_Click);
+ //
+ // label34
+ //
+ this.label34.AutoSize = true;
+ this.label34.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label34.Location = new System.Drawing.Point(3, 0);
+ this.label34.Name = "label34";
+ this.label34.Size = new System.Drawing.Size(187, 28);
+ this.label34.TabIndex = 0;
+ this.label34.Text = "Decleration of Conformity:";
+ this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // DofcTxtbx
+ //
+ this.DofcTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.DofcTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.DofcTxtbx.Location = new System.Drawing.Point(196, 3);
+ this.DofcTxtbx.Name = "DofcTxtbx";
+ this.DofcTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.DofcTxtbx.TabIndex = 1;
+ //
+ // button9
+ //
+ this.button9.Dock = System.Windows.Forms.DockStyle.Left;
+ this.button9.Location = new System.Drawing.Point(486, 3);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(69, 22);
+ this.button9.TabIndex = 2;
+ this.button9.Text = "Upload";
+ this.button9.UseVisualStyleBackColor = true;
+ this.button9.Click += new System.EventHandler(this.Button9_Click);
+ //
+ // toolStrip30
+ //
+ this.toolStrip30.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip30.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton36,
+ this.toolStripButton39});
+ this.toolStrip30.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip30.Name = "toolStrip30";
+ this.toolStrip30.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip30.TabIndex = 2;
+ this.toolStrip30.Text = "toolStrip30";
+ //
+ // toolStripButton36
+ //
+ this.toolStripButton36.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton36.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton36.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton36.Image")));
+ this.toolStripButton36.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton36.Name = "toolStripButton36";
+ this.toolStripButton36.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton36.Text = "Cancel";
+ //
+ // toolStripButton39
+ //
+ this.toolStripButton39.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton39.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton39.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton39.Image")));
+ this.toolStripButton39.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton39.Name = "toolStripButton39";
+ this.toolStripButton39.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton39.Text = "Save";
//
// button10
//
- this.button10.BackColor = System.Drawing.Color.DarkGray;
+ this.button10.BackColor = System.Drawing.Color.LightGray;
this.button10.Dock = System.Windows.Forms.DockStyle.Top;
this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.button10.Location = new System.Drawing.Point(0, 0);
this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(600, 25);
+ this.button10.Size = new System.Drawing.Size(637, 23);
this.button10.TabIndex = 0;
this.button10.Text = "+ Add Documents ";
this.button10.UseVisualStyleBackColor = false;
@@ -3821,218 +4363,178 @@ private void InitializeComponent()
//
// panel10
//
- this.panel10.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel10.Controls.Add(this.panel19);
- this.panel10.Controls.Add(this.tableLayoutPanel6);
+ this.panel10.BackColor = System.Drawing.Color.LightGray;
+ this.panel10.Controls.Add(this.tableLayoutPanel2);
+ this.panel10.Controls.Add(this.toolStrip29);
this.panel10.Controls.Add(this.button1);
this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
this.panel10.Location = new System.Drawing.Point(0, 0);
- this.panel10.MaximumSize = new System.Drawing.Size(600, 250);
- this.panel10.MinimumSize = new System.Drawing.Size(600, 25);
+ this.panel10.MaximumSize = new System.Drawing.Size(637, 250);
+ this.panel10.MinimumSize = new System.Drawing.Size(637, 23);
this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(600, 25);
+ this.panel10.Size = new System.Drawing.Size(637, 23);
this.panel10.TabIndex = 0;
//
- // panel19
- //
- this.panel19.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel19.Controls.Add(this.button17);
- this.panel19.Controls.Add(this.button18);
- this.panel19.Controls.Add(this.button19);
- this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel19.Location = new System.Drawing.Point(0, 160);
- this.panel19.Name = "panel19";
- this.panel19.Size = new System.Drawing.Size(600, 25);
- this.panel19.TabIndex = 3;
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Silver;
- this.button17.Dock = System.Windows.Forms.DockStyle.Right;
- this.button17.Location = new System.Drawing.Point(375, 0);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(75, 25);
- this.button17.TabIndex = 2;
- this.button17.Text = "Add ";
- this.button17.UseVisualStyleBackColor = false;
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.Silver;
- this.button18.Dock = System.Windows.Forms.DockStyle.Right;
- this.button18.Location = new System.Drawing.Point(450, 0);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(75, 25);
- this.button18.TabIndex = 1;
- this.button18.Text = "Clear";
- this.button18.UseVisualStyleBackColor = false;
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.Silver;
- this.button19.Dock = System.Windows.Forms.DockStyle.Right;
- this.button19.Location = new System.Drawing.Point(525, 0);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(75, 25);
- this.button19.TabIndex = 0;
- this.button19.Text = "Cancel";
- this.button19.UseVisualStyleBackColor = false;
- //
- // tableLayoutPanel6
- //
- this.tableLayoutPanel6.BackColor = System.Drawing.Color.WhiteSmoke;
- this.tableLayoutPanel6.ColumnCount = 2;
- this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.66667F));
- this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.33334F));
- this.tableLayoutPanel6.Controls.Add(this.label50, 0, 2);
- this.tableLayoutPanel6.Controls.Add(this.label49, 0, 1);
- this.tableLayoutPanel6.Controls.Add(this.label48, 0, 0);
- this.tableLayoutPanel6.Controls.Add(this.panel11, 1, 0);
- this.tableLayoutPanel6.Controls.Add(this.panel12, 1, 1);
- this.tableLayoutPanel6.Controls.Add(this.panel13, 1, 2);
- this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 25);
- this.tableLayoutPanel6.Name = "tableLayoutPanel6";
- this.tableLayoutPanel6.RowCount = 4;
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
- this.tableLayoutPanel6.Size = new System.Drawing.Size(600, 135);
- this.tableLayoutPanel6.TabIndex = 1;
- this.tableLayoutPanel6.Paint += new System.Windows.Forms.PaintEventHandler(this.TableLayoutPanel6_Paint);
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label50.Location = new System.Drawing.Point(3, 60);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(165, 30);
- this.label50.TabIndex = 4;
- this.label50.Text = "Add Device Picture:";
- this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label49.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label49.Location = new System.Drawing.Point(3, 30);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(165, 30);
- this.label49.TabIndex = 2;
- this.label49.Text = "Add Device Icon:";
- this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label48.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label48.Location = new System.Drawing.Point(3, 0);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(165, 30);
- this.label48.TabIndex = 0;
- this.label48.Text = "Add Vendor Logo:";
- this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // panel11
- //
- this.panel11.Controls.Add(this.button4);
- this.panel11.Controls.Add(this.textBox19);
- this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel11.Location = new System.Drawing.Point(171, 0);
- this.panel11.Margin = new System.Windows.Forms.Padding(0);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(429, 30);
- this.panel11.TabIndex = 1;
- //
- // button4
- //
- this.button4.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button4.Location = new System.Drawing.Point(262, 3);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(30, 25);
- this.button4.TabIndex = 1;
- this.button4.UseVisualStyleBackColor = true;
- //
- // textBox19
- //
- this.textBox19.Location = new System.Drawing.Point(0, 5);
- this.textBox19.Margin = new System.Windows.Forms.Padding(0);
- this.textBox19.Name = "textBox19";
- this.textBox19.Size = new System.Drawing.Size(250, 20);
- this.textBox19.TabIndex = 0;
- this.textBox19.TextChanged += new System.EventHandler(this.TextBox19_TextChanged);
- //
- // panel12
- //
- this.panel12.Controls.Add(this.button5);
- this.panel12.Controls.Add(this.textBox20);
- this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel12.Location = new System.Drawing.Point(171, 30);
- this.panel12.Margin = new System.Windows.Forms.Padding(0);
- this.panel12.Name = "panel12";
- this.panel12.Size = new System.Drawing.Size(429, 30);
- this.panel12.TabIndex = 5;
+ // tableLayoutPanel2
+ //
+ this.tableLayoutPanel2.ColumnCount = 3;
+ this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
+ this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.85714F));
+ this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
+ this.tableLayoutPanel2.Controls.Add(this.label31, 0, 2);
+ this.tableLayoutPanel2.Controls.Add(this.addDevicePictureTxtbx, 1, 2);
+ this.tableLayoutPanel2.Controls.Add(this.button6, 2, 2);
+ this.tableLayoutPanel2.Controls.Add(this.label30, 0, 1);
+ this.tableLayoutPanel2.Controls.Add(this.addDeviceIconTxtbx, 1, 1);
+ this.tableLayoutPanel2.Controls.Add(this.button5, 2, 1);
+ this.tableLayoutPanel2.Controls.Add(this.label29, 0, 0);
+ this.tableLayoutPanel2.Controls.Add(this.addVendorLogoTxtbx, 1, 0);
+ this.tableLayoutPanel2.Controls.Add(this.button4, 2, 0);
+ this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 48);
+ this.tableLayoutPanel2.Name = "tableLayoutPanel2";
+ this.tableLayoutPanel2.RowCount = 4;
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel2.Size = new System.Drawing.Size(637, 113);
+ this.tableLayoutPanel2.TabIndex = 2;
+ //
+ // label31
+ //
+ this.label31.AutoSize = true;
+ this.label31.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label31.Location = new System.Drawing.Point(3, 56);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(176, 28);
+ this.label31.TabIndex = 6;
+ this.label31.Text = "Add Device Picture:";
+ this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // addDevicePictureTxtbx
+ //
+ this.addDevicePictureTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.addDevicePictureTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.addDevicePictureTxtbx.Location = new System.Drawing.Point(185, 59);
+ this.addDevicePictureTxtbx.Name = "addDevicePictureTxtbx";
+ this.addDevicePictureTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addDevicePictureTxtbx.TabIndex = 7;
+ //
+ // button6
+ //
+ this.button6.Location = new System.Drawing.Point(457, 59);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(75, 21);
+ this.button6.TabIndex = 8;
+ this.button6.Text = "Upload";
+ this.button6.UseVisualStyleBackColor = true;
+ this.button6.Click += new System.EventHandler(this.Button6_Click_1);
+ //
+ // label30
+ //
+ this.label30.AutoSize = true;
+ this.label30.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label30.Location = new System.Drawing.Point(3, 28);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(176, 28);
+ this.label30.TabIndex = 3;
+ this.label30.Text = "Add Device Icon:";
+ this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // addDeviceIconTxtbx
+ //
+ this.addDeviceIconTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.addDeviceIconTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.addDeviceIconTxtbx.Location = new System.Drawing.Point(185, 31);
+ this.addDeviceIconTxtbx.Name = "addDeviceIconTxtbx";
+ this.addDeviceIconTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addDeviceIconTxtbx.TabIndex = 4;
//
// button5
//
- this.button5.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button5.Location = new System.Drawing.Point(262, 3);
+ this.button5.Dock = System.Windows.Forms.DockStyle.Left;
+ this.button5.Location = new System.Drawing.Point(457, 31);
this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(30, 25);
- this.button5.TabIndex = 2;
+ this.button5.Size = new System.Drawing.Size(75, 22);
+ this.button5.TabIndex = 5;
+ this.button5.Text = "Upload";
this.button5.UseVisualStyleBackColor = true;
+ this.button5.Click += new System.EventHandler(this.Button5_Click);
//
- // textBox20
+ // label29
//
- this.textBox20.Location = new System.Drawing.Point(0, 4);
- this.textBox20.Margin = new System.Windows.Forms.Padding(0);
- this.textBox20.Name = "textBox20";
- this.textBox20.Size = new System.Drawing.Size(250, 20);
- this.textBox20.TabIndex = 1;
+ this.label29.AutoSize = true;
+ this.label29.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.label29.Location = new System.Drawing.Point(3, 0);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(176, 28);
+ this.label29.TabIndex = 0;
+ this.label29.Text = "Add Vendor Logo:";
+ this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
- // panel13
+ // addVendorLogoTxtbx
//
- this.panel13.Controls.Add(this.button9);
- this.panel13.Controls.Add(this.textBox21);
- this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel13.Location = new System.Drawing.Point(171, 60);
- this.panel13.Margin = new System.Windows.Forms.Padding(0);
- this.panel13.Name = "panel13";
- this.panel13.Size = new System.Drawing.Size(429, 30);
- this.panel13.TabIndex = 6;
+ this.addVendorLogoTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.addVendorLogoTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.addVendorLogoTxtbx.Location = new System.Drawing.Point(185, 3);
+ this.addVendorLogoTxtbx.Name = "addVendorLogoTxtbx";
+ this.addVendorLogoTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addVendorLogoTxtbx.TabIndex = 1;
//
- // button9
- //
- this.button9.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
- this.button9.Location = new System.Drawing.Point(262, 3);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(30, 25);
- this.button9.TabIndex = 3;
- this.button9.UseVisualStyleBackColor = true;
- //
- // textBox21
+ // button4
//
- this.textBox21.Location = new System.Drawing.Point(0, 5);
- this.textBox21.Margin = new System.Windows.Forms.Padding(0);
- this.textBox21.Name = "textBox21";
- this.textBox21.Size = new System.Drawing.Size(250, 20);
- this.textBox21.TabIndex = 2;
+ this.button4.Dock = System.Windows.Forms.DockStyle.Left;
+ this.button4.Location = new System.Drawing.Point(457, 3);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(75, 22);
+ this.button4.TabIndex = 2;
+ this.button4.Text = "Upload";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.Button4_Click);
+ //
+ // toolStrip29
+ //
+ this.toolStrip29.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip29.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton37,
+ this.toolStripButton38});
+ this.toolStrip29.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip29.Name = "toolStrip29";
+ this.toolStrip29.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip29.TabIndex = 1;
+ this.toolStrip29.Text = "toolStrip29";
+ //
+ // toolStripButton37
+ //
+ this.toolStripButton37.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton37.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton37.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton37.Image")));
+ this.toolStripButton37.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton37.Name = "toolStripButton37";
+ this.toolStripButton37.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton37.Text = "Cancel";
+ //
+ // toolStripButton38
+ //
+ this.toolStripButton38.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton38.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton38.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton38.Image")));
+ this.toolStripButton38.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton38.Name = "toolStripButton38";
+ this.toolStripButton38.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton38.Text = "Save";
//
// button1
//
- this.button1.BackColor = System.Drawing.Color.DarkGray;
+ this.button1.BackColor = System.Drawing.Color.LightGray;
this.button1.Dock = System.Windows.Forms.DockStyle.Top;
this.button1.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.button1.Location = new System.Drawing.Point(0, 0);
this.button1.Margin = new System.Windows.Forms.Padding(0);
this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(600, 25);
+ this.button1.Size = new System.Drawing.Size(637, 23);
this.button1.TabIndex = 0;
this.button1.Text = "+ Add Logo";
this.button1.UseVisualStyleBackColor = false;
@@ -4048,8 +4550,8 @@ private void InitializeComponent()
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(643, 560);
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
+ this.tabPage2.Size = new System.Drawing.Size(643, 586);
this.tabPage2.TabIndex = 11;
this.tabPage2.Text = "Generic Data";
//
@@ -4069,6 +4571,7 @@ private void InitializeComponent()
//
// toolStrip8
//
+ this.toolStrip8.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip8.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton12,
this.toolStripButton13,
@@ -4149,7 +4652,7 @@ private void InitializeComponent()
this.tabPage14.Location = new System.Drawing.Point(4, 22);
this.tabPage14.Margin = new System.Windows.Forms.Padding(0);
this.tabPage14.Name = "tabPage14";
- this.tabPage14.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage14.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage14.Size = new System.Drawing.Size(629, 190);
this.tabPage14.TabIndex = 0;
this.tabPage14.Text = "Product Details";
@@ -4164,12 +4667,14 @@ private void InitializeComponent()
this.dataGridViewPD.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewPD.Location = new System.Drawing.Point(3, 3);
this.dataGridViewPD.Name = "dataGridViewPD";
+ this.dataGridViewPD.RowHeadersWidth = 51;
this.dataGridViewPD.Size = new System.Drawing.Size(623, 184);
this.dataGridViewPD.TabIndex = 0;
//
// ReferenceID
//
this.ReferenceID.HeaderText = "ID";
+ this.ReferenceID.MinimumWidth = 6;
this.ReferenceID.Name = "ReferenceID";
this.ReferenceID.Width = 175;
//
@@ -4177,11 +4682,13 @@ private void InitializeComponent()
//
this.Attribute.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Attribute.HeaderText = "Attribute";
+ this.Attribute.MinimumWidth = 6;
this.Attribute.Name = "Attribute";
//
// Description
//
this.Description.HeaderText = "Description";
+ this.Description.MinimumWidth = 6;
this.Description.Name = "Description";
this.Description.Width = 250;
//
@@ -4192,7 +4699,7 @@ private void InitializeComponent()
this.tabPage15.Location = new System.Drawing.Point(4, 22);
this.tabPage15.Margin = new System.Windows.Forms.Padding(0);
this.tabPage15.Name = "tabPage15";
- this.tabPage15.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage15.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage15.Size = new System.Drawing.Size(629, 190);
this.tabPage15.TabIndex = 1;
this.tabPage15.Text = "Product Order Details";
@@ -4207,12 +4714,14 @@ private void InitializeComponent()
this.dataGridViewPOD.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewPOD.Location = new System.Drawing.Point(3, 3);
this.dataGridViewPOD.Name = "dataGridViewPOD";
+ this.dataGridViewPOD.RowHeadersWidth = 51;
this.dataGridViewPOD.Size = new System.Drawing.Size(623, 184);
this.dataGridViewPOD.TabIndex = 1;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn1.MinimumWidth = 6;
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.Width = 175;
//
@@ -4220,11 +4729,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn2.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn2.MinimumWidth = 6;
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
//
// dataGridViewTextBoxColumn3
//
this.dataGridViewTextBoxColumn3.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn3.MinimumWidth = 6;
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
this.dataGridViewTextBoxColumn3.Width = 250;
//
@@ -4258,12 +4769,14 @@ private void InitializeComponent()
this.dataGridViewPPD.Dock = System.Windows.Forms.DockStyle.Top;
this.dataGridViewPPD.Location = new System.Drawing.Point(0, 0);
this.dataGridViewPPD.Name = "dataGridViewPPD";
+ this.dataGridViewPPD.RowHeadersWidth = 51;
this.dataGridViewPPD.Size = new System.Drawing.Size(629, 190);
this.dataGridViewPPD.TabIndex = 1;
//
// dataGridViewTextBoxColumn4
//
this.dataGridViewTextBoxColumn4.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn4.MinimumWidth = 6;
this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
this.dataGridViewTextBoxColumn4.Width = 175;
//
@@ -4271,16 +4784,19 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn5.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn5.MinimumWidth = 6;
this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
//
// dataGridViewTextBoxColumn6
//
this.dataGridViewTextBoxColumn6.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn6.MinimumWidth = 6;
this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
this.dataGridViewTextBoxColumn6.Width = 250;
//
// toolStrip12
//
+ this.toolStrip12.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip12.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel3,
this.toolStripSeparator10,
@@ -4353,12 +4869,14 @@ private void InitializeComponent()
this.dataGridViewMD.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewMD.Location = new System.Drawing.Point(0, 0);
this.dataGridViewMD.Name = "dataGridViewMD";
+ this.dataGridViewMD.RowHeadersWidth = 51;
this.dataGridViewMD.Size = new System.Drawing.Size(629, 190);
this.dataGridViewMD.TabIndex = 1;
//
// dataGridViewTextBoxColumn7
//
this.dataGridViewTextBoxColumn7.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn7.MinimumWidth = 6;
this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
this.dataGridViewTextBoxColumn7.Width = 175;
//
@@ -4366,11 +4884,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn8.HeaderText = "Attribute";
+ this.dataGridViewTextBoxColumn8.MinimumWidth = 6;
this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
//
// dataGridViewTextBoxColumn9
//
this.dataGridViewTextBoxColumn9.HeaderText = "Description";
+ this.dataGridViewTextBoxColumn9.MinimumWidth = 6;
this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
this.dataGridViewTextBoxColumn9.Width = 250;
//
@@ -4404,6 +4924,7 @@ private void InitializeComponent()
//
// toolStrip7
//
+ this.toolStrip7.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip7.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton9,
this.toolStripButton10,
@@ -4485,7 +5006,7 @@ private void InitializeComponent()
this.tabPage9.Location = new System.Drawing.Point(4, 22);
this.tabPage9.Margin = new System.Windows.Forms.Padding(0);
this.tabPage9.Name = "tabPage9";
- this.tabPage9.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage9.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage9.Size = new System.Drawing.Size(629, 123);
this.tabPage9.TabIndex = 0;
this.tabPage9.Text = "Mechanical Data";
@@ -4500,12 +5021,14 @@ private void InitializeComponent()
this.dataGridViewMechData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewMechData.Location = new System.Drawing.Point(3, 3);
this.dataGridViewMechData.Name = "dataGridViewMechData";
+ this.dataGridViewMechData.RowHeadersWidth = 51;
this.dataGridViewMechData.Size = new System.Drawing.Size(623, 117);
this.dataGridViewMechData.TabIndex = 1;
//
// dataGridViewTextBoxColumn10
//
this.dataGridViewTextBoxColumn10.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn10.MinimumWidth = 6;
this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
this.dataGridViewTextBoxColumn10.Width = 175;
//
@@ -4513,11 +5036,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn11.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn11.MinimumWidth = 6;
this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
//
// dataGridViewTextBoxColumn12
//
this.dataGridViewTextBoxColumn12.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn12.MinimumWidth = 6;
this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
this.dataGridViewTextBoxColumn12.Width = 250;
//
@@ -4528,7 +5053,7 @@ private void InitializeComponent()
this.tabPage10.Location = new System.Drawing.Point(4, 22);
this.tabPage10.Margin = new System.Windows.Forms.Padding(0);
this.tabPage10.Name = "tabPage10";
- this.tabPage10.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage10.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage10.Size = new System.Drawing.Size(629, 123);
this.tabPage10.TabIndex = 1;
this.tabPage10.Text = "Material Data";
@@ -4543,12 +5068,14 @@ private void InitializeComponent()
this.dataGridViewMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewMaterialData.Location = new System.Drawing.Point(3, 3);
this.dataGridViewMaterialData.Name = "dataGridViewMaterialData";
+ this.dataGridViewMaterialData.RowHeadersWidth = 51;
this.dataGridViewMaterialData.Size = new System.Drawing.Size(623, 117);
this.dataGridViewMaterialData.TabIndex = 1;
//
// dataGridViewTextBoxColumn13
//
this.dataGridViewTextBoxColumn13.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn13.MinimumWidth = 6;
this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
this.dataGridViewTextBoxColumn13.Width = 175;
//
@@ -4556,11 +5083,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn14.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn14.MinimumWidth = 6;
this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
//
// dataGridViewTextBoxColumn15
//
this.dataGridViewTextBoxColumn15.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn15.MinimumWidth = 6;
this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
this.dataGridViewTextBoxColumn15.Width = 250;
//
@@ -4584,12 +5113,14 @@ private void InitializeComponent()
this.dataGridViewElectricalConnection.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewElectricalConnection.Location = new System.Drawing.Point(0, 0);
this.dataGridViewElectricalConnection.Name = "dataGridViewElectricalConnection";
+ this.dataGridViewElectricalConnection.RowHeadersWidth = 51;
this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(629, 123);
this.dataGridViewElectricalConnection.TabIndex = 1;
//
// dataGridViewTextBoxColumn16
//
this.dataGridViewTextBoxColumn16.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn16.MinimumWidth = 6;
this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
this.dataGridViewTextBoxColumn16.Width = 175;
//
@@ -4597,11 +5128,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn17.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn17.MinimumWidth = 6;
this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
//
// dataGridViewTextBoxColumn18
//
this.dataGridViewTextBoxColumn18.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn18.MinimumWidth = 6;
this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
this.dataGridViewTextBoxColumn18.Width = 250;
//
@@ -4626,12 +5159,14 @@ private void InitializeComponent()
this.dataGridViewElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewElectricalData.Location = new System.Drawing.Point(0, 0);
this.dataGridViewElectricalData.Name = "dataGridViewElectricalData";
+ this.dataGridViewElectricalData.RowHeadersWidth = 51;
this.dataGridViewElectricalData.Size = new System.Drawing.Size(629, 123);
this.dataGridViewElectricalData.TabIndex = 1;
//
// dataGridViewTextBoxColumn19
//
this.dataGridViewTextBoxColumn19.HeaderText = "ID";
+ this.dataGridViewTextBoxColumn19.MinimumWidth = 6;
this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
this.dataGridViewTextBoxColumn19.Width = 175;
//
@@ -4639,11 +5174,13 @@ private void InitializeComponent()
//
this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn20.HeaderText = "Attributes";
+ this.dataGridViewTextBoxColumn20.MinimumWidth = 6;
this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
//
// dataGridViewTextBoxColumn21
//
this.dataGridViewTextBoxColumn21.HeaderText = "Value";
+ this.dataGridViewTextBoxColumn21.MinimumWidth = 6;
this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
this.dataGridViewTextBoxColumn21.Width = 250;
//
@@ -4780,12 +5317,14 @@ private void InitializeComponent()
this.dataGridViewIDT.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIDT.Location = new System.Drawing.Point(0, 0);
this.dataGridViewIDT.Name = "dataGridViewIDT";
+ this.dataGridViewIDT.RowHeadersWidth = 51;
this.dataGridViewIDT.Size = new System.Drawing.Size(637, 132);
this.dataGridViewIDT.TabIndex = 0;
//
// Column1
//
this.Column1.HeaderText = "ID";
+ this.Column1.MinimumWidth = 6;
this.Column1.Name = "Column1";
this.Column1.Width = 175;
//
@@ -4793,17 +5332,20 @@ private void InitializeComponent()
//
this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column2.HeaderText = "Attributes";
+ this.Column2.MinimumWidth = 6;
this.Column2.Name = "Column2";
//
// Column3
//
this.Column3.HeaderText = "Value";
+ this.Column3.MinimumWidth = 6;
this.Column3.Name = "Column3";
this.Column3.Width = 250;
//
// toolStrip6
//
this.toolStrip6.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.toolStrip6.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip6.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton6,
this.toolStripButton7,
@@ -4862,57 +5404,58 @@ private void InitializeComponent()
// panel25
//
this.panel25.BackColor = System.Drawing.Color.LightGray;
+ this.panel25.Controls.Add(this.pictureBox3);
+ this.panel25.Controls.Add(this.pictureBox2);
+ this.panel25.Controls.Add(this.pictureBox1);
this.panel25.Controls.Add(this.treeView2);
this.panel25.Controls.Add(this.toolStrip11);
this.panel25.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel25.Location = new System.Drawing.Point(651, 50);
+ this.panel25.Location = new System.Drawing.Point(652, 52);
this.panel25.Margin = new System.Windows.Forms.Padding(0);
this.panel25.Name = "panel25";
- this.panel25.Size = new System.Drawing.Size(200, 586);
+ this.panel25.Size = new System.Drawing.Size(200, 580);
this.panel25.TabIndex = 50;
//
+ // pictureBox3
+ //
+ this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.pictureBox3.Location = new System.Drawing.Point(0, 346);
+ this.pictureBox3.Name = "pictureBox3";
+ this.pictureBox3.Size = new System.Drawing.Size(200, 120);
+ this.pictureBox3.TabIndex = 5;
+ this.pictureBox3.TabStop = false;
+ //
+ // pictureBox2
+ //
+ this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.pictureBox2.Location = new System.Drawing.Point(0, 266);
+ this.pictureBox2.Name = "pictureBox2";
+ this.pictureBox2.Size = new System.Drawing.Size(200, 80);
+ this.pictureBox2.TabIndex = 4;
+ this.pictureBox2.TabStop = false;
+ //
+ // pictureBox1
+ //
+ this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.pictureBox1.Location = new System.Drawing.Point(0, 186);
+ this.pictureBox1.Name = "pictureBox1";
+ this.pictureBox1.Size = new System.Drawing.Size(200, 80);
+ this.pictureBox1.TabIndex = 3;
+ this.pictureBox1.TabStop = false;
+ //
// treeView2
//
this.treeView2.BackColor = System.Drawing.Color.LightGray;
this.treeView2.Dock = System.Windows.Forms.DockStyle.Top;
this.treeView2.Location = new System.Drawing.Point(0, 25);
this.treeView2.Name = "treeView2";
- treeNode1.Name = "Node10";
- treeNode1.Text = "Node10";
- treeNode2.Name = "Node11";
- treeNode2.Text = "Node11";
- treeNode3.Name = "Node6";
- treeNode3.Text = "Node6";
- treeNode4.Name = "Node7";
- treeNode4.Text = "Node7";
- treeNode5.Name = "Node0";
- treeNode5.Text = "Node0";
- treeNode6.Name = "Node8";
- treeNode6.Text = "Node8";
- treeNode7.Name = "Node9";
- treeNode7.Text = "Node9";
- treeNode8.Name = "Node1";
- treeNode8.Text = "Node1";
- treeNode9.Name = "Node2";
- treeNode9.Text = "Node2";
- treeNode10.Name = "Node3";
- treeNode10.Text = "Node3";
- treeNode11.Name = "Node4";
- treeNode11.Text = "Node4";
- treeNode12.Name = "Node5";
- treeNode12.Text = "Node5";
- this.treeView2.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
- treeNode5,
- treeNode8,
- treeNode9,
- treeNode10,
- treeNode11,
- treeNode12});
- this.treeView2.Size = new System.Drawing.Size(200, 230);
+ this.treeView2.Size = new System.Drawing.Size(200, 161);
this.treeView2.TabIndex = 2;
+ this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView2_AfterSelect);
//
// toolStrip11
//
+ this.toolStrip11.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip11.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel10});
this.toolStrip11.Location = new System.Drawing.Point(0, 0);
@@ -4929,6 +5472,7 @@ private void InitializeComponent()
//
// toolStrip5
//
+ this.toolStrip5.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip5.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel4,
this.toolStripSeparator5,
@@ -4938,9 +5482,9 @@ private void InitializeComponent()
this.toolStripSeparator7,
this.versionTextBox,
this.toolStripSeparator13});
- this.toolStrip5.Location = new System.Drawing.Point(0, 25);
+ this.toolStrip5.Location = new System.Drawing.Point(0, 27);
this.toolStrip5.Name = "toolStrip5";
- this.toolStrip5.Size = new System.Drawing.Size(851, 25);
+ this.toolStrip5.Size = new System.Drawing.Size(852, 25);
this.toolStrip5.TabIndex = 49;
this.toolStrip5.Text = "toolStrip5";
//
@@ -4988,6 +5532,7 @@ private void InitializeComponent()
//
// toolStrip4
//
+ this.toolStrip4.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.semanticSystemdrpdwn,
this.toolStripSeparator3,
@@ -5000,20 +5545,20 @@ private void InitializeComponent()
this.generaterAML});
this.toolStrip4.Location = new System.Drawing.Point(0, 0);
this.toolStrip4.Name = "toolStrip4";
- this.toolStrip4.Size = new System.Drawing.Size(851, 25);
+ this.toolStrip4.Size = new System.Drawing.Size(852, 27);
this.toolStrip4.TabIndex = 48;
this.toolStrip4.Text = "toolStrip4";
//
// semanticSystemdrpdwn
//
this.semanticSystemdrpdwn.Name = "semanticSystemdrpdwn";
- this.semanticSystemdrpdwn.Size = new System.Drawing.Size(110, 22);
+ this.semanticSystemdrpdwn.Size = new System.Drawing.Size(110, 24);
this.semanticSystemdrpdwn.Text = "Semantic System";
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
- this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator3.Size = new System.Drawing.Size(6, 27);
//
// semanticSystemCmbx
//
@@ -5022,15 +5567,15 @@ private void InitializeComponent()
"Balluff",
"IEC",
"Daimler",
- "IRDI"});
+ "IEC-CDD"});
this.semanticSystemCmbx.Name = "semanticSystemCmbx";
- this.semanticSystemCmbx.Size = new System.Drawing.Size(121, 25);
+ this.semanticSystemCmbx.Size = new System.Drawing.Size(121, 27);
this.semanticSystemCmbx.Click += new System.EventHandler(this.SemanticSystemCmbx_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
- this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator4.Size = new System.Drawing.Size(6, 27);
//
// addSemanticSystems
//
@@ -5038,14 +5583,14 @@ private void InitializeComponent()
this.addSemanticSystems.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
this.addSemanticSystems.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addSemanticSystems.Name = "addSemanticSystems";
- this.addSemanticSystems.Size = new System.Drawing.Size(23, 22);
+ this.addSemanticSystems.Size = new System.Drawing.Size(24, 24);
this.addSemanticSystems.Text = "addSemanticSystems";
this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
//
// toolStripSeparator15
//
this.toolStripSeparator15.Name = "toolStripSeparator15";
- this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator15.Size = new System.Drawing.Size(6, 27);
//
// cancelSemanticSystem
//
@@ -5053,25 +5598,26 @@ private void InitializeComponent()
this.cancelSemanticSystem.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_abo_kündigen_16;
this.cancelSemanticSystem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cancelSemanticSystem.Name = "cancelSemanticSystem";
- this.cancelSemanticSystem.Size = new System.Drawing.Size(23, 22);
+ this.cancelSemanticSystem.Size = new System.Drawing.Size(24, 24);
this.cancelSemanticSystem.Text = "toolStripButton3";
this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
- this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator8.Size = new System.Drawing.Size(6, 27);
//
// generaterAML
//
this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
this.generaterAML.ImageTransparentColor = System.Drawing.Color.Magenta;
this.generaterAML.Name = "generaterAML";
- this.generaterAML.Size = new System.Drawing.Size(74, 22);
+ this.generaterAML.Size = new System.Drawing.Size(78, 24);
this.generaterAML.Text = "Generate";
//
// statusStrip1
//
+ this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Location = new System.Drawing.Point(0, 735);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
@@ -5082,6 +5628,7 @@ private void InitializeComponent()
//
this.toolStrip3.BackColor = System.Drawing.SystemColors.ControlLight;
this.toolStrip3.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.toolStrip3.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1,
this.toolStripTextBox1});
@@ -5104,9 +5651,16 @@ private void InitializeComponent()
//
// contextMenuStrip1
//
+ this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
+ // imageList1
+ //
+ this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
+ this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
+ this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
+ //
// CreateDevice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -5117,7 +5671,7 @@ private void InitializeComponent()
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.toolStrip3);
this.Controls.Add(this.statusStrip1);
- this.Margin = new System.Windows.Forms.Padding(2);
+ this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "CreateDevice";
this.Size = new System.Drawing.Size(1090, 757);
this.Load += new System.EventHandler(this.CreateDevice_Load);
@@ -5155,6 +5709,31 @@ private void InitializeComponent()
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tabPage5.ResumeLayout(false);
+ this.panel41.ResumeLayout(false);
+ this.panel42.ResumeLayout(false);
+ this.panel42.PerformLayout();
+ this.panel43.ResumeLayout(false);
+ this.tabControl5.ResumeLayout(false);
+ this.tabPage22.ResumeLayout(false);
+ this.tabPage22.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSensingMaterialOrientation)).EndInit();
+ this.toolStrip28.ResumeLayout(false);
+ this.toolStrip28.PerformLayout();
+ this.panel45.ResumeLayout(false);
+ this.panel45.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSensorInterfaceOrienatation)).EndInit();
+ this.toolStrip27.ResumeLayout(false);
+ this.toolStrip27.PerformLayout();
+ this.tabPage23.ResumeLayout(false);
+ this.tabPage23.PerformLayout();
+ this.toolStrip26.ResumeLayout(false);
+ this.toolStrip26.PerformLayout();
+ this.panel44.ResumeLayout(false);
+ this.panel44.PerformLayout();
+ this.toolStrip25.ResumeLayout(false);
+ this.toolStrip25.PerformLayout();
+ this.toolStrip24.ResumeLayout(false);
+ this.toolStrip24.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel4.PerformLayout();
this.panel5.ResumeLayout(false);
@@ -5175,7 +5754,7 @@ private void InitializeComponent()
this.tabPage20.ResumeLayout(false);
this.tabPage20.PerformLayout();
this.panel35.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridViewIRDICableDMI)).EndInit();
this.toolStrip21.ResumeLayout(false);
this.toolStrip21.PerformLayout();
this.panel22.ResumeLayout(false);
@@ -5224,25 +5803,17 @@ private void InitializeComponent()
this.tabPage6.ResumeLayout(false);
this.panel9.ResumeLayout(false);
this.panel14.ResumeLayout(false);
- this.panel18.ResumeLayout(false);
- this.tableLayoutPanel7.ResumeLayout(false);
- this.tableLayoutPanel7.PerformLayout();
- this.panel15.ResumeLayout(false);
- this.panel15.PerformLayout();
- this.panel16.ResumeLayout(false);
- this.panel16.PerformLayout();
- this.panel17.ResumeLayout(false);
- this.panel17.PerformLayout();
+ this.panel14.PerformLayout();
+ this.tableLayoutPanel3.ResumeLayout(false);
+ this.tableLayoutPanel3.PerformLayout();
+ this.toolStrip30.ResumeLayout(false);
+ this.toolStrip30.PerformLayout();
this.panel10.ResumeLayout(false);
- this.panel19.ResumeLayout(false);
- this.tableLayoutPanel6.ResumeLayout(false);
- this.tableLayoutPanel6.PerformLayout();
- this.panel11.ResumeLayout(false);
- this.panel11.PerformLayout();
- this.panel12.ResumeLayout(false);
- this.panel12.PerformLayout();
- this.panel13.ResumeLayout(false);
- this.panel13.PerformLayout();
+ this.panel10.PerformLayout();
+ this.tableLayoutPanel2.ResumeLayout(false);
+ this.tableLayoutPanel2.PerformLayout();
+ this.toolStrip29.ResumeLayout(false);
+ this.toolStrip29.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.panel29.ResumeLayout(false);
this.panel29.PerformLayout();
@@ -5286,6 +5857,9 @@ private void InitializeComponent()
this.toolStrip6.PerformLayout();
this.panel25.ResumeLayout(false);
this.panel25.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.toolStrip11.ResumeLayout(false);
this.toolStrip11.PerformLayout();
this.toolStrip5.ResumeLayout(false);
@@ -5448,43 +6022,7 @@ private void InitializeComponent()
private System.Windows.Forms.TabPage tabPage5;
private System.Windows.Forms.TabPage tabPage6;
private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Panel panel18;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel7;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.TextBox textBox22;
- private System.Windows.Forms.Panel panel16;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.TextBox textBox23;
- private System.Windows.Forms.Panel panel17;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.TextBox textBox24;
- private System.Windows.Forms.Button button10;
private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Panel panel19;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.TextBox textBox19;
- private System.Windows.Forms.Panel panel12;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.TextBox textBox20;
- private System.Windows.Forms.Panel panel13;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.TextBox textBox21;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label25;
@@ -5714,7 +6252,7 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStrip toolStrip19;
private System.Windows.Forms.ToolStripLabel toolStripLabel7;
private System.Windows.Forms.Panel panel35;
- private System.Windows.Forms.DataGridView dataGridView2;
+ private System.Windows.Forms.DataGridView dataGridViewIRDICableDMI;
private System.Windows.Forms.DataGridViewTextBoxColumn Column19;
private System.Windows.Forms.DataGridViewTextBoxColumn Column20;
private System.Windows.Forms.DataGridViewTextBoxColumn Column21;
@@ -5793,5 +6331,87 @@ private void InitializeComponent()
private System.Windows.Forms.DataGridViewTextBoxColumn Column35;
private System.Windows.Forms.DataGridViewTextBoxColumn Column36;
private System.Windows.Forms.DataGridViewTextBoxColumn Column37;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel28;
+ private System.Windows.Forms.Panel panel41;
+ private System.Windows.Forms.Button sensorInterfaceButton;
+ private System.Windows.Forms.ImageList imageList1;
+ private System.Windows.Forms.Panel panel42;
+ private System.Windows.Forms.Panel panel43;
+ private System.Windows.Forms.TabControl tabControl5;
+ private System.Windows.Forms.TabPage tabPage21;
+ private System.Windows.Forms.TabPage tabPage22;
+ private System.Windows.Forms.ToolStrip toolStrip28;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel33;
+ private System.Windows.Forms.Panel panel45;
+ private System.Windows.Forms.ToolStrip toolStrip27;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel32;
+ private System.Windows.Forms.TabPage tabPage23;
+ private System.Windows.Forms.ToolStrip toolStrip26;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel31;
+ private System.Windows.Forms.Panel panel44;
+ private System.Windows.Forms.ToolStrip toolStrip25;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel30;
+ private System.Windows.Forms.ToolStrip toolStrip24;
+ private System.Windows.Forms.ToolStripLabel toolStripLabel29;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator53;
+ private System.Windows.Forms.ToolStripTextBox toolStripTextBox4;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator54;
+ private System.Windows.Forms.ToolStripButton toolStripButton32;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator55;
+ private System.Windows.Forms.ToolStripButton toolStripButton33;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator56;
+ private System.Windows.Forms.ToolStripButton toolStripButton34;
+ private System.Windows.Forms.ToolStripButton toolStripButton35;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator57;
+ private System.Windows.Forms.Panel panel14;
+ private System.Windows.Forms.ToolStrip toolStrip30;
+ private System.Windows.Forms.Button button10;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
+ private System.Windows.Forms.Label label31;
+ private System.Windows.Forms.TextBox addDevicePictureTxtbx;
+ private System.Windows.Forms.Button button6;
+ private System.Windows.Forms.Label label30;
+ private System.Windows.Forms.TextBox addDeviceIconTxtbx;
+ private System.Windows.Forms.Button button5;
+ private System.Windows.Forms.Label label29;
+ private System.Windows.Forms.TextBox addVendorLogoTxtbx;
+ private System.Windows.Forms.Button button4;
+ private System.Windows.Forms.ToolStrip toolStrip29;
+ private System.Windows.Forms.ToolStripButton toolStripButton37;
+ private System.Windows.Forms.ToolStripButton toolStripButton38;
+ private System.Windows.Forms.PictureBox pictureBox1;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
+ private System.Windows.Forms.Label label32;
+ private System.Windows.Forms.TextBox bomTxtbx;
+ private System.Windows.Forms.Button button7;
+ private System.Windows.Forms.Label label33;
+ private System.Windows.Forms.TextBox shortGuideTxtbx;
+ private System.Windows.Forms.Button button8;
+ private System.Windows.Forms.Label label34;
+ private System.Windows.Forms.TextBox DofcTxtbx;
+ private System.Windows.Forms.Button button9;
+ private System.Windows.Forms.ToolStripButton toolStripButton36;
+ private System.Windows.Forms.ToolStripButton toolStripButton39;
+ private System.Windows.Forms.PictureBox pictureBox3;
+ private System.Windows.Forms.PictureBox pictureBox2;
+ private System.Windows.Forms.DataGridView dataGridViewSensingMaterialOrientation;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
+ private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator61;
+ private System.Windows.Forms.ToolStripButton toolStripButton42;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator60;
+ private System.Windows.Forms.ToolStripButton toolStripButton43;
+ private System.Windows.Forms.DataGridView dataGridViewSensorInterfaceOrienatation;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column38;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column39;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column40;
+ private System.Windows.Forms.DataGridViewTextBoxColumn Column41;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator58;
+ private System.Windows.Forms.ToolStripButton toolStripButton40;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator59;
+ private System.Windows.Forms.ToolStripButton toolStripButton41;
+ private System.Windows.Forms.TabPage tabPage24;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index 12ceb38..5bb9ccc 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -7,6 +7,7 @@
using System.Collections.Generic;
+
namespace Aml.Editor.Plugin
{
public partial class CreateDevice
@@ -330,10 +331,7 @@ private void CreateDeviceBtn_Click_1(object sender, EventArgs e)
}
- private void TreeView1_AfterSelect(object sender, TreeViewEventArgs e)
- {
- menuStrip1.Select();
- }
+
private void TxtDeviceName_TextChanged(object sender, EventArgs e)
{
@@ -448,9 +446,9 @@ private void Button33_Click(object sender, EventArgs e)
}
-
-
-
+
+
+
private void AddSemanticSystems_Click(object sender, EventArgs e)
{
@@ -487,10 +485,13 @@ private void AddSemanticSystems_Click(object sender, EventArgs e)
datatables.CreateDataTableWith3Columns(PPD, datatableheadersPPD, dataGridViewPPD);
datatables.CreateDataTableWith3Columns(POD, datatableheadersPOD, dataGridViewPOD);
datatables.CreateDataTableWith3Columns(MD, datatableheadersMD, dataGridViewMD);
- treeViewCH.Nodes.Add("Generic Data");
-
+
+ treeViewCH.Nodes.Add("Generic Data");
+ treeViewCH.Nodes.Add("Interfaces");
+ treeViewCH.Nodes.Add("Field Attachables");
+
if (semanticSystemCmbx.Text == "eClass")
{
treeViewCH.Nodes.Add("Interfaces");
@@ -503,7 +504,7 @@ private void AddSemanticSystems_Click(object sender, EventArgs e)
datatables.CreateDataTableWith3Columns(eClassID, datatableheadereClassID, dataGridViewIDT);
}
- if (semanticSystemCmbx.SelectedText == "IRDI")
+ if (semanticSystemCmbx.SelectedText == "IEC-CDD")
{
DataTable datatableheaderIRDIID = datatables.Parametersdatatable();
@@ -532,6 +533,8 @@ private void ToolStripButton3_Click(object sender, EventArgs e)
dataGridViewPPD.Rows.Clear();
dataGridViewMD.Rows.Clear();
dataGridViewElectricalConnection.Rows.Clear();
+ treeViewCH.Nodes.Clear();
+ treeView2.Nodes.Clear();
}
@@ -552,7 +555,28 @@ private void SemanticSystemCmbx_Click(object sender, EventArgs e)
private void TreeViewCH_AfterSelect(object sender, TreeViewEventArgs e)
{
-
+ if (treeViewCH.SelectedNode.Text == "Generic Data")
+ {
+ treeView2.Nodes.Clear();
+ treeView2.Nodes.Add("Identification Data");
+ treeView2.Nodes.Add("General Technical Data");
+ treeView2.Nodes.Add("Commercial Data");
+ treeView2.EndUpdate();
+ }
+ if (treeViewCH.SelectedNode.Text == "Interfaces")
+ {
+ treeView2.Nodes.Clear();
+ treeView2.Nodes.Add("Electrical Interface");
+ treeView2.Nodes.Add("Sensor Interface");
+ treeView2.EndUpdate();
+ }
+ if (treeViewCH.SelectedNode.Text == "Field Attachables")
+ {
+ treeView2.Nodes.Clear();
+ treeView2.Nodes.Add("Add Logo");
+ treeView2.Nodes.Add("Add Documents");
+ treeView2.EndUpdate();
+ }
}
private void Button2_Click(object sender, EventArgs e)
@@ -594,27 +618,30 @@ private void AddConnector_Click(object sender, EventArgs e)
private void ToolStripButton3_Click_2(object sender, EventArgs e)
{
+ try
+ {
-
- if (pinNumberTxtBx.Text != null)
- {
-
- int countofpins = 0;
- string enteredvalue = pinNumberTxtBx.Text;
- int convertedtonumber = Convert.ToInt32(enteredvalue);
- for (int i = 0; i < convertedtonumber; i++)
+ if (pinNumberTxtBx.Text != null)
{
- dataGridViewPinInfo.Rows.Add();
- dataGridViewPinInfo.Rows[countofpins + i].Cells[0].Value = (1 + i).ToString();
+
+ int countofpins = 0;
+ string enteredvalue = pinNumberTxtBx.Text;
+ int convertedtonumber = Convert.ToInt32(enteredvalue);
+ for (int i = 0; i < convertedtonumber; i++)
+ {
+ dataGridViewPinInfo.Rows.Add();
+ dataGridViewPinInfo.Rows[countofpins + i].Cells[0].Value = (1 + i).ToString();
+ }
}
}
-
- if(pinNumberTxtBx.Text == null)
+ catch (Exception)
{
- MessageBox.Show("Enter valid Number", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
+
+ MessageBox.Show("Enter number of pins", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
+
}
}
@@ -765,18 +792,25 @@ private void ToolStripButton29_Click(object sender, EventArgs e)
private void ToolStripButton20_Click(object sender, EventArgs e)
{
- if (cableLeadsNumberTxtbx.Text != null)
+ try
{
- int countofleads = 0;
- string entredvalue = cableLeadsNumberTxtbx.Text;
- int convertednumber = Convert.ToInt32(entredvalue);
-
- for (int i =0; i< convertednumber;i++)
+ if (cableLeadsNumberTxtbx.Text != null)
{
- dataGridViewIRDICableLeads.Rows.Add();
- dataGridViewIRDICableLeads.Rows[countofleads + i].Cells[1].Value = (i + 1).ToString();
+ int countofleads = 0;
+ string entredvalue = cableLeadsNumberTxtbx.Text;
+ int convertednumber = Convert.ToInt32(entredvalue);
+
+ for (int i = 0; i < convertednumber; i++)
+ {
+ dataGridViewIRDICableLeads.Rows.Add();
+ dataGridViewIRDICableLeads.Rows[countofleads + i].Cells[1].Value = (i + 1).ToString();
+ }
}
}
+ catch (Exception)
+ {
+ MessageBox.Show("Enter number of Leads in a cable", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
}
private void ToolStripButton21_Click(object sender, EventArgs e)
@@ -805,6 +839,133 @@ private void ConnectorStyleCmbx_Click(object sender, EventArgs e)
{
}
+
+ private void ToolStripButton22_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersIRDIDMI = datatables.Parametersdatatable();
+
+ DictionaryIRDI DIRDI = new DictionaryIRDI();
+ Dictionary IRDIDMI = DIRDI.IRDICableDimensionData();
+
+ datatables.CreateDataTableWith4Columns(IRDIDMI, datatableheadersIRDIDMI, dataGridViewIRDICableDMI);
+
+ }
+
+ private void ToolStripButton23_Click(object sender, EventArgs e)
+ {
+ dataGridViewIRDICableDMI.Rows.Clear();
+ }
+
+ private void Button6_Click(object sender, EventArgs e)
+ {
+ AMC.WindowSizeChanger(panel41,sensorInterfaceButton);
+ }
+
+ private void Button4_Click(object sender, EventArgs e)
+ {
+ AMC.OpenFileDialog(addVendorLogoTxtbx, pictureBox1);
+ }
+
+ private void Button5_Click(object sender, EventArgs e)
+ {
+ AMC.OpenFileDialog(addDeviceIconTxtbx, pictureBox2);
+ }
+
+ private void Button6_Click_1(object sender, EventArgs e)
+ {
+ AMC.OpenFileDialog(addDevicePictureTxtbx,pictureBox3);
+ }
+
+ private void Button9_Click(object sender, EventArgs e)
+ {
+ AMC.OpenFileDialog(DofcTxtbx);
+ }
+
+ private void Button8_Click(object sender, EventArgs e)
+ {
+
+ AMC.OpenFileDialog(shortGuideTxtbx);
+ }
+
+ private void Button7_Click(object sender, EventArgs e)
+ {
+ AMC.OpenFileDialog(bomTxtbx);
+ }
+
+ private void ToolStripButton40_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersSensorInterfaceOrientation = datatables.Parametersdatatable();
+
+ DictionarySensorInterface DictSensorInterface = new DictionarySensorInterface();
+ Dictionary SensorInterfaceOrientation = DictSensorInterface.SensorInterfaceOrientationData();
+
+ datatables.CreateDataTableWith4Columns(SensorInterfaceOrientation, datatableheadersSensorInterfaceOrientation, dataGridViewSensorInterfaceOrienatation);
+ }
+
+ private void ToolStripButton41_Click(object sender, EventArgs e)
+ {
+ dataGridViewSensorInterfaceOrienatation.Rows.Clear();
+ }
+
+ private void ToolStripButton42_Click(object sender, EventArgs e)
+ {
+ Datatables datatables = new Datatables();
+ //IRDIEIDI2 = IRDI Electrical Interafce Dimensional Information second data table
+ DataTable datatableheadersSensorMaterialOrientation = datatables.Parametersdatatable();
+
+ DictionarySensorInterface DictSensorInterface = new DictionarySensorInterface();
+ Dictionary SensorMaterialOrientation = DictSensorInterface.SensorInterfaceOrientationData();
+
+ datatables.CreateDataTableWith4Columns(SensorMaterialOrientation, datatableheadersSensorMaterialOrientation, dataGridViewSensingMaterialOrientation);
+ }
+
+ private void ToolStripButton43_Click(object sender, EventArgs e)
+ {
+ dataGridViewSensingMaterialOrientation.Rows.Clear();
+ }
+
+ private void TreeView2_AfterSelect(object sender, TreeViewEventArgs e)
+ {
+ if (treeView2.SelectedNode.Text == "Identification Data")
+ {
+ tabControl2.SelectTab("tabPage2");
+ panel27.Size = panel27.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "General Technical Data")
+ {
+ tabControl2.SelectTab("tabPage2");
+ panel28.Size = panel28.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "Commercial Data")
+ {
+ tabControl2.SelectTab("tabPage2");
+ panel29.Size = panel29.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "Electrical Interface")
+ {
+ tabControl2.SelectTab("tabPage5");
+ panel4.Size = panel4.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "Sensor Interface")
+ {
+ tabControl2.SelectTab("tabPage5");
+ panel41.Size = panel41.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "Add Logo")
+ {
+ tabControl2.SelectTab("tabPage6");
+ panel10.Size = panel10.MaximumSize;
+ }
+ if (treeView2.SelectedNode.Text == "Add Documents")
+ {
+ tabControl2.SelectTab("tabPage6");
+ panel14.Size = panel14.MaximumSize;
+ }
+ }
}
}
diff --git a/CreateDevice.resx b/CreateDevice.resx
index 87f9e28..2507bb8 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -252,70 +252,70 @@
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
- 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
+ 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
- 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
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAa8SURBVHhe7VtbbxtFFLYEiMsTiB/AS0ub3XVLCRIBWgWo
+ gAdQaRGBh6IWAS1SEUJCwAMICHck+sKtBPGAEKUIeEBCwAuFICKyu45za1Nack8gJI7Xazt2fIvtZc76
+ RIntk/E63l3bUj/pU6x45sz59jJzzsyx5yIcRlTdfq3mEx8IqWKnpkpfs7/9gT+l2QV1q366S8oD4TP8
+ D77DNtD2APRFM82FoF/azkS8zUQMdXdLuZAqGZsh9NUUaSCkSG+CTTTfmDD8rZdpqnCYOatSYuyhKMMY
+ Rnf7pThs/QHOBBXhqaAqTtFO28+gKkyyC/1k3S+Ernj3LMriWcpJNxhUW4ZDfeJt6I57mO1tu1JTxS6Y
+ wCjH3CT4oMnCJ1Pd112B7jkLmIzqedc3oiZLg4vqjuvRTWcQVL172WBLpYM3EKNBRbwD3bUXmiI8yJak
+ FDFoQxF8BF/RbXsQUr0dI6qQpQa0jb5dRnjoHvZ3J/19FQRfIZBC92sDW+LuDHRLaWogO6j3tRrJ+S+N
+ fHbZAORXdCM+8RLZthqCz+A7ytgcYMKb6xEi1AB2Ma2fNoWXIjHXRbavhuD7pifGOX/rVeY6Sxi2i9G/
+ DqFcGsmFU6ydt6xfNYRQelNLJKytlEE7uTzzHkrdGGntRzYv3ED2r4IfoSxrgAjPjSAnNv48yuQjE+42
+ 5wrKhhWaWnzirSiPD4ivXQt02J3NLl9AmXysLPUZur+NtmOBEChZyh10n3iMMuAUwwPt7CKcR5l8rMTP
+ GXr/HtKOJSreoyiThpnZuZjVrVL338LucD/K5CObnDTCg3eRdipR622Z4D4Fmup9lOroBvW+m9i7/gfK
+ 5COXmjMiw/eRdipR90mPoNxyhGTJR3VyjSwaTGs/oUw+cpmQETnbQdvhUpRRbjE0WWyhO7hM3w4jFfgG
+ ZfKRz8ZYLHGYtsPhotyyFWWvgX3xVmnDejIx9xnK5COfSxlLfx8jbWxIRXwdZa8BNjDJxnXk8uxxkFhQ
+ ykN+hcUUL5A2aAp+lF0AbD/XsnvrJOOTr8JtRqU85Iz41BukjVJCthjp8V6D8tndN/ft6caNwNjYs+wi
+ ZFAoH4l/PiRtlDKoeO9H+fD+i51Uo0bi0oUj7EFIoEw+kvNfsD78JIolSa+gfPP9P0U1ajRGzx1kr3sU
+ ZfKRWvzeXFEoO0BNEU+ifHYB4PSFaLTK8MDtRvK/z814HMLRejKXDqDEykjrv7CLcCOpKdTb0ofyPZ6A
+ LM2QjRghAYHIq1mRCf/OdJQ/CaAZ5Xs8vF0fmFSaHbHRZ8p0zcvbwijf4+EtgZlID5ppXhQmxWJdsBSi
+ fP4FSOu/opnmRWLu0zJdRReA9wpAcNHsWDr/WJmuoleANwnCro3VXL0RQT3+wKJJsNIyCIcVsbHnTGOp
+ wHd1ZTYxhtIqI/HvCVoPcP0y2CyBUHziRYt5Qd5Ynn6HtLHKokCoGULh5Zl3TWEVkc+aF4qysZ6lofAB
+ qlGjEB5lK4C9gdjo06SNUhYlQ42bDnuN5MJJlMdHPhsnZ3uKZekwoOJE6DbZxJsK/oDy+MivhI3oyMO0
+ HYrrJ8BVQCka2bgOhFOgtP4byuMjl14wImf2kXY2pvgayl5DobaPauwudf/NRiaqojw+sslpIzx0N2mH
+ x0CvsAVlF4N9qZQ2dpN6/26W8o6gPD7gNAlOlSg7PC7KQi/KLQdbGw9RndxgeHAvC3ImUB4fK7EB8zSJ
+ slOJuiodRLnlKByNCZNURycZGb7X8p4DZKdwikTZqUQ20Y9XPCCFCkyqs1OMnNlv5DIayuMjrf3MVodd
+ pB1rFJ9AmRuj8BQ4WxmySniM4YjLCuC0iLfHV4nm8fi3HZegTD50WdjtRoFEfKoT5fEBp0S1lMoUqs69
+ bSjPGtj7coIyZicL8T0PLKmZPU72rYqK+AHKso5CPbCzx2Xw/sOJDgmW9cGpENWvOor9+dEtl6Os6hD0
+ ebc5XSZHJjr5tHkaRLWvhuD7hkGPVThdKAkEsZmoYq4GUCQRHXmIbFcN2SucqrlQchVwdggZFDVQIxJ8
+ DcrCPnTfHjRLsTRjEvY30G17AaXoTs8JtRB2enWf1I7uOgMoL4GggnKgnoT9DLL0xQlA7S0b8ONG+MmM
+ uZOlCO9veqmrBVB+6nSswCPc9aojPLsBuUNIFY64mUUy4eMsdX+8YmbnJsAZKEKEDQfKaTsItmGMhhJO
+ AX6kAPtuUI1VS/xg9u1t6QNbNUd09QJsPwcVaT+bK17WZPEruCiLqjQNP5iGCQwIn+F/IBbaQFvYtw8P
+ 7rwazVyEM/B4/gfNfKdQhgwQzQAAAABJRU5ErkJggg==
@@ -327,6 +327,150 @@
1043, 59
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 911, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ 799, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ 687, 137
+
+
+ 575, 137
+
+
+ 463, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
True
@@ -760,6 +904,72 @@
mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ 1135, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+ 1023, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
@@ -1011,7 +1221,10 @@
277, 59
+
+ 353, 137
+
- 72
+ 25
\ No newline at end of file
diff --git a/CreateInterface.cs b/CreateInterface.cs
index c27ab8e..3621a28 100644
--- a/CreateInterface.cs
+++ b/CreateInterface.cs
@@ -53,11 +53,11 @@ private void createInterfaceBtn_Click(object sender, System.EventArgs e)
interfaceObject.pinList = new List();
- try { interfaceObject.numberOfInterface = Convert.ToInt32(txtInterfaceNumber.Text); } catch (Exception ex) { MessageBox.Show("Vendor ID is in an invalid format (Expected only numbers)!"); return; }
+ try { interfaceObject.numberOfInterface = Convert.ToInt32(txtInterfaceNumber.Text); } catch (Exception ) { MessageBox.Show("Vendor ID is in an invalid format (Expected only numbers)!"); return; }
interfaceObject.interfaceDescription = txtInterfaceDescription.Text;
interfaceObject.connectorType = cmbConnectorType.Text;
if (!String.IsNullOrWhiteSpace(txtPinCount.Text))
- try { interfaceObject.amountPins = Convert.ToInt32(txtPinCount.Text); } catch (Exception ex) { MessageBox.Show("Pin Count is in an invalid format (Expected only numbers)! Ignoring!"); }
+ try { interfaceObject.amountPins = Convert.ToInt32(txtPinCount.Text); } catch (Exception ) { MessageBox.Show("Pin Count is in an invalid format (Expected only numbers)! Ignoring!"); }
// getting the values of the DataGridView and inserting it into the pinList of the object (Interface)
int i = (interfaceObject.amountPins - 1);
diff --git a/Dictionary.cs b/Dictionary.cs
index 94ead44..ae96d50 100644
--- a/Dictionary.cs
+++ b/Dictionary.cs
@@ -157,6 +157,7 @@ public Dictionary eClassIdentificationdataParameters()
}
+ // here "IRDI" is "IEC-CDD"
public class DictionaryIRDI
{
public Dictionary IRDIIdentificationdata()
@@ -533,18 +534,42 @@ public Dictionary IRDIMiscelliniousData()
}
public Dictionary IRDICableDimensionData()
{
- Parameters IRDIFemaleConnectorDimensioneData1 = new Parameters() { ID = 001, Parameter = "BA", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
- Parameters IRDIFemaleConnectorDimensioneData2 = new Parameters() { ID = 002, Parameter = "BB", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
- Parameters IRDIFemaleConnectorDimensioneData3 = new Parameters() { ID = 003, Parameter = "BC", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
- Parameters IRDIFemaleConnectorDimensioneData4 = new Parameters() { ID = 004, Parameter = "BD", RefSemanticPrefix = "", Unit = "mm", Min = "", Nom = "", Max = "" };
-
- Dictionary IRDIFemaleConnectorDimensioneDataParameters = new Dictionary();
- IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData1.ID, IRDIFemaleConnectorDimensioneData1);
- IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData2.ID, IRDIFemaleConnectorDimensioneData2);
- IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData3.ID, IRDIFemaleConnectorDimensioneData3);
- IRDIFemaleConnectorDimensioneDataParameters.Add(IRDIFemaleConnectorDimensioneData4.ID, IRDIFemaleConnectorDimensioneData4);
-
- return IRDIFemaleConnectorDimensioneDataParameters;
+ Parameters IRDICableDimensionData1 = new Parameters() { ID = 001, Parameter = "BA", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDICableDimensionData2 = new Parameters() { ID = 002, Parameter = "BB", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDICableDimensionData3 = new Parameters() { ID = 003, Parameter = "BC", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters IRDICableDimensionData4 = new Parameters() { ID = 004, Parameter = "BD", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+
+ Dictionary IRDICableDimensionDataParameters = new Dictionary();
+ IRDICableDimensionDataParameters.Add(IRDICableDimensionData1.ID, IRDICableDimensionData1);
+ IRDICableDimensionDataParameters.Add(IRDICableDimensionData2.ID, IRDICableDimensionData2);
+ IRDICableDimensionDataParameters.Add(IRDICableDimensionData3.ID, IRDICableDimensionData3);
+ IRDICableDimensionDataParameters.Add(IRDICableDimensionData4.ID, IRDICableDimensionData4);
+
+ return IRDICableDimensionDataParameters;
+ }
+ }
+ public class DictionarySensorInterface
+ {
+ // Orientation of the Sensor Interface and material observed by the sensor is not designated in any Standardisations so this dictionay of Sensor is created based on
+ // Virtual commissioning tool parameters.
+ public Dictionary SensorInterfaceOrientationData()
+ {
+ Parameters SensorInterfaceOrientationData1 = new Parameters() { ID = 001, Parameter = "Translation along (X-axis)", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters SensorInterfaceOrientationData2 = new Parameters() { ID = 002, Parameter = "Translation along (Y-axis)", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters SensorInterfaceOrientationData3 = new Parameters() { ID = 003, Parameter = "Translation along (Z-axis)", RefSemanticPrefix = "", Unit = "mm", Value = "" };
+ Parameters SensorInterfaceOrientationData4 = new Parameters() { ID = 004, Parameter = "Rotation along (X-axis)", RefSemanticPrefix = "", Unit = "degrees", Value = "" };
+ Parameters SensorInterfaceOrientationData5 = new Parameters() { ID = 005, Parameter = "Rotation along (Y-axis)", RefSemanticPrefix = "", Unit = "degrees", Value = "" };
+ Parameters SensorInterfaceOrientationData6 = new Parameters() { ID = 006, Parameter = "Rotation along (Z-axis)", RefSemanticPrefix = "", Unit = "degrees", Value = "" };
+
+ Dictionary SensorInterfaceOrientationDataParameters = new Dictionary();
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData1.ID, SensorInterfaceOrientationData1);
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData2.ID, SensorInterfaceOrientationData2);
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData3.ID, SensorInterfaceOrientationData3);
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData4.ID, SensorInterfaceOrientationData4);
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData5.ID, SensorInterfaceOrientationData5);
+ SensorInterfaceOrientationDataParameters.Add(SensorInterfaceOrientationData6.ID, SensorInterfaceOrientationData6);
+
+ return SensorInterfaceOrientationDataParameters;
}
}
From ac9b4f6409221076eb00e00d319ae9572a578b22 Mon Sep 17 00:00:00 2001
From: RajKumarPulaparthi
<50583292+Rajkumarpulaparthi@users.noreply.github.com>
Date: Wed, 28 Aug 2019 10:23:35 +0200
Subject: [PATCH 08/34] Tree view update 2
---
CreateDevice.Designer.cs | 1647 +++++++++++++++++++----------------
CreateDevice.cs | 1 +
CreateDevice.resx | 258 +++---
ModellingWizard.csproj | 55 ++
ModellingWizard.csproj.user | 10 +
pdf viewer.Designer.cs | 159 ++++
pdf viewer.cs | 25 +
pdf viewer.resx | 195 +++++
8 files changed, 1489 insertions(+), 861 deletions(-)
create mode 100644 pdf viewer.Designer.cs
create mode 100644 pdf viewer.cs
create mode 100644 pdf viewer.resx
diff --git a/CreateDevice.Designer.cs b/CreateDevice.Designer.cs
index b69372a..76c80ba 100644
--- a/CreateDevice.Designer.cs
+++ b/CreateDevice.Designer.cs
@@ -160,10 +160,10 @@ private void InitializeComponent()
this.label28 = new System.Windows.Forms.Label();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.panel3 = new System.Windows.Forms.Panel();
- this.panel23 = new System.Windows.Forms.Panel();
- this.button29 = new System.Windows.Forms.Button();
- this.button30 = new System.Windows.Forms.Button();
- this.button31 = new System.Windows.Forms.Button();
+ this.toolStrip31 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButton44 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton45 = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButton46 = new System.Windows.Forms.ToolStripButton();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label39 = new System.Windows.Forms.Label();
this.label38 = new System.Windows.Forms.Label();
@@ -416,7 +416,6 @@ private void InitializeComponent()
this.interfacecollection = new System.Windows.Forms.ToolStripDropDownButton();
this.button2 = new System.Windows.Forms.Button();
this.tabPage6 = new System.Windows.Forms.TabPage();
- this.panel9 = new System.Windows.Forms.Panel();
this.panel14 = new System.Windows.Forms.Panel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label32 = new System.Windows.Forms.Label();
@@ -587,7 +586,7 @@ private void InitializeComponent()
this.tabPage3.SuspendLayout();
this.tabPage4.SuspendLayout();
this.panel3.SuspendLayout();
- this.panel23.SuspendLayout();
+ this.toolStrip31.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tabPage5.SuspendLayout();
this.panel41.SuspendLayout();
@@ -649,7 +648,6 @@ private void InitializeComponent()
this.toolStrip22.SuspendLayout();
this.toolStrip13.SuspendLayout();
this.tabPage6.SuspendLayout();
- this.panel9.SuspendLayout();
this.panel14.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.toolStrip30.SuspendLayout();
@@ -736,7 +734,7 @@ private void InitializeComponent()
this.helpToolStripButton});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(1090, 27);
+ this.toolStrip1.Size = new System.Drawing.Size(1453, 27);
this.toolStrip1.TabIndex = 43;
this.toolStrip1.Text = "toolStrip1";
//
@@ -746,7 +744,7 @@ private void InitializeComponent()
this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.newToolStripButton.Name = "newToolStripButton";
- this.newToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.newToolStripButton.Size = new System.Drawing.Size(29, 24);
this.newToolStripButton.Text = "&New";
//
// openToolStripButton
@@ -755,7 +753,7 @@ private void InitializeComponent()
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.openToolStripButton.Name = "openToolStripButton";
- this.openToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.openToolStripButton.Size = new System.Drawing.Size(29, 24);
this.openToolStripButton.Text = "&Open";
//
// saveToolStripButton
@@ -764,7 +762,7 @@ private void InitializeComponent()
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.saveToolStripButton.Name = "saveToolStripButton";
- this.saveToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.saveToolStripButton.Size = new System.Drawing.Size(29, 24);
this.saveToolStripButton.Text = "&Save";
this.saveToolStripButton.Click += new System.EventHandler(this.SaveToolStripButton_Click);
//
@@ -774,7 +772,7 @@ private void InitializeComponent()
this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.printToolStripButton.Name = "printToolStripButton";
- this.printToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.printToolStripButton.Size = new System.Drawing.Size(29, 24);
this.printToolStripButton.Text = "&Print";
//
// toolStripSeparator
@@ -788,7 +786,7 @@ private void InitializeComponent()
this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cutToolStripButton.Name = "cutToolStripButton";
- this.cutToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.cutToolStripButton.Size = new System.Drawing.Size(29, 24);
this.cutToolStripButton.Text = "C&ut";
//
// copyToolStripButton
@@ -797,7 +795,7 @@ private void InitializeComponent()
this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.copyToolStripButton.Name = "copyToolStripButton";
- this.copyToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.copyToolStripButton.Size = new System.Drawing.Size(29, 24);
this.copyToolStripButton.Text = "&Copy";
//
// pasteToolStripButton
@@ -806,7 +804,7 @@ private void InitializeComponent()
this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.pasteToolStripButton.Name = "pasteToolStripButton";
- this.pasteToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.pasteToolStripButton.Size = new System.Drawing.Size(29, 24);
this.pasteToolStripButton.Text = "&Paste";
//
// toolStripSeparator1
@@ -820,7 +818,7 @@ private void InitializeComponent()
this.helpToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("helpToolStripButton.Image")));
this.helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.helpToolStripButton.Name = "helpToolStripButton";
- this.helpToolStripButton.Size = new System.Drawing.Size(24, 24);
+ this.helpToolStripButton.Size = new System.Drawing.Size(29, 24);
this.helpToolStripButton.Text = "He&lp";
//
// toolStrip2
@@ -833,7 +831,7 @@ private void InitializeComponent()
this.toolStripButton2});
this.toolStrip2.Location = new System.Drawing.Point(0, 27);
this.toolStrip2.Name = "toolStrip2";
- this.toolStrip2.Size = new System.Drawing.Size(1090, 27);
+ this.toolStrip2.Size = new System.Drawing.Size(1453, 27);
this.toolStrip2.TabIndex = 44;
this.toolStrip2.Text = "toolStrip2";
//
@@ -843,7 +841,7 @@ private void InitializeComponent()
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
- this.toolStripButton1.Size = new System.Drawing.Size(24, 24);
+ this.toolStripButton1.Size = new System.Drawing.Size(29, 24);
this.toolStripButton1.Text = "toolStripButton1";
this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
//
@@ -858,7 +856,7 @@ private void InitializeComponent()
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
- this.toolStripButton2.Size = new System.Drawing.Size(24, 24);
+ this.toolStripButton2.Size = new System.Drawing.Size(29, 24);
this.toolStripButton2.Text = "toolStripButton2";
//
// menuStrip1
@@ -869,7 +867,8 @@ private void InitializeComponent()
this.automationComponentToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(1090, 24);
+ this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
+ this.menuStrip1.Size = new System.Drawing.Size(1453, 28);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuStrip1_ItemClicked);
@@ -887,7 +886,7 @@ private void InitializeComponent()
this.safetyToolStripMenuItem,
this.sensorsToolStripMenuItem});
this.automationComponentToolStripMenuItem.Name = "automationComponentToolStripMenuItem";
- this.automationComponentToolStripMenuItem.Size = new System.Drawing.Size(150, 20);
+ this.automationComponentToolStripMenuItem.Size = new System.Drawing.Size(184, 24);
this.automationComponentToolStripMenuItem.Text = "Automation Component";
//
// accessoriesToolStripMenuItem
@@ -899,37 +898,37 @@ private void InitializeComponent()
this.reflectorsFibersOpticsToolStripMenuItem,
this.signalConvertersAndCommunicationAdaptersToolStripMenuItem});
this.accessoriesToolStripMenuItem.Name = "accessoriesToolStripMenuItem";
- this.accessoriesToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.accessoriesToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.accessoriesToolStripMenuItem.Text = "Accessories";
//
// fasteningTechnologyToolStripMenuItem
//
this.fasteningTechnologyToolStripMenuItem.Name = "fasteningTechnologyToolStripMenuItem";
- this.fasteningTechnologyToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.fasteningTechnologyToolStripMenuItem.Size = new System.Drawing.Size(409, 26);
this.fasteningTechnologyToolStripMenuItem.Text = "Fastening technology";
//
// lightsToolStripMenuItem
//
this.lightsToolStripMenuItem.Name = "lightsToolStripMenuItem";
- this.lightsToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.lightsToolStripMenuItem.Size = new System.Drawing.Size(409, 26);
this.lightsToolStripMenuItem.Text = "Lights ";
//
// mechanicalProtectionToolStripMenuItem
//
this.mechanicalProtectionToolStripMenuItem.Name = "mechanicalProtectionToolStripMenuItem";
- this.mechanicalProtectionToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.mechanicalProtectionToolStripMenuItem.Size = new System.Drawing.Size(409, 26);
this.mechanicalProtectionToolStripMenuItem.Text = "Mechanical Protection";
//
// reflectorsFibersOpticsToolStripMenuItem
//
this.reflectorsFibersOpticsToolStripMenuItem.Name = "reflectorsFibersOpticsToolStripMenuItem";
- this.reflectorsFibersOpticsToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.reflectorsFibersOpticsToolStripMenuItem.Size = new System.Drawing.Size(409, 26);
this.reflectorsFibersOpticsToolStripMenuItem.Text = "Reflectors, Fibers, Optics";
//
// signalConvertersAndCommunicationAdaptersToolStripMenuItem
//
this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Name = "signalConvertersAndCommunicationAdaptersToolStripMenuItem";
- this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Size = new System.Drawing.Size(329, 22);
+ this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Size = new System.Drawing.Size(409, 26);
this.signalConvertersAndCommunicationAdaptersToolStripMenuItem.Text = "Signal Converters and Communication Adapters";
//
// connectivityToolStripMenuItem
@@ -946,67 +945,67 @@ private void InitializeComponent()
this.tSplittersToolStripMenuItem,
this.ySplittersToolStripMenuItem});
this.connectivityToolStripMenuItem.Name = "connectivityToolStripMenuItem";
- this.connectivityToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.connectivityToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.connectivityToolStripMenuItem.Text = "Connectivity";
//
// adaptersToolStripMenuItem
//
this.adaptersToolStripMenuItem.Name = "adaptersToolStripMenuItem";
- this.adaptersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.adaptersToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.adaptersToolStripMenuItem.Text = "Adapters";
//
// bulkheadConnectorsToolStripMenuItem
//
this.bulkheadConnectorsToolStripMenuItem.Name = "bulkheadConnectorsToolStripMenuItem";
- this.bulkheadConnectorsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.bulkheadConnectorsToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.bulkheadConnectorsToolStripMenuItem.Text = "Bulkhead Connectors";
//
// doubleEndedCordsetsToolStripMenuItem
//
this.doubleEndedCordsetsToolStripMenuItem.Name = "doubleEndedCordsetsToolStripMenuItem";
- this.doubleEndedCordsetsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.doubleEndedCordsetsToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.doubleEndedCordsetsToolStripMenuItem.Text = "Double-Ended Cordsets";
//
// fieldAttachablesToolStripMenuItem
//
this.fieldAttachablesToolStripMenuItem.Name = "fieldAttachablesToolStripMenuItem";
- this.fieldAttachablesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.fieldAttachablesToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.fieldAttachablesToolStripMenuItem.Text = "Field Attachables";
//
// passiveInterfcesToolStripMenuItem
//
this.passiveInterfcesToolStripMenuItem.Name = "passiveInterfcesToolStripMenuItem";
- this.passiveInterfcesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.passiveInterfcesToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.passiveInterfcesToolStripMenuItem.Text = "Passive Interfaces";
//
// receptaclesToolStripMenuItem
//
this.receptaclesToolStripMenuItem.Name = "receptaclesToolStripMenuItem";
- this.receptaclesToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.receptaclesToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.receptaclesToolStripMenuItem.Text = "Receptacles";
//
// singleEndedCordestsToolStripMenuItem
//
this.singleEndedCordestsToolStripMenuItem.Name = "singleEndedCordestsToolStripMenuItem";
- this.singleEndedCordestsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.singleEndedCordestsToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.singleEndedCordestsToolStripMenuItem.Text = "Single-Ended cordests";
//
// terminatingResistorsToolStripMenuItem
//
this.terminatingResistorsToolStripMenuItem.Name = "terminatingResistorsToolStripMenuItem";
- this.terminatingResistorsToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.terminatingResistorsToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.terminatingResistorsToolStripMenuItem.Text = "Terminating Resistors";
//
// tSplittersToolStripMenuItem
//
this.tSplittersToolStripMenuItem.Name = "tSplittersToolStripMenuItem";
- this.tSplittersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.tSplittersToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.tSplittersToolStripMenuItem.Text = "T-Splitters";
//
// ySplittersToolStripMenuItem
//
this.ySplittersToolStripMenuItem.Name = "ySplittersToolStripMenuItem";
- this.ySplittersToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
+ this.ySplittersToolStripMenuItem.Size = new System.Drawing.Size(250, 26);
this.ySplittersToolStripMenuItem.Text = "Y-Splitters";
//
// hMIToolStripMenuItem
@@ -1016,25 +1015,25 @@ private void InitializeComponent()
this.industrialControllersToolStripMenuItem,
this.smartLightLEDStackLightsToolStripMenuItem});
this.hMIToolStripMenuItem.Name = "hMIToolStripMenuItem";
- this.hMIToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.hMIToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.hMIToolStripMenuItem.Text = "HMI";
//
// displaysToolStripMenuItem
//
this.displaysToolStripMenuItem.Name = "displaysToolStripMenuItem";
- this.displaysToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.displaysToolStripMenuItem.Size = new System.Drawing.Size(273, 26);
this.displaysToolStripMenuItem.Text = "Displays";
//
// industrialControllersToolStripMenuItem
//
this.industrialControllersToolStripMenuItem.Name = "industrialControllersToolStripMenuItem";
- this.industrialControllersToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.industrialControllersToolStripMenuItem.Size = new System.Drawing.Size(273, 26);
this.industrialControllersToolStripMenuItem.Text = "Industrial Controllers";
//
// smartLightLEDStackLightsToolStripMenuItem
//
this.smartLightLEDStackLightsToolStripMenuItem.Name = "smartLightLEDStackLightsToolStripMenuItem";
- this.smartLightLEDStackLightsToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
+ this.smartLightLEDStackLightsToolStripMenuItem.Size = new System.Drawing.Size(273, 26);
this.smartLightLEDStackLightsToolStripMenuItem.Text = "SmartLight-LED stack lights";
//
// industrialNetworkingToolStripMenuItem
@@ -1046,37 +1045,37 @@ private void InitializeComponent()
this.networkBlocksToolStripMenuItem,
this.switchesToolStripMenuItem});
this.industrialNetworkingToolStripMenuItem.Name = "industrialNetworkingToolStripMenuItem";
- this.industrialNetworkingToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.industrialNetworkingToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.industrialNetworkingToolStripMenuItem.Text = "Industrial Networking";
//
// iOModulesToolStripMenuItem
//
this.iOModulesToolStripMenuItem.Name = "iOModulesToolStripMenuItem";
- this.iOModulesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.iOModulesToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
this.iOModulesToolStripMenuItem.Text = "I/O modules";
//
// inductiveCouplersToolStripMenuItem
//
this.inductiveCouplersToolStripMenuItem.Name = "inductiveCouplersToolStripMenuItem";
- this.inductiveCouplersToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.inductiveCouplersToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
this.inductiveCouplersToolStripMenuItem.Text = "Inductive couplers";
//
// memoryModulesToolStripMenuItem
//
this.memoryModulesToolStripMenuItem.Name = "memoryModulesToolStripMenuItem";
- this.memoryModulesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.memoryModulesToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
this.memoryModulesToolStripMenuItem.Text = "Memory modules";
//
// networkBlocksToolStripMenuItem
//
this.networkBlocksToolStripMenuItem.Name = "networkBlocksToolStripMenuItem";
- this.networkBlocksToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.networkBlocksToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
this.networkBlocksToolStripMenuItem.Text = "Network blocks";
//
// switchesToolStripMenuItem
//
this.switchesToolStripMenuItem.Name = "switchesToolStripMenuItem";
- this.switchesToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
+ this.switchesToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
this.switchesToolStripMenuItem.Text = "Switches";
//
// machineVisionAndOpticalDetectionToolStripMenuItem
@@ -1085,38 +1084,38 @@ private void InitializeComponent()
this.machineVisionToolStripMenuItem,
this.opticalIdentificationToolStripMenuItem});
this.machineVisionAndOpticalDetectionToolStripMenuItem.Name = "machineVisionAndOpticalDetectionToolStripMenuItem";
- this.machineVisionAndOpticalDetectionToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.machineVisionAndOpticalDetectionToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.machineVisionAndOpticalDetectionToolStripMenuItem.Text = "Machine Vision and Optical detection";
this.machineVisionAndOpticalDetectionToolStripMenuItem.Click += new System.EventHandler(this.MachineVisionAndOpticalDetectionToolStripMenuItem_Click);
//
// machineVisionToolStripMenuItem
//
this.machineVisionToolStripMenuItem.Name = "machineVisionToolStripMenuItem";
- this.machineVisionToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
+ this.machineVisionToolStripMenuItem.Size = new System.Drawing.Size(232, 26);
this.machineVisionToolStripMenuItem.Text = "Machine Vision";
//
// opticalIdentificationToolStripMenuItem
//
this.opticalIdentificationToolStripMenuItem.Name = "opticalIdentificationToolStripMenuItem";
- this.opticalIdentificationToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
+ this.opticalIdentificationToolStripMenuItem.Size = new System.Drawing.Size(232, 26);
this.opticalIdentificationToolStripMenuItem.Text = "Optical Identification";
//
// powerSupplyToolStripMenuItem
//
this.powerSupplyToolStripMenuItem.Name = "powerSupplyToolStripMenuItem";
- this.powerSupplyToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.powerSupplyToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.powerSupplyToolStripMenuItem.Text = "Power Supply";
//
// rFIDToolStripMenuItem
//
this.rFIDToolStripMenuItem.Name = "rFIDToolStripMenuItem";
- this.rFIDToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.rFIDToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.rFIDToolStripMenuItem.Text = "RFID";
//
// safetyToolStripMenuItem
//
this.safetyToolStripMenuItem.Name = "safetyToolStripMenuItem";
- this.safetyToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.safetyToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.safetyToolStripMenuItem.Text = "Safety";
//
// sensorsToolStripMenuItem
@@ -1136,85 +1135,85 @@ private void InitializeComponent()
this.temperatureSensorsToolStripMenuItem,
this.ultrasonicSensorsToolStripMenuItem});
this.sensorsToolStripMenuItem.Name = "sensorsToolStripMenuItem";
- this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(272, 22);
+ this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(340, 26);
this.sensorsToolStripMenuItem.Text = "Sensors";
//
// capacitiveSensorsToolStripMenuItem
//
this.capacitiveSensorsToolStripMenuItem.Name = "capacitiveSensorsToolStripMenuItem";
- this.capacitiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.capacitiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.capacitiveSensorsToolStripMenuItem.Text = "Capacitive Sensors";
//
// flowSensorsToolStripMenuItem
//
this.flowSensorsToolStripMenuItem.Name = "flowSensorsToolStripMenuItem";
- this.flowSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.flowSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.flowSensorsToolStripMenuItem.Text = "FlowSensors";
//
// inclinationSensorsToolStripMenuItem
//
this.inclinationSensorsToolStripMenuItem.Name = "inclinationSensorsToolStripMenuItem";
- this.inclinationSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.inclinationSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.inclinationSensorsToolStripMenuItem.Text = "Inclination Sensors";
//
// inductiveSensorsToolStripMenuItem
//
this.inductiveSensorsToolStripMenuItem.Name = "inductiveSensorsToolStripMenuItem";
- this.inductiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.inductiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.inductiveSensorsToolStripMenuItem.Text = "Inductive Sensors";
//
// magneticFieldSensorsToolStripMenuItem
//
this.magneticFieldSensorsToolStripMenuItem.Name = "magneticFieldSensorsToolStripMenuItem";
- this.magneticFieldSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magneticFieldSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.magneticFieldSensorsToolStripMenuItem.Text = "Magnetic Field Sensors";
//
// magneticallyCodedSensorsToolStripMenuItem
//
this.magneticallyCodedSensorsToolStripMenuItem.Name = "magneticallyCodedSensorsToolStripMenuItem";
- this.magneticallyCodedSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magneticallyCodedSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.magneticallyCodedSensorsToolStripMenuItem.Text = "Magnetically coded Sensors";
//
// magnetostrictiveSensorsToolStripMenuItem
//
this.magnetostrictiveSensorsToolStripMenuItem.Name = "magnetostrictiveSensorsToolStripMenuItem";
- this.magnetostrictiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.magnetostrictiveSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.magnetostrictiveSensorsToolStripMenuItem.Text = "Magnetostrictive Sensors";
//
// mechanicalCamSensorsToolStripMenuItem
//
this.mechanicalCamSensorsToolStripMenuItem.Name = "mechanicalCamSensorsToolStripMenuItem";
- this.mechanicalCamSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.mechanicalCamSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.mechanicalCamSensorsToolStripMenuItem.Text = "Mechanical cam Sensors";
//
// microwaveSensorsToolStripMenuItem
//
this.microwaveSensorsToolStripMenuItem.Name = "microwaveSensorsToolStripMenuItem";
- this.microwaveSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.microwaveSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.microwaveSensorsToolStripMenuItem.Text = "Microwave Sensors";
//
// photoelectricSensorsToolStripMenuItem
//
this.photoelectricSensorsToolStripMenuItem.Name = "photoelectricSensorsToolStripMenuItem";
- this.photoelectricSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.photoelectricSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.photoelectricSensorsToolStripMenuItem.Text = "Photoelectric Sensors";
//
// pressureSensorsToolStripMenuItem
//
this.pressureSensorsToolStripMenuItem.Name = "pressureSensorsToolStripMenuItem";
- this.pressureSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.pressureSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.pressureSensorsToolStripMenuItem.Text = "Pressure Sensors";
//
// temperatureSensorsToolStripMenuItem
//
this.temperatureSensorsToolStripMenuItem.Name = "temperatureSensorsToolStripMenuItem";
- this.temperatureSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.temperatureSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.temperatureSensorsToolStripMenuItem.Text = "Temperature Sensors";
//
// ultrasonicSensorsToolStripMenuItem
//
this.ultrasonicSensorsToolStripMenuItem.Name = "ultrasonicSensorsToolStripMenuItem";
- this.ultrasonicSensorsToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
+ this.ultrasonicSensorsToolStripMenuItem.Size = new System.Drawing.Size(277, 26);
this.ultrasonicSensorsToolStripMenuItem.Text = "Ultrasonic Sensors";
//
// panel1
@@ -1225,13 +1224,13 @@ private void InitializeComponent()
this.panel1.Location = new System.Drawing.Point(0, 54);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1090, 656);
+ this.panel1.Size = new System.Drawing.Size(1453, 829);
this.panel1.TabIndex = 45;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 24);
+ this.splitContainer1.Location = new System.Drawing.Point(0, 28);
this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
this.splitContainer1.Name = "splitContainer1";
//
@@ -1247,8 +1246,9 @@ private void InitializeComponent()
this.splitContainer1.Panel2.Controls.Add(this.panel25);
this.splitContainer1.Panel2.Controls.Add(this.toolStrip5);
this.splitContainer1.Panel2.Controls.Add(this.toolStrip4);
- this.splitContainer1.Size = new System.Drawing.Size(1090, 632);
- this.splitContainer1.SplitterDistance = 234;
+ this.splitContainer1.Size = new System.Drawing.Size(1453, 801);
+ this.splitContainer1.SplitterDistance = 303;
+ this.splitContainer1.SplitterWidth = 5;
this.splitContainer1.TabIndex = 48;
this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.SplitContainer1_SplitterMoved);
//
@@ -1257,9 +1257,10 @@ private void InitializeComponent()
this.panel31.Controls.Add(this.treeViewCH);
this.panel31.Controls.Add(this.toolStrip9);
this.panel31.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel31.Location = new System.Drawing.Point(0, 25);
+ this.panel31.Location = new System.Drawing.Point(0, 31);
+ this.panel31.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel31.Name = "panel31";
- this.panel31.Size = new System.Drawing.Size(234, 280);
+ this.panel31.Size = new System.Drawing.Size(303, 345);
this.panel31.TabIndex = 1;
//
// treeViewCH
@@ -1267,8 +1268,9 @@ private void InitializeComponent()
this.treeViewCH.BackColor = System.Drawing.Color.LightGray;
this.treeViewCH.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeViewCH.Location = new System.Drawing.Point(0, 25);
+ this.treeViewCH.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.treeViewCH.Name = "treeViewCH";
- this.treeViewCH.Size = new System.Drawing.Size(234, 255);
+ this.treeViewCH.Size = new System.Drawing.Size(303, 320);
this.treeViewCH.TabIndex = 1;
this.treeViewCH.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeViewCH_AfterSelect);
//
@@ -1280,7 +1282,7 @@ private void InitializeComponent()
this.toolStripLabel28});
this.toolStrip9.Location = new System.Drawing.Point(0, 0);
this.toolStrip9.Name = "toolStrip9";
- this.toolStrip9.Size = new System.Drawing.Size(234, 25);
+ this.toolStrip9.Size = new System.Drawing.Size(303, 25);
this.toolStrip9.TabIndex = 0;
this.toolStrip9.Text = "toolStrip9";
//
@@ -1292,7 +1294,7 @@ private void InitializeComponent()
// toolStripLabel28
//
this.toolStripLabel28.Name = "toolStripLabel28";
- this.toolStripLabel28.Size = new System.Drawing.Size(71, 22);
+ this.toolStripLabel28.Size = new System.Drawing.Size(87, 22);
this.toolStripLabel28.Text = "Component";
//
// panel30
@@ -1302,7 +1304,7 @@ private void InitializeComponent()
this.panel30.Location = new System.Drawing.Point(0, 0);
this.panel30.Margin = new System.Windows.Forms.Padding(0);
this.panel30.Name = "panel30";
- this.panel30.Size = new System.Drawing.Size(234, 25);
+ this.panel30.Size = new System.Drawing.Size(303, 31);
this.panel30.TabIndex = 0;
//
// toolStrip10
@@ -1312,23 +1314,24 @@ private void InitializeComponent()
this.toolStripLabel9});
this.toolStrip10.Location = new System.Drawing.Point(0, 0);
this.toolStrip10.Name = "toolStrip10";
- this.toolStrip10.Size = new System.Drawing.Size(234, 25);
+ this.toolStrip10.Size = new System.Drawing.Size(303, 25);
this.toolStrip10.TabIndex = 0;
this.toolStrip10.Text = "toolStrip10";
//
// toolStripLabel9
//
this.toolStripLabel9.Name = "toolStripLabel9";
- this.toolStripLabel9.Size = new System.Drawing.Size(125, 22);
+ this.toolStripLabel9.Size = new System.Drawing.Size(154, 22);
this.toolStripLabel9.Text = "Component Hierarchy";
//
// panel26
//
this.panel26.Controls.Add(this.tabControl2);
this.panel26.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel26.Location = new System.Drawing.Point(0, 52);
+ this.panel26.Location = new System.Drawing.Point(0, 55);
+ this.panel26.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel26.Name = "panel26";
- this.panel26.Size = new System.Drawing.Size(652, 580);
+ this.panel26.Size = new System.Drawing.Size(878, 746);
this.panel26.TabIndex = 51;
//
// tabControl2
@@ -1344,16 +1347,17 @@ private void InitializeComponent()
this.tabControl2.Margin = new System.Windows.Forms.Padding(0);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
- this.tabControl2.Size = new System.Drawing.Size(652, 580);
+ this.tabControl2.Size = new System.Drawing.Size(878, 746);
this.tabControl2.TabIndex = 47;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.panel2);
- this.tabPage1.Location = new System.Drawing.Point(4, 22);
+ this.tabPage1.Location = new System.Drawing.Point(4, 25);
+ this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage1.Size = new System.Drawing.Size(644, 554);
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage1.Size = new System.Drawing.Size(870, 717);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Identification data";
this.tabPage1.UseVisualStyleBackColor = true;
@@ -1399,26 +1403,29 @@ private void InitializeComponent()
this.panel2.Controls.Add(this.label11);
this.panel2.Controls.Add(this.label12);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(3, 3);
+ this.panel2.Location = new System.Drawing.Point(4, 4);
+ this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(638, 548);
+ this.panel2.Size = new System.Drawing.Size(862, 709);
this.panel2.TabIndex = 0;
//
// label2
//
this.label2.AutoSize = true;
this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label2.Location = new System.Drawing.Point(133, 138);
+ this.label2.Location = new System.Drawing.Point(177, 170);
+ this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(58, 13);
+ this.label2.Size = new System.Drawing.Size(75, 17);
this.label2.TabIndex = 83;
this.label2.Text = "Vendor ID:";
//
// txtVendorId
//
- this.txtVendorId.Location = new System.Drawing.Point(206, 135);
+ this.txtVendorId.Location = new System.Drawing.Point(275, 166);
+ this.txtVendorId.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtVendorId.Name = "txtVendorId";
- this.txtVendorId.Size = new System.Drawing.Size(100, 20);
+ this.txtVendorId.Size = new System.Drawing.Size(132, 22);
this.txtVendorId.TabIndex = 85;
//
// label3
@@ -1426,26 +1433,29 @@ private void InitializeComponent()
this.label3.AutoSize = true;
this.label3.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.Location = new System.Drawing.Point(375, 106);
+ this.label3.Location = new System.Drawing.Point(500, 130);
+ this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(87, 13);
+ this.label3.Size = new System.Drawing.Size(111, 17);
this.label3.TabIndex = 87;
this.label3.Text = "Vendor Name:";
//
// txtVendorName
//
- this.txtVendorName.Location = new System.Drawing.Point(467, 103);
+ this.txtVendorName.Location = new System.Drawing.Point(623, 127);
+ this.txtVendorName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtVendorName.Name = "txtVendorName";
- this.txtVendorName.Size = new System.Drawing.Size(125, 20);
+ this.txtVendorName.Size = new System.Drawing.Size(165, 22);
this.txtVendorName.TabIndex = 84;
//
// label18
//
this.label18.AutoSize = true;
this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label18.Location = new System.Drawing.Point(437, 394);
+ this.label18.Location = new System.Drawing.Point(583, 485);
+ this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(143, 13);
+ this.label18.Size = new System.Drawing.Size(183, 17);
this.label18.TabIndex = 118;
this.label18.Text = "Optional Classifications:";
//
@@ -1453,32 +1463,36 @@ private void InitializeComponent()
//
this.label4.AutoSize = true;
this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label4.Location = new System.Drawing.Point(133, 169);
+ this.label4.Location = new System.Drawing.Point(177, 208);
+ this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(58, 13);
+ this.label4.Size = new System.Drawing.Size(72, 17);
this.label4.TabIndex = 89;
this.label4.Text = "Device ID:";
//
// productTxtBox
//
- this.productTxtBox.Location = new System.Drawing.Point(120, 366);
+ this.productTxtBox.Location = new System.Drawing.Point(160, 450);
+ this.productTxtBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.productTxtBox.Name = "productTxtBox";
- this.productTxtBox.Size = new System.Drawing.Size(306, 188);
+ this.productTxtBox.Size = new System.Drawing.Size(407, 230);
this.productTxtBox.TabIndex = 94;
this.productTxtBox.Text = "";
//
// txtDeviceId
//
- this.txtDeviceId.Location = new System.Drawing.Point(206, 166);
+ this.txtDeviceId.Location = new System.Drawing.Point(275, 204);
+ this.txtDeviceId.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtDeviceId.Name = "txtDeviceId";
- this.txtDeviceId.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceId.Size = new System.Drawing.Size(132, 22);
this.txtDeviceId.TabIndex = 86;
//
// hwRelTxt
//
- this.hwRelTxt.Location = new System.Drawing.Point(467, 135);
+ this.hwRelTxt.Location = new System.Drawing.Point(623, 166);
+ this.hwRelTxt.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.hwRelTxt.Name = "hwRelTxt";
- this.hwRelTxt.Size = new System.Drawing.Size(125, 20);
+ this.hwRelTxt.Size = new System.Drawing.Size(165, 22);
this.hwRelTxt.TabIndex = 95;
//
// label5
@@ -1486,33 +1500,37 @@ private void InitializeComponent()
this.label5.AutoSize = true;
this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.Location = new System.Drawing.Point(116, 106);
+ this.label5.Location = new System.Drawing.Point(155, 130);
+ this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(87, 13);
+ this.label5.Size = new System.Drawing.Size(108, 17);
this.label5.TabIndex = 92;
this.label5.Text = "Device Name:";
//
// swRelTxt
//
- this.swRelTxt.Location = new System.Drawing.Point(467, 167);
+ this.swRelTxt.Location = new System.Drawing.Point(623, 206);
+ this.swRelTxt.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.swRelTxt.Name = "swRelTxt";
- this.swRelTxt.Size = new System.Drawing.Size(125, 20);
+ this.swRelTxt.Size = new System.Drawing.Size(165, 22);
this.swRelTxt.TabIndex = 97;
//
// txtDeviceName
//
- this.txtDeviceName.Location = new System.Drawing.Point(206, 103);
+ this.txtDeviceName.Location = new System.Drawing.Point(275, 127);
+ this.txtDeviceName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtDeviceName.Name = "txtDeviceName";
- this.txtDeviceName.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceName.Size = new System.Drawing.Size(132, 22);
this.txtDeviceName.TabIndex = 82;
this.txtDeviceName.TextChanged += new System.EventHandler(this.TxtDeviceName_TextChanged);
//
// backBtn
//
this.backBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.backBtn.Location = new System.Drawing.Point(120, 560);
+ this.backBtn.Location = new System.Drawing.Point(160, 689);
+ this.backBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.backBtn.Name = "backBtn";
- this.backBtn.Size = new System.Drawing.Size(52, 23);
+ this.backBtn.Size = new System.Drawing.Size(69, 28);
this.backBtn.TabIndex = 114;
this.backBtn.Text = "Back";
this.backBtn.UseVisualStyleBackColor = true;
@@ -1522,9 +1540,10 @@ private void InitializeComponent()
//
this.label6.AutoSize = true;
this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label6.Location = new System.Drawing.Point(115, 206);
+ this.label6.Location = new System.Drawing.Point(153, 254);
+ this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(76, 13);
+ this.label6.Size = new System.Drawing.Size(99, 17);
this.label6.TabIndex = 96;
this.label6.Text = "Device Family:";
//
@@ -1533,17 +1552,19 @@ private void InitializeComponent()
this.label17.AutoSize = true;
this.label17.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label17.Location = new System.Drawing.Point(320, 205);
+ this.label17.Location = new System.Drawing.Point(427, 252);
+ this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(141, 13);
+ this.label17.Size = new System.Drawing.Size(186, 17);
this.label17.TabIndex = 117;
this.label17.Text = "Communication Technology:";
//
// txtDeviceFamily
//
- this.txtDeviceFamily.Location = new System.Drawing.Point(206, 203);
+ this.txtDeviceFamily.Location = new System.Drawing.Point(275, 250);
+ this.txtDeviceFamily.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtDeviceFamily.Name = "txtDeviceFamily";
- this.txtDeviceFamily.Size = new System.Drawing.Size(100, 20);
+ this.txtDeviceFamily.Size = new System.Drawing.Size(132, 22);
this.txtDeviceFamily.TabIndex = 88;
//
// deviceTypeListBox
@@ -1554,28 +1575,31 @@ private void InitializeComponent()
this.deviceTypeListBox.Items.AddRange(new object[] {
"IO-Link",
"ProfinetIO"});
- this.deviceTypeListBox.Location = new System.Drawing.Point(467, 202);
+ this.deviceTypeListBox.Location = new System.Drawing.Point(623, 249);
+ this.deviceTypeListBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.deviceTypeListBox.MaxDropDownItems = 2;
this.deviceTypeListBox.Name = "deviceTypeListBox";
- this.deviceTypeListBox.Size = new System.Drawing.Size(125, 21);
+ this.deviceTypeListBox.Size = new System.Drawing.Size(165, 24);
this.deviceTypeListBox.TabIndex = 99;
//
// label7
//
this.label7.AutoSize = true;
this.label7.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label7.Location = new System.Drawing.Point(117, 240);
+ this.label7.Location = new System.Drawing.Point(156, 295);
+ this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(78, 13);
+ this.label7.Size = new System.Drawing.Size(102, 17);
this.label7.TabIndex = 98;
this.label7.Text = "Product Name:";
//
// createDeviceBtn
//
this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.createDeviceBtn.Location = new System.Drawing.Point(522, 560);
+ this.createDeviceBtn.Location = new System.Drawing.Point(696, 689);
+ this.createDeviceBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.createDeviceBtn.Name = "createDeviceBtn";
- this.createDeviceBtn.Size = new System.Drawing.Size(97, 23);
+ this.createDeviceBtn.Size = new System.Drawing.Size(129, 28);
this.createDeviceBtn.TabIndex = 113;
this.createDeviceBtn.Text = "Create Device";
this.createDeviceBtn.UseVisualStyleBackColor = true;
@@ -1583,25 +1607,28 @@ private void InitializeComponent()
//
// txtProductName
//
- this.txtProductName.Location = new System.Drawing.Point(206, 237);
+ this.txtProductName.Location = new System.Drawing.Point(275, 292);
+ this.txtProductName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtProductName.Name = "txtProductName";
- this.txtProductName.Size = new System.Drawing.Size(100, 20);
+ this.txtProductName.Size = new System.Drawing.Size(132, 22);
this.txtProductName.TabIndex = 90;
//
// txtOrderNumber
//
- this.txtOrderNumber.Location = new System.Drawing.Point(206, 270);
+ this.txtOrderNumber.Location = new System.Drawing.Point(275, 332);
+ this.txtOrderNumber.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtOrderNumber.Name = "txtOrderNumber";
- this.txtOrderNumber.Size = new System.Drawing.Size(100, 20);
+ this.txtOrderNumber.Size = new System.Drawing.Size(132, 22);
this.txtOrderNumber.TabIndex = 91;
//
// label8
//
this.label8.AutoSize = true;
this.label8.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label8.Location = new System.Drawing.Point(119, 341);
+ this.label8.Location = new System.Drawing.Point(159, 420);
+ this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(71, 13);
+ this.label8.Size = new System.Drawing.Size(92, 17);
this.label8.TabIndex = 101;
this.label8.Text = "Product Text:";
//
@@ -1609,18 +1636,20 @@ private void InitializeComponent()
//
this.label16.AutoSize = true;
this.label16.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label16.Location = new System.Drawing.Point(119, 272);
+ this.label16.Location = new System.Drawing.Point(159, 335);
+ this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(76, 13);
+ this.label16.Size = new System.Drawing.Size(103, 17);
this.label16.TabIndex = 116;
this.label16.Text = "Order Number:";
//
// openDeviceIconBtn
//
this.openDeviceIconBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDeviceIconBtn.Location = new System.Drawing.Point(467, 272);
+ this.openDeviceIconBtn.Location = new System.Drawing.Point(623, 335);
+ this.openDeviceIconBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.openDeviceIconBtn.Name = "openDeviceIconBtn";
- this.openDeviceIconBtn.Size = new System.Drawing.Size(125, 23);
+ this.openDeviceIconBtn.Size = new System.Drawing.Size(167, 28);
this.openDeviceIconBtn.TabIndex = 102;
this.openDeviceIconBtn.Text = "Add Device Icon";
this.openDeviceIconBtn.UseVisualStyleBackColor = true;
@@ -1629,9 +1658,10 @@ private void InitializeComponent()
//
this.label15.AutoSize = true;
this.label15.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label15.Location = new System.Drawing.Point(509, 475);
+ this.label15.Location = new System.Drawing.Point(679, 585);
+ this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(30, 13);
+ this.label15.Size = new System.Drawing.Size(37, 17);
this.label15.TabIndex = 115;
this.label15.Text = "Max:";
//
@@ -1639,59 +1669,66 @@ private void InitializeComponent()
//
this.label9.AutoSize = true;
this.label9.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label9.Location = new System.Drawing.Point(101, 307);
+ this.label9.Location = new System.Drawing.Point(135, 378);
+ this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(99, 13);
+ this.label9.Size = new System.Drawing.Size(131, 17);
this.label9.TabIndex = 106;
this.label9.Text = "Vendor Homepage:";
//
// txtMaxTemp
//
- this.txtMaxTemp.Location = new System.Drawing.Point(545, 472);
+ this.txtMaxTemp.Location = new System.Drawing.Point(727, 581);
+ this.txtMaxTemp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtMaxTemp.Name = "txtMaxTemp";
- this.txtMaxTemp.Size = new System.Drawing.Size(47, 20);
+ this.txtMaxTemp.Size = new System.Drawing.Size(61, 22);
this.txtMaxTemp.TabIndex = 105;
//
// txtVendorHomepage
//
- this.txtVendorHomepage.Location = new System.Drawing.Point(206, 304);
+ this.txtVendorHomepage.Location = new System.Drawing.Point(275, 374);
+ this.txtVendorHomepage.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtVendorHomepage.Name = "txtVendorHomepage";
- this.txtVendorHomepage.Size = new System.Drawing.Size(146, 20);
+ this.txtVendorHomepage.Size = new System.Drawing.Size(193, 22);
this.txtVendorHomepage.TabIndex = 93;
//
// label14
//
this.label14.AutoSize = true;
this.label14.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label14.Location = new System.Drawing.Point(509, 449);
+ this.label14.Location = new System.Drawing.Point(679, 553);
+ this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(27, 13);
+ this.label14.Size = new System.Drawing.Size(34, 17);
this.label14.TabIndex = 112;
this.label14.Text = "Min:";
//
// openDevicePicture
//
this.openDevicePicture.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openDevicePicture.Location = new System.Drawing.Point(467, 304);
+ this.openDevicePicture.Location = new System.Drawing.Point(623, 374);
+ this.openDevicePicture.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.openDevicePicture.Name = "openDevicePicture";
- this.openDevicePicture.Size = new System.Drawing.Size(125, 23);
+ this.openDevicePicture.Size = new System.Drawing.Size(167, 28);
this.openDevicePicture.TabIndex = 103;
this.openDevicePicture.Text = "Add Device Picture";
this.openDevicePicture.UseVisualStyleBackColor = true;
//
// txtMinTemp
//
- this.txtMinTemp.Location = new System.Drawing.Point(545, 446);
+ this.txtMinTemp.Location = new System.Drawing.Point(727, 549);
+ this.txtMinTemp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtMinTemp.Name = "txtMinTemp";
- this.txtMinTemp.Size = new System.Drawing.Size(47, 20);
+ this.txtMinTemp.Size = new System.Drawing.Size(61, 22);
this.txtMinTemp.TabIndex = 104;
//
// openVendorLogoBtn
//
this.openVendorLogoBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.openVendorLogoBtn.Location = new System.Drawing.Point(467, 238);
+ this.openVendorLogoBtn.Location = new System.Drawing.Point(623, 293);
+ this.openVendorLogoBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.openVendorLogoBtn.Name = "openVendorLogoBtn";
- this.openVendorLogoBtn.Size = new System.Drawing.Size(125, 23);
+ this.openVendorLogoBtn.Size = new System.Drawing.Size(167, 28);
this.openVendorLogoBtn.TabIndex = 100;
this.openVendorLogoBtn.Text = "Add Vendor Logo\r\n";
this.openVendorLogoBtn.UseVisualStyleBackColor = true;
@@ -1700,9 +1737,10 @@ private void InitializeComponent()
//
this.label13.AutoSize = true;
this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label13.Location = new System.Drawing.Point(437, 421);
+ this.label13.Location = new System.Drawing.Point(583, 518);
+ this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(155, 13);
+ this.label13.Size = new System.Drawing.Size(210, 17);
this.label13.TabIndex = 111;
this.label13.Text = "Operating ambient temperature:";
//
@@ -1710,26 +1748,29 @@ private void InitializeComponent()
//
this.label10.AutoSize = true;
this.label10.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label10.Location = new System.Drawing.Point(363, 138);
+ this.label10.Location = new System.Drawing.Point(484, 170);
+ this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(98, 13);
+ this.label10.Size = new System.Drawing.Size(129, 17);
this.label10.TabIndex = 108;
this.label10.Text = "Hardware Release:";
//
// txtIpProduction
//
- this.txtIpProduction.Location = new System.Drawing.Point(545, 508);
+ this.txtIpProduction.Location = new System.Drawing.Point(727, 625);
+ this.txtIpProduction.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtIpProduction.Name = "txtIpProduction";
- this.txtIpProduction.Size = new System.Drawing.Size(47, 20);
+ this.txtIpProduction.Size = new System.Drawing.Size(61, 22);
this.txtIpProduction.TabIndex = 107;
//
// label11
//
this.label11.AutoSize = true;
this.label11.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label11.Location = new System.Drawing.Point(363, 170);
+ this.label11.Location = new System.Drawing.Point(484, 209);
+ this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(94, 13);
+ this.label11.Size = new System.Drawing.Size(123, 17);
this.label11.TabIndex = 109;
this.label11.Text = "Software Release:";
//
@@ -1737,9 +1778,10 @@ private void InitializeComponent()
//
this.label12.AutoSize = true;
this.label12.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label12.Location = new System.Drawing.Point(468, 511);
+ this.label12.Location = new System.Drawing.Point(624, 629);
+ this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(71, 13);
+ this.label12.Size = new System.Drawing.Size(92, 17);
this.label12.TabIndex = 110;
this.label12.Text = "IP Protection:";
//
@@ -1753,11 +1795,11 @@ private void InitializeComponent()
this.tabPage3.Controls.Add(this.label26);
this.tabPage3.Controls.Add(this.label27);
this.tabPage3.Controls.Add(this.label28);
- this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Location = new System.Drawing.Point(4, 25);
this.tabPage3.Margin = new System.Windows.Forms.Padding(0);
this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage3.Size = new System.Drawing.Size(643, 586);
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage3.Size = new System.Drawing.Size(869, 676);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Classification data";
this.tabPage3.UseVisualStyleBackColor = true;
@@ -1766,9 +1808,10 @@ private void InitializeComponent()
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.Location = new System.Drawing.Point(286, 250);
+ this.label1.Location = new System.Drawing.Point(381, 308);
+ this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(143, 13);
+ this.label1.Size = new System.Drawing.Size(183, 17);
this.label1.TabIndex = 126;
this.label1.Text = "Optional Classifications:";
//
@@ -1776,40 +1819,45 @@ private void InitializeComponent()
//
this.label25.AutoSize = true;
this.label25.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label25.Location = new System.Drawing.Point(358, 331);
+ this.label25.Location = new System.Drawing.Point(477, 407);
+ this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(30, 13);
+ this.label25.Size = new System.Drawing.Size(37, 17);
this.label25.TabIndex = 125;
this.label25.Text = "Max:";
//
// textBox1
//
- this.textBox1.Location = new System.Drawing.Point(394, 328);
+ this.textBox1.Location = new System.Drawing.Point(525, 404);
+ this.textBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(47, 20);
+ this.textBox1.Size = new System.Drawing.Size(61, 22);
this.textBox1.TabIndex = 120;
//
// textBox2
//
- this.textBox2.Location = new System.Drawing.Point(394, 302);
+ this.textBox2.Location = new System.Drawing.Point(525, 372);
+ this.textBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(47, 20);
+ this.textBox2.Size = new System.Drawing.Size(61, 22);
this.textBox2.TabIndex = 119;
//
// textBox3
//
- this.textBox3.Location = new System.Drawing.Point(394, 364);
+ this.textBox3.Location = new System.Drawing.Point(525, 448);
+ this.textBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(47, 20);
+ this.textBox3.Size = new System.Drawing.Size(61, 22);
this.textBox3.TabIndex = 121;
//
// label26
//
this.label26.AutoSize = true;
this.label26.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label26.Location = new System.Drawing.Point(358, 305);
+ this.label26.Location = new System.Drawing.Point(477, 375);
+ this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(27, 13);
+ this.label26.Size = new System.Drawing.Size(34, 17);
this.label26.TabIndex = 124;
this.label26.Text = "Min:";
//
@@ -1817,9 +1865,10 @@ private void InitializeComponent()
//
this.label27.AutoSize = true;
this.label27.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label27.Location = new System.Drawing.Point(286, 277);
+ this.label27.Location = new System.Drawing.Point(381, 341);
+ this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(155, 13);
+ this.label27.Size = new System.Drawing.Size(210, 17);
this.label27.TabIndex = 123;
this.label27.Text = "Operating ambient temperature:";
//
@@ -1827,9 +1876,10 @@ private void InitializeComponent()
//
this.label28.AutoSize = true;
this.label28.FlatStyle = System.Windows.Forms.FlatStyle.System;
- this.label28.Location = new System.Drawing.Point(317, 367);
+ this.label28.Location = new System.Drawing.Point(423, 452);
+ this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(71, 13);
+ this.label28.Size = new System.Drawing.Size(92, 17);
this.label28.TabIndex = 122;
this.label28.Text = "IP Protection:";
//
@@ -1838,70 +1888,71 @@ private void InitializeComponent()
this.tabPage4.AutoScroll = true;
this.tabPage4.BackColor = System.Drawing.Color.LightGray;
this.tabPage4.Controls.Add(this.panel3);
- this.tabPage4.Location = new System.Drawing.Point(4, 22);
+ this.tabPage4.Location = new System.Drawing.Point(4, 25);
+ this.tabPage4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(643, 586);
+ this.tabPage4.Size = new System.Drawing.Size(869, 676);
this.tabPage4.TabIndex = 8;
this.tabPage4.Text = "Identification data 1";
//
// panel3
//
- this.panel3.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel3.Controls.Add(this.panel23);
+ this.panel3.BackColor = System.Drawing.Color.LightGray;
+ this.panel3.Controls.Add(this.toolStrip31);
this.panel3.Controls.Add(this.tableLayoutPanel1);
- this.panel3.Location = new System.Drawing.Point(56, 33);
- this.panel3.Margin = new System.Windows.Forms.Padding(10, 10, 10, 10);
+ this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel3.Location = new System.Drawing.Point(0, 0);
+ this.panel3.Margin = new System.Windows.Forms.Padding(13, 12, 13, 12);
this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(700, 500);
+ this.panel3.Size = new System.Drawing.Size(869, 615);
this.panel3.TabIndex = 0;
//
- // panel23
- //
- this.panel23.BackColor = System.Drawing.Color.WhiteSmoke;
- this.panel23.Controls.Add(this.button29);
- this.panel23.Controls.Add(this.button30);
- this.panel23.Controls.Add(this.button31);
- this.panel23.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel23.Location = new System.Drawing.Point(0, 419);
- this.panel23.Name = "panel23";
- this.panel23.Size = new System.Drawing.Size(700, 25);
- this.panel23.TabIndex = 3;
- //
- // button29
- //
- this.button29.BackColor = System.Drawing.Color.Silver;
- this.button29.Dock = System.Windows.Forms.DockStyle.Right;
- this.button29.Location = new System.Drawing.Point(475, 0);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(75, 25);
- this.button29.TabIndex = 2;
- this.button29.Text = "Add ";
- this.button29.UseVisualStyleBackColor = false;
- //
- // button30
- //
- this.button30.BackColor = System.Drawing.Color.Silver;
- this.button30.Dock = System.Windows.Forms.DockStyle.Right;
- this.button30.Location = new System.Drawing.Point(550, 0);
- this.button30.Name = "button30";
- this.button30.Size = new System.Drawing.Size(75, 25);
- this.button30.TabIndex = 1;
- this.button30.Text = "Clear";
- this.button30.UseVisualStyleBackColor = false;
- //
- // button31
- //
- this.button31.BackColor = System.Drawing.Color.Silver;
- this.button31.Dock = System.Windows.Forms.DockStyle.Right;
- this.button31.Location = new System.Drawing.Point(625, 0);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(75, 25);
- this.button31.TabIndex = 0;
- this.button31.Text = "Cancel";
- this.button31.UseVisualStyleBackColor = false;
+ // toolStrip31
+ //
+ this.toolStrip31.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.toolStrip31.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripButton44,
+ this.toolStripButton45,
+ this.toolStripButton46});
+ this.toolStrip31.Location = new System.Drawing.Point(0, 0);
+ this.toolStrip31.Name = "toolStrip31";
+ this.toolStrip31.Size = new System.Drawing.Size(869, 27);
+ this.toolStrip31.TabIndex = 1;
+ this.toolStrip31.Text = "toolStrip31";
+ //
+ // toolStripButton44
+ //
+ this.toolStripButton44.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton44.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton44.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton44.Image")));
+ this.toolStripButton44.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton44.Name = "toolStripButton44";
+ this.toolStripButton44.Size = new System.Drawing.Size(57, 24);
+ this.toolStripButton44.Text = "Cancel";
+ //
+ // toolStripButton45
+ //
+ this.toolStripButton45.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton45.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton45.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton45.Image")));
+ this.toolStripButton45.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton45.Name = "toolStripButton45";
+ this.toolStripButton45.Size = new System.Drawing.Size(47, 24);
+ this.toolStripButton45.Text = "Clear";
+ //
+ // toolStripButton46
+ //
+ this.toolStripButton46.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
+ this.toolStripButton46.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.toolStripButton46.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton46.Image")));
+ this.toolStripButton46.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.toolStripButton46.Name = "toolStripButton46";
+ this.toolStripButton46.Size = new System.Drawing.Size(41, 24);
+ this.toolStripButton46.Text = "Add";
//
// tableLayoutPanel1
//
+ this.tableLayoutPanel1.BackColor = System.Drawing.Color.LightGray;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 23.41598F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 76.58402F));
@@ -1927,33 +1978,34 @@ private void InitializeComponent()
this.tableLayoutPanel1.Controls.Add(this.label19, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.richTextBox1, 1, 10);
this.tableLayoutPanel1.Controls.Add(this.comboBox2, 1, 9);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 11;
+ this.tableLayoutPanel1.RowCount = 12;
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 108F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 88F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(700, 419);
+ this.tableLayoutPanel1.Size = new System.Drawing.Size(869, 615);
this.tableLayoutPanel1.TabIndex = 0;
//
// label39
//
this.label39.AutoSize = true;
this.label39.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label39.Location = new System.Drawing.Point(10, 248);
- this.label39.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label39.Location = new System.Drawing.Point(13, 307);
+ this.label39.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(150, 171);
+ this.label39.Size = new System.Drawing.Size(186, 108);
this.label39.TabIndex = 21;
this.label39.Text = "Product Text:";
this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -1962,10 +2014,10 @@ private void InitializeComponent()
//
this.label38.AutoSize = true;
this.label38.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label38.Location = new System.Drawing.Point(10, 225);
- this.label38.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label38.Location = new System.Drawing.Point(13, 279);
+ this.label38.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(150, 23);
+ this.label38.Size = new System.Drawing.Size(186, 28);
this.label38.TabIndex = 19;
this.label38.Text = "Communication Technology:";
this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -1973,20 +2025,20 @@ private void InitializeComponent()
// textBox15
//
this.textBox15.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox15.Location = new System.Drawing.Point(163, 200);
+ this.textBox15.Location = new System.Drawing.Point(203, 248);
this.textBox15.Margin = new System.Windows.Forms.Padding(0);
this.textBox15.Name = "textBox15";
- this.textBox15.Size = new System.Drawing.Size(200, 20);
+ this.textBox15.Size = new System.Drawing.Size(265, 22);
this.textBox15.TabIndex = 18;
//
// label37
//
this.label37.AutoSize = true;
this.label37.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label37.Location = new System.Drawing.Point(10, 200);
- this.label37.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label37.Location = new System.Drawing.Point(13, 248);
+ this.label37.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(150, 25);
+ this.label37.Size = new System.Drawing.Size(186, 31);
this.label37.TabIndex = 17;
this.label37.Text = "Vendor Homepage:";
this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -1994,20 +2046,20 @@ private void InitializeComponent()
// textBox14
//
this.textBox14.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox14.Location = new System.Drawing.Point(163, 175);
+ this.textBox14.Location = new System.Drawing.Point(203, 217);
this.textBox14.Margin = new System.Windows.Forms.Padding(0);
this.textBox14.Name = "textBox14";
- this.textBox14.Size = new System.Drawing.Size(200, 20);
+ this.textBox14.Size = new System.Drawing.Size(265, 22);
this.textBox14.TabIndex = 16;
//
// label36
//
this.label36.AutoSize = true;
this.label36.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label36.Location = new System.Drawing.Point(10, 175);
- this.label36.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label36.Location = new System.Drawing.Point(13, 217);
+ this.label36.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(150, 25);
+ this.label36.Size = new System.Drawing.Size(186, 31);
this.label36.TabIndex = 15;
this.label36.Text = "Order Number:";
this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2015,20 +2067,20 @@ private void InitializeComponent()
// textBox13
//
this.textBox13.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox13.Location = new System.Drawing.Point(163, 150);
+ this.textBox13.Location = new System.Drawing.Point(203, 186);
this.textBox13.Margin = new System.Windows.Forms.Padding(0);
this.textBox13.Name = "textBox13";
- this.textBox13.Size = new System.Drawing.Size(200, 20);
+ this.textBox13.Size = new System.Drawing.Size(265, 22);
this.textBox13.TabIndex = 14;
//
// label35
//
this.label35.AutoSize = true;
this.label35.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label35.Location = new System.Drawing.Point(10, 150);
- this.label35.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label35.Location = new System.Drawing.Point(13, 186);
+ this.label35.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(150, 25);
+ this.label35.Size = new System.Drawing.Size(186, 31);
this.label35.TabIndex = 13;
this.label35.Text = "Product Name:";
this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2036,20 +2088,20 @@ private void InitializeComponent()
// textBox12
//
this.textBox12.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox12.Location = new System.Drawing.Point(163, 125);
+ this.textBox12.Location = new System.Drawing.Point(203, 155);
this.textBox12.Margin = new System.Windows.Forms.Padding(0);
this.textBox12.Name = "textBox12";
- this.textBox12.Size = new System.Drawing.Size(200, 20);
+ this.textBox12.Size = new System.Drawing.Size(265, 22);
this.textBox12.TabIndex = 12;
//
// label24
//
this.label24.AutoSize = true;
this.label24.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label24.Location = new System.Drawing.Point(10, 125);
- this.label24.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label24.Location = new System.Drawing.Point(13, 155);
+ this.label24.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(150, 25);
+ this.label24.Size = new System.Drawing.Size(186, 31);
this.label24.TabIndex = 11;
this.label24.Text = "Software Release:";
this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2057,20 +2109,20 @@ private void InitializeComponent()
// textBox11
//
this.textBox11.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox11.Location = new System.Drawing.Point(163, 100);
+ this.textBox11.Location = new System.Drawing.Point(203, 124);
this.textBox11.Margin = new System.Windows.Forms.Padding(0);
this.textBox11.Name = "textBox11";
- this.textBox11.Size = new System.Drawing.Size(200, 20);
+ this.textBox11.Size = new System.Drawing.Size(265, 22);
this.textBox11.TabIndex = 10;
//
// label23
//
this.label23.AutoSize = true;
this.label23.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label23.Location = new System.Drawing.Point(10, 100);
- this.label23.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label23.Location = new System.Drawing.Point(13, 124);
+ this.label23.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(150, 25);
+ this.label23.Size = new System.Drawing.Size(186, 31);
this.label23.TabIndex = 9;
this.label23.Text = "Hardware Release:";
this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2079,20 +2131,20 @@ private void InitializeComponent()
// textBox10
//
this.textBox10.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox10.Location = new System.Drawing.Point(163, 75);
+ this.textBox10.Location = new System.Drawing.Point(203, 93);
this.textBox10.Margin = new System.Windows.Forms.Padding(0);
this.textBox10.Name = "textBox10";
- this.textBox10.Size = new System.Drawing.Size(200, 20);
+ this.textBox10.Size = new System.Drawing.Size(265, 22);
this.textBox10.TabIndex = 8;
//
// label22
//
this.label22.AutoSize = true;
this.label22.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label22.Location = new System.Drawing.Point(10, 75);
- this.label22.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label22.Location = new System.Drawing.Point(13, 93);
+ this.label22.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(150, 25);
+ this.label22.Size = new System.Drawing.Size(186, 31);
this.label22.TabIndex = 7;
this.label22.Text = "Vendor ID:";
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2101,10 +2153,10 @@ private void InitializeComponent()
//
this.label20.AutoSize = true;
this.label20.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label20.Location = new System.Drawing.Point(10, 25);
- this.label20.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label20.Location = new System.Drawing.Point(13, 31);
+ this.label20.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(150, 25);
+ this.label20.Size = new System.Drawing.Size(186, 31);
this.label20.TabIndex = 6;
this.label20.Text = "Vendor Name:";
this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2112,20 +2164,20 @@ private void InitializeComponent()
// textBox9
//
this.textBox9.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox9.Location = new System.Drawing.Point(163, 50);
+ this.textBox9.Location = new System.Drawing.Point(203, 62);
this.textBox9.Margin = new System.Windows.Forms.Padding(0);
this.textBox9.Name = "textBox9";
- this.textBox9.Size = new System.Drawing.Size(200, 20);
+ this.textBox9.Size = new System.Drawing.Size(265, 22);
this.textBox9.TabIndex = 5;
//
// label21
//
this.label21.AutoSize = true;
this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label21.Location = new System.Drawing.Point(10, 50);
- this.label21.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label21.Location = new System.Drawing.Point(13, 62);
+ this.label21.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(150, 25);
+ this.label21.Size = new System.Drawing.Size(186, 31);
this.label21.TabIndex = 4;
this.label21.Text = "Device ID:";
this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2133,29 +2185,29 @@ private void InitializeComponent()
// textBox8
//
this.textBox8.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox8.Location = new System.Drawing.Point(163, 25);
+ this.textBox8.Location = new System.Drawing.Point(203, 31);
this.textBox8.Margin = new System.Windows.Forms.Padding(0);
this.textBox8.Name = "textBox8";
- this.textBox8.Size = new System.Drawing.Size(200, 20);
+ this.textBox8.Size = new System.Drawing.Size(265, 22);
this.textBox8.TabIndex = 3;
//
// textBox7
//
this.textBox7.Dock = System.Windows.Forms.DockStyle.Left;
- this.textBox7.Location = new System.Drawing.Point(163, 0);
+ this.textBox7.Location = new System.Drawing.Point(203, 0);
this.textBox7.Margin = new System.Windows.Forms.Padding(0);
this.textBox7.Name = "textBox7";
- this.textBox7.Size = new System.Drawing.Size(200, 20);
+ this.textBox7.Size = new System.Drawing.Size(265, 22);
this.textBox7.TabIndex = 0;
//
// label19
//
this.label19.AutoSize = true;
this.label19.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label19.Location = new System.Drawing.Point(10, 0);
- this.label19.Margin = new System.Windows.Forms.Padding(10, 0, 3, 0);
+ this.label19.Location = new System.Drawing.Point(13, 0);
+ this.label19.Margin = new System.Windows.Forms.Padding(13, 0, 4, 0);
this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(150, 25);
+ this.label19.Size = new System.Drawing.Size(186, 31);
this.label19.TabIndex = 1;
this.label19.Text = "Device Name:";
this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -2163,10 +2215,10 @@ private void InitializeComponent()
//
// richTextBox1
//
- this.richTextBox1.Location = new System.Drawing.Point(163, 248);
+ this.richTextBox1.Location = new System.Drawing.Point(203, 307);
this.richTextBox1.Margin = new System.Windows.Forms.Padding(0);
this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(350, 135);
+ this.richTextBox1.Size = new System.Drawing.Size(465, 107);
this.richTextBox1.TabIndex = 22;
this.richTextBox1.Text = "";
//
@@ -2177,10 +2229,10 @@ private void InitializeComponent()
this.comboBox2.Items.AddRange(new object[] {
"IO-Link",
"ProfinetIO"});
- this.comboBox2.Location = new System.Drawing.Point(163, 225);
+ this.comboBox2.Location = new System.Drawing.Point(203, 279);
this.comboBox2.Margin = new System.Windows.Forms.Padding(0);
this.comboBox2.Name = "comboBox2";
- this.comboBox2.Size = new System.Drawing.Size(200, 21);
+ this.comboBox2.Size = new System.Drawing.Size(265, 24);
this.comboBox2.TabIndex = 23;
//
// tabPage5
@@ -2189,11 +2241,11 @@ private void InitializeComponent()
this.tabPage5.BackColor = System.Drawing.Color.LightGray;
this.tabPage5.Controls.Add(this.panel41);
this.tabPage5.Controls.Add(this.panel4);
- this.tabPage5.Location = new System.Drawing.Point(4, 22);
+ this.tabPage5.Location = new System.Drawing.Point(4, 25);
this.tabPage5.Margin = new System.Windows.Forms.Padding(0);
this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage5.Size = new System.Drawing.Size(644, 554);
+ this.tabPage5.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage5.Size = new System.Drawing.Size(869, 676);
this.tabPage5.TabIndex = 9;
this.tabPage5.Text = "Interfaces ";
this.tabPage5.Click += new System.EventHandler(this.TabPage5_Click);
@@ -2203,11 +2255,12 @@ private void InitializeComponent()
this.panel41.Controls.Add(this.panel42);
this.panel41.Controls.Add(this.sensorInterfaceButton);
this.panel41.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel41.Location = new System.Drawing.Point(3, 26);
- this.panel41.MaximumSize = new System.Drawing.Size(637, 450);
- this.panel41.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel41.Location = new System.Drawing.Point(4, 32);
+ this.panel41.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel41.MaximumSize = new System.Drawing.Size(849, 554);
+ this.panel41.MinimumSize = new System.Drawing.Size(849, 28);
this.panel41.Name = "panel41";
- this.panel41.Size = new System.Drawing.Size(637, 23);
+ this.panel41.Size = new System.Drawing.Size(849, 28);
this.panel41.TabIndex = 1;
//
// panel42
@@ -2215,9 +2268,10 @@ private void InitializeComponent()
this.panel42.Controls.Add(this.panel43);
this.panel42.Controls.Add(this.toolStrip24);
this.panel42.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel42.Location = new System.Drawing.Point(0, 23);
+ this.panel42.Location = new System.Drawing.Point(0, 28);
+ this.panel42.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel42.Name = "panel42";
- this.panel42.Size = new System.Drawing.Size(637, 0);
+ this.panel42.Size = new System.Drawing.Size(849, 0);
this.panel42.TabIndex = 2;
//
// panel43
@@ -2225,8 +2279,9 @@ private void InitializeComponent()
this.panel43.Controls.Add(this.tabControl5);
this.panel43.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel43.Location = new System.Drawing.Point(0, 27);
+ this.panel43.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel43.Name = "panel43";
- this.panel43.Size = new System.Drawing.Size(637, 0);
+ this.panel43.Size = new System.Drawing.Size(849, 0);
this.panel43.TabIndex = 1;
//
// tabControl5
@@ -2236,18 +2291,20 @@ private void InitializeComponent()
this.tabControl5.Controls.Add(this.tabPage23);
this.tabControl5.Controls.Add(this.tabPage24);
this.tabControl5.Location = new System.Drawing.Point(0, 0);
+ this.tabControl5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabControl5.Name = "tabControl5";
this.tabControl5.SelectedIndex = 0;
- this.tabControl5.Size = new System.Drawing.Size(637, 376);
+ this.tabControl5.Size = new System.Drawing.Size(849, 463);
this.tabControl5.TabIndex = 0;
//
// tabPage21
//
this.tabPage21.BackColor = System.Drawing.Color.LightGray;
- this.tabPage21.Location = new System.Drawing.Point(4, 22);
+ this.tabPage21.Location = new System.Drawing.Point(4, 25);
+ this.tabPage21.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage21.Name = "tabPage21";
- this.tabPage21.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage21.Size = new System.Drawing.Size(629, 350);
+ this.tabPage21.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage21.Size = new System.Drawing.Size(841, 434);
this.tabPage21.TabIndex = 0;
this.tabPage21.Text = "Basic Info ";
//
@@ -2257,10 +2314,11 @@ private void InitializeComponent()
this.tabPage22.Controls.Add(this.dataGridViewSensingMaterialOrientation);
this.tabPage22.Controls.Add(this.toolStrip28);
this.tabPage22.Controls.Add(this.panel45);
- this.tabPage22.Location = new System.Drawing.Point(4, 22);
+ this.tabPage22.Location = new System.Drawing.Point(4, 25);
+ this.tabPage22.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage22.Name = "tabPage22";
- this.tabPage22.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage22.Size = new System.Drawing.Size(629, 350);
+ this.tabPage22.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage22.Size = new System.Drawing.Size(841, 434);
this.tabPage22.TabIndex = 1;
this.tabPage22.Text = "Orientation Info";
//
@@ -2273,10 +2331,11 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn28,
this.dataGridViewTextBoxColumn29});
this.dataGridViewSensingMaterialOrientation.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewSensingMaterialOrientation.Location = new System.Drawing.Point(3, 202);
+ this.dataGridViewSensingMaterialOrientation.Location = new System.Drawing.Point(4, 245);
+ this.dataGridViewSensingMaterialOrientation.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewSensingMaterialOrientation.Name = "dataGridViewSensingMaterialOrientation";
this.dataGridViewSensingMaterialOrientation.RowHeadersWidth = 51;
- this.dataGridViewSensingMaterialOrientation.Size = new System.Drawing.Size(623, 145);
+ this.dataGridViewSensingMaterialOrientation.Size = new System.Drawing.Size(833, 185);
this.dataGridViewSensingMaterialOrientation.TabIndex = 2;
//
// dataGridViewTextBoxColumn26
@@ -2316,22 +2375,22 @@ private void InitializeComponent()
this.toolStripButton42,
this.toolStripSeparator60,
this.toolStripButton43});
- this.toolStrip28.Location = new System.Drawing.Point(3, 177);
+ this.toolStrip28.Location = new System.Drawing.Point(4, 218);
this.toolStrip28.Name = "toolStrip28";
- this.toolStrip28.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip28.Size = new System.Drawing.Size(833, 27);
this.toolStrip28.TabIndex = 1;
this.toolStrip28.Text = "toolStrip28";
//
// toolStripLabel33
//
this.toolStripLabel33.Name = "toolStripLabel33";
- this.toolStripLabel33.Size = new System.Drawing.Size(116, 22);
+ this.toolStripLabel33.Size = new System.Drawing.Size(146, 24);
this.toolStripLabel33.Text = "Material Orientation:";
//
// toolStripSeparator61
//
this.toolStripSeparator61.Name = "toolStripSeparator61";
- this.toolStripSeparator61.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator61.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton42
//
@@ -2339,14 +2398,14 @@ private void InitializeComponent()
this.toolStripButton42.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton42.Image")));
this.toolStripButton42.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton42.Name = "toolStripButton42";
- this.toolStripButton42.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton42.Size = new System.Drawing.Size(41, 24);
this.toolStripButton42.Text = "Add";
this.toolStripButton42.Click += new System.EventHandler(this.ToolStripButton42_Click);
//
// toolStripSeparator60
//
this.toolStripSeparator60.Name = "toolStripSeparator60";
- this.toolStripSeparator60.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator60.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton43
//
@@ -2354,7 +2413,7 @@ private void InitializeComponent()
this.toolStripButton43.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton43.Image")));
this.toolStripButton43.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton43.Name = "toolStripButton43";
- this.toolStripButton43.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton43.Size = new System.Drawing.Size(47, 24);
this.toolStripButton43.Text = "Clear";
this.toolStripButton43.Click += new System.EventHandler(this.ToolStripButton43_Click);
//
@@ -2363,9 +2422,10 @@ private void InitializeComponent()
this.panel45.Controls.Add(this.dataGridViewSensorInterfaceOrienatation);
this.panel45.Controls.Add(this.toolStrip27);
this.panel45.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel45.Location = new System.Drawing.Point(3, 3);
+ this.panel45.Location = new System.Drawing.Point(4, 4);
+ this.panel45.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel45.Name = "panel45";
- this.panel45.Size = new System.Drawing.Size(623, 174);
+ this.panel45.Size = new System.Drawing.Size(833, 214);
this.panel45.TabIndex = 0;
//
// dataGridViewSensorInterfaceOrienatation
@@ -2377,10 +2437,11 @@ private void InitializeComponent()
this.Column40,
this.Column41});
this.dataGridViewSensorInterfaceOrienatation.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewSensorInterfaceOrienatation.Location = new System.Drawing.Point(0, 25);
+ this.dataGridViewSensorInterfaceOrienatation.Location = new System.Drawing.Point(0, 27);
+ this.dataGridViewSensorInterfaceOrienatation.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewSensorInterfaceOrienatation.Name = "dataGridViewSensorInterfaceOrienatation";
this.dataGridViewSensorInterfaceOrienatation.RowHeadersWidth = 51;
- this.dataGridViewSensorInterfaceOrienatation.Size = new System.Drawing.Size(623, 149);
+ this.dataGridViewSensorInterfaceOrienatation.Size = new System.Drawing.Size(833, 187);
this.dataGridViewSensorInterfaceOrienatation.TabIndex = 1;
//
// Column38
@@ -2422,20 +2483,20 @@ private void InitializeComponent()
this.toolStripButton41});
this.toolStrip27.Location = new System.Drawing.Point(0, 0);
this.toolStrip27.Name = "toolStrip27";
- this.toolStrip27.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip27.Size = new System.Drawing.Size(833, 27);
this.toolStrip27.TabIndex = 0;
this.toolStrip27.Text = "toolStrip27";
//
// toolStripLabel32
//
this.toolStripLabel32.Name = "toolStripLabel32";
- this.toolStripLabel32.Size = new System.Drawing.Size(119, 22);
+ this.toolStripLabel32.Size = new System.Drawing.Size(149, 24);
this.toolStripLabel32.Text = "Interface Orientation:";
//
// toolStripSeparator58
//
this.toolStripSeparator58.Name = "toolStripSeparator58";
- this.toolStripSeparator58.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator58.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton40
//
@@ -2443,14 +2504,14 @@ private void InitializeComponent()
this.toolStripButton40.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton40.Image")));
this.toolStripButton40.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton40.Name = "toolStripButton40";
- this.toolStripButton40.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton40.Size = new System.Drawing.Size(41, 24);
this.toolStripButton40.Text = "Add";
this.toolStripButton40.Click += new System.EventHandler(this.ToolStripButton40_Click);
//
// toolStripSeparator59
//
this.toolStripSeparator59.Name = "toolStripSeparator59";
- this.toolStripSeparator59.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator59.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton41
//
@@ -2458,7 +2519,7 @@ private void InitializeComponent()
this.toolStripButton41.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton41.Image")));
this.toolStripButton41.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton41.Name = "toolStripButton41";
- this.toolStripButton41.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton41.Size = new System.Drawing.Size(47, 24);
this.toolStripButton41.Text = "Clear";
this.toolStripButton41.Click += new System.EventHandler(this.ToolStripButton41_Click);
//
@@ -2467,10 +2528,11 @@ private void InitializeComponent()
this.tabPage23.BackColor = System.Drawing.Color.LightGray;
this.tabPage23.Controls.Add(this.toolStrip26);
this.tabPage23.Controls.Add(this.panel44);
- this.tabPage23.Location = new System.Drawing.Point(4, 22);
+ this.tabPage23.Location = new System.Drawing.Point(4, 25);
+ this.tabPage23.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage23.Name = "tabPage23";
- this.tabPage23.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage23.Size = new System.Drawing.Size(629, 350);
+ this.tabPage23.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage23.Size = new System.Drawing.Size(841, 434);
this.tabPage23.TabIndex = 2;
this.tabPage23.Text = "I/O Info";
//
@@ -2479,25 +2541,26 @@ private void InitializeComponent()
this.toolStrip26.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip26.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel31});
- this.toolStrip26.Location = new System.Drawing.Point(3, 180);
+ this.toolStrip26.Location = new System.Drawing.Point(4, 222);
this.toolStrip26.Name = "toolStrip26";
- this.toolStrip26.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip26.Size = new System.Drawing.Size(833, 25);
this.toolStrip26.TabIndex = 1;
this.toolStrip26.Text = "toolStrip26";
//
// toolStripLabel31
//
this.toolStripLabel31.Name = "toolStripLabel31";
- this.toolStripLabel31.Size = new System.Drawing.Size(72, 22);
+ this.toolStripLabel31.Size = new System.Drawing.Size(88, 22);
this.toolStripLabel31.Text = "Output Info:";
//
// panel44
//
this.panel44.Controls.Add(this.toolStrip25);
this.panel44.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel44.Location = new System.Drawing.Point(3, 3);
+ this.panel44.Location = new System.Drawing.Point(4, 4);
+ this.panel44.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel44.Name = "panel44";
- this.panel44.Size = new System.Drawing.Size(623, 177);
+ this.panel44.Size = new System.Drawing.Size(833, 218);
this.panel44.TabIndex = 0;
//
// toolStrip25
@@ -2508,14 +2571,14 @@ private void InitializeComponent()
this.toolStripSeparator57});
this.toolStrip25.Location = new System.Drawing.Point(0, 0);
this.toolStrip25.Name = "toolStrip25";
- this.toolStrip25.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip25.Size = new System.Drawing.Size(833, 25);
this.toolStrip25.TabIndex = 0;
this.toolStrip25.Text = "toolStrip25";
//
// toolStripLabel30
//
this.toolStripLabel30.Name = "toolStripLabel30";
- this.toolStripLabel30.Size = new System.Drawing.Size(62, 22);
+ this.toolStripLabel30.Size = new System.Drawing.Size(76, 22);
this.toolStripLabel30.Text = "Input Info:";
//
// toolStripSeparator57
@@ -2526,10 +2589,11 @@ private void InitializeComponent()
// tabPage24
//
this.tabPage24.BackColor = System.Drawing.Color.LightGray;
- this.tabPage24.Location = new System.Drawing.Point(4, 22);
+ this.tabPage24.Location = new System.Drawing.Point(4, 25);
+ this.tabPage24.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage24.Name = "tabPage24";
- this.tabPage24.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage24.Size = new System.Drawing.Size(629, 350);
+ this.tabPage24.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage24.Size = new System.Drawing.Size(841, 434);
this.tabPage24.TabIndex = 3;
this.tabPage24.Text = "Geometry Info";
//
@@ -2549,14 +2613,14 @@ private void InitializeComponent()
this.toolStripButton35});
this.toolStrip24.Location = new System.Drawing.Point(0, 0);
this.toolStrip24.Name = "toolStrip24";
- this.toolStrip24.Size = new System.Drawing.Size(637, 27);
+ this.toolStrip24.Size = new System.Drawing.Size(849, 27);
this.toolStrip24.TabIndex = 0;
this.toolStrip24.Text = "toolStrip24";
//
// toolStripLabel29
//
this.toolStripLabel29.Name = "toolStripLabel29";
- this.toolStripLabel29.Size = new System.Drawing.Size(119, 24);
+ this.toolStripLabel29.Size = new System.Drawing.Size(149, 24);
this.toolStripLabel29.Text = "Number of Interfaces";
//
// toolStripSeparator53
@@ -2567,7 +2631,7 @@ private void InitializeComponent()
// toolStripTextBox4
//
this.toolStripTextBox4.Name = "toolStripTextBox4";
- this.toolStripTextBox4.Size = new System.Drawing.Size(75, 27);
+ this.toolStripTextBox4.Size = new System.Drawing.Size(99, 27);
//
// toolStripSeparator54
//
@@ -2580,7 +2644,7 @@ private void InitializeComponent()
this.toolStripButton32.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton32.Image")));
this.toolStripButton32.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton32.Name = "toolStripButton32";
- this.toolStripButton32.Size = new System.Drawing.Size(33, 24);
+ this.toolStripButton32.Size = new System.Drawing.Size(41, 24);
this.toolStripButton32.Text = "Add";
//
// toolStripSeparator55
@@ -2594,7 +2658,7 @@ private void InitializeComponent()
this.toolStripButton33.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton33.Image")));
this.toolStripButton33.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton33.Name = "toolStripButton33";
- this.toolStripButton33.Size = new System.Drawing.Size(44, 24);
+ this.toolStripButton33.Size = new System.Drawing.Size(57, 24);
this.toolStripButton33.Text = "Delete";
//
// toolStripSeparator56
@@ -2608,7 +2672,7 @@ private void InitializeComponent()
this.toolStripButton34.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton34.Image")));
this.toolStripButton34.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton34.Name = "toolStripButton34";
- this.toolStripButton34.Size = new System.Drawing.Size(38, 24);
+ this.toolStripButton34.Size = new System.Drawing.Size(47, 24);
this.toolStripButton34.Text = "Clear";
//
// toolStripButton35
@@ -2618,7 +2682,7 @@ private void InitializeComponent()
this.toolStripButton35.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datenbank_hinzufügen_30;
this.toolStripButton35.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton35.Name = "toolStripButton35";
- this.toolStripButton35.Size = new System.Drawing.Size(24, 24);
+ this.toolStripButton35.Size = new System.Drawing.Size(29, 24);
this.toolStripButton35.Text = "toolStripButton35";
//
// sensorInterfaceButton
@@ -2627,8 +2691,9 @@ private void InitializeComponent()
this.sensorInterfaceButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
this.sensorInterfaceButton.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.sensorInterfaceButton.Location = new System.Drawing.Point(0, 0);
+ this.sensorInterfaceButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.sensorInterfaceButton.Name = "sensorInterfaceButton";
- this.sensorInterfaceButton.Size = new System.Drawing.Size(637, 23);
+ this.sensorInterfaceButton.Size = new System.Drawing.Size(849, 28);
this.sensorInterfaceButton.TabIndex = 1;
this.sensorInterfaceButton.Text = "Sensor Interface";
this.sensorInterfaceButton.UseVisualStyleBackColor = true;
@@ -2640,20 +2705,22 @@ private void InitializeComponent()
this.panel4.Controls.Add(this.toolStrip13);
this.panel4.Controls.Add(this.button2);
this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel4.Location = new System.Drawing.Point(3, 3);
- this.panel4.MaximumSize = new System.Drawing.Size(637, 500);
- this.panel4.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel4.Location = new System.Drawing.Point(4, 4);
+ this.panel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel4.MaximumSize = new System.Drawing.Size(849, 615);
+ this.panel4.MinimumSize = new System.Drawing.Size(849, 28);
this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(637, 23);
+ this.panel4.Size = new System.Drawing.Size(849, 28);
this.panel4.TabIndex = 0;
//
// panel5
//
this.panel5.Controls.Add(this.tabControl1);
this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel5.Location = new System.Drawing.Point(0, 50);
+ this.panel5.Location = new System.Drawing.Point(0, 55);
+ this.panel5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(637, 431);
+ this.panel5.Size = new System.Drawing.Size(849, 530);
this.panel5.TabIndex = 3;
//
// tabControl1
@@ -2665,9 +2732,10 @@ private void InitializeComponent()
this.tabControl1.Controls.Add(this.tabPage18);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
+ this.tabControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(637, 431);
+ this.tabControl1.Size = new System.Drawing.Size(849, 530);
this.tabControl1.TabIndex = 1;
//
// tabPage7
@@ -2677,10 +2745,11 @@ private void InitializeComponent()
this.tabPage7.Controls.Add(this.toolStrip18);
this.tabPage7.Controls.Add(this.panel20);
this.tabPage7.Controls.Add(this.toolStrip14);
- this.tabPage7.Location = new System.Drawing.Point(4, 22);
+ this.tabPage7.Location = new System.Drawing.Point(4, 25);
+ this.tabPage7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage7.Size = new System.Drawing.Size(629, 405);
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage7.Size = new System.Drawing.Size(841, 501);
this.tabPage7.TabIndex = 0;
this.tabPage7.Text = "Interface Type";
//
@@ -2694,10 +2763,11 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn24,
this.dataGridViewTextBoxColumn25});
this.dataGridViewPinInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewPinInfo.Location = new System.Drawing.Point(3, 213);
+ this.dataGridViewPinInfo.Location = new System.Drawing.Point(4, 256);
+ this.dataGridViewPinInfo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewPinInfo.Name = "dataGridViewPinInfo";
this.dataGridViewPinInfo.RowHeadersWidth = 51;
- this.dataGridViewPinInfo.Size = new System.Drawing.Size(623, 189);
+ this.dataGridViewPinInfo.Size = new System.Drawing.Size(833, 241);
this.dataGridViewPinInfo.TabIndex = 3;
//
// Column18
@@ -2748,43 +2818,43 @@ private void InitializeComponent()
this.addPinsButton,
this.toolStripSeparator33,
this.toolStripButton3});
- this.toolStrip18.Location = new System.Drawing.Point(3, 188);
+ this.toolStrip18.Location = new System.Drawing.Point(4, 229);
this.toolStrip18.Name = "toolStrip18";
- this.toolStrip18.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip18.Size = new System.Drawing.Size(833, 27);
this.toolStrip18.TabIndex = 2;
this.toolStrip18.Text = "toolStrip18";
//
// toolStripLabel17
//
this.toolStripLabel17.Name = "toolStripLabel17";
- this.toolStripLabel17.Size = new System.Drawing.Size(90, 22);
+ this.toolStripLabel17.Size = new System.Drawing.Size(111, 24);
this.toolStripLabel17.Text = "Pin Information";
//
// toolStripSeparator30
//
this.toolStripSeparator30.Name = "toolStripSeparator30";
- this.toolStripSeparator30.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator30.Size = new System.Drawing.Size(6, 27);
//
// toolStripLabel18
//
this.toolStripLabel18.Name = "toolStripLabel18";
- this.toolStripLabel18.Size = new System.Drawing.Size(90, 22);
+ this.toolStripLabel18.Size = new System.Drawing.Size(111, 24);
this.toolStripLabel18.Text = "Number of Pins";
//
// toolStripSeparator32
//
this.toolStripSeparator32.Name = "toolStripSeparator32";
- this.toolStripSeparator32.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator32.Size = new System.Drawing.Size(6, 27);
//
// pinNumberTxtBx
//
this.pinNumberTxtBx.Name = "pinNumberTxtBx";
- this.pinNumberTxtBx.Size = new System.Drawing.Size(50, 25);
+ this.pinNumberTxtBx.Size = new System.Drawing.Size(65, 27);
//
// toolStripSeparator31
//
this.toolStripSeparator31.Name = "toolStripSeparator31";
- this.toolStripSeparator31.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator31.Size = new System.Drawing.Size(6, 27);
//
// addPinsButton
//
@@ -2792,14 +2862,14 @@ private void InitializeComponent()
this.addPinsButton.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
this.addPinsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addPinsButton.Name = "addPinsButton";
- this.addPinsButton.Size = new System.Drawing.Size(33, 22);
+ this.addPinsButton.Size = new System.Drawing.Size(41, 24);
this.addPinsButton.Text = "Add";
this.addPinsButton.Click += new System.EventHandler(this.ToolStripButton3_Click_2);
//
// toolStripSeparator33
//
this.toolStripSeparator33.Name = "toolStripSeparator33";
- this.toolStripSeparator33.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator33.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton3
//
@@ -2807,7 +2877,7 @@ private void InitializeComponent()
this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton3.Name = "toolStripButton3";
- this.toolStripButton3.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton3.Size = new System.Drawing.Size(47, 24);
this.toolStripButton3.Text = "Clear";
this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3_Click_3);
//
@@ -2816,9 +2886,10 @@ private void InitializeComponent()
this.panel20.Controls.Add(this.panel21);
this.panel20.Controls.Add(this.toolStrip17);
this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel20.Location = new System.Drawing.Point(3, 28);
+ this.panel20.Location = new System.Drawing.Point(4, 32);
+ this.panel20.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(623, 160);
+ this.panel20.Size = new System.Drawing.Size(833, 197);
this.panel20.TabIndex = 1;
//
// panel21
@@ -2826,8 +2897,9 @@ private void InitializeComponent()
this.panel21.Controls.Add(this.dataGridViewIRDIElectricalData);
this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel21.Location = new System.Drawing.Point(0, 25);
+ this.panel21.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel21.Name = "panel21";
- this.panel21.Size = new System.Drawing.Size(623, 135);
+ this.panel21.Size = new System.Drawing.Size(833, 172);
this.panel21.TabIndex = 1;
//
// dataGridViewIRDIElectricalData
@@ -2840,9 +2912,10 @@ private void InitializeComponent()
this.Column17});
this.dataGridViewIRDIElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIElectricalData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIElectricalData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIElectricalData.Name = "dataGridViewIRDIElectricalData";
this.dataGridViewIRDIElectricalData.RowHeadersWidth = 51;
- this.dataGridViewIRDIElectricalData.Size = new System.Drawing.Size(623, 135);
+ this.dataGridViewIRDIElectricalData.Size = new System.Drawing.Size(833, 172);
this.dataGridViewIRDIElectricalData.TabIndex = 0;
//
// Column14
@@ -2880,14 +2953,14 @@ private void InitializeComponent()
this.toolStripLabel16});
this.toolStrip17.Location = new System.Drawing.Point(0, 0);
this.toolStrip17.Name = "toolStrip17";
- this.toolStrip17.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip17.Size = new System.Drawing.Size(833, 25);
this.toolStrip17.TabIndex = 0;
this.toolStrip17.Text = "toolStrip17";
//
// toolStripLabel16
//
this.toolStripLabel16.Name = "toolStripLabel16";
- this.toolStripLabel16.Size = new System.Drawing.Size(81, 22);
+ this.toolStripLabel16.Size = new System.Drawing.Size(105, 22);
this.toolStripLabel16.Text = "Electrical Data";
//
// toolStrip14
@@ -2902,22 +2975,22 @@ private void InitializeComponent()
this.toolStripSeparator34,
this.toolStripButton15,
this.toolStripLabel19});
- this.toolStrip14.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip14.Location = new System.Drawing.Point(4, 4);
this.toolStrip14.Name = "toolStrip14";
- this.toolStrip14.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip14.Size = new System.Drawing.Size(833, 28);
this.toolStrip14.TabIndex = 0;
this.toolStrip14.Text = "Connector";
//
// toolStripLabel13
//
this.toolStripLabel13.Name = "toolStripLabel13";
- this.toolStripLabel13.Size = new System.Drawing.Size(66, 22);
+ this.toolStripLabel13.Size = new System.Drawing.Size(81, 25);
this.toolStripLabel13.Text = "Connector ";
//
// toolStripSeparator27
//
this.toolStripSeparator27.Name = "toolStripSeparator27";
- this.toolStripSeparator27.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator27.Size = new System.Drawing.Size(6, 28);
//
// toolStripComboBox1
//
@@ -2929,12 +3002,12 @@ private void InitializeComponent()
"7/8-Inch Power Supply Connector",
"Others"});
this.toolStripComboBox1.Name = "toolStripComboBox1";
- this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
+ this.toolStripComboBox1.Size = new System.Drawing.Size(160, 28);
//
// toolStripSeparator26
//
this.toolStripSeparator26.Name = "toolStripSeparator26";
- this.toolStripSeparator26.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator26.Size = new System.Drawing.Size(6, 28);
//
// addConnector
//
@@ -2942,14 +3015,14 @@ private void InitializeComponent()
this.addConnector.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_mathe_30;
this.addConnector.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addConnector.Name = "addConnector";
- this.addConnector.Size = new System.Drawing.Size(33, 22);
+ this.addConnector.Size = new System.Drawing.Size(41, 25);
this.addConnector.Text = "Add";
this.addConnector.Click += new System.EventHandler(this.AddConnector_Click);
//
// toolStripSeparator34
//
this.toolStripSeparator34.Name = "toolStripSeparator34";
- this.toolStripSeparator34.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator34.Size = new System.Drawing.Size(6, 28);
//
// toolStripButton15
//
@@ -2957,14 +3030,14 @@ private void InitializeComponent()
this.toolStripButton15.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_löschen_26;
this.toolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton15.Name = "toolStripButton15";
- this.toolStripButton15.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton15.Size = new System.Drawing.Size(47, 25);
this.toolStripButton15.Text = "Clear";
this.toolStripButton15.Click += new System.EventHandler(this.ToolStripButton15_Click);
//
// toolStripLabel19
//
this.toolStripLabel19.Name = "toolStripLabel19";
- this.toolStripLabel19.Size = new System.Drawing.Size(0, 22);
+ this.toolStripLabel19.Size = new System.Drawing.Size(0, 25);
//
// tabPage20
//
@@ -2972,10 +3045,11 @@ private void InitializeComponent()
this.tabPage20.Controls.Add(this.panel35);
this.tabPage20.Controls.Add(this.toolStrip21);
this.tabPage20.Controls.Add(this.panel22);
- this.tabPage20.Location = new System.Drawing.Point(4, 22);
+ this.tabPage20.Location = new System.Drawing.Point(4, 25);
+ this.tabPage20.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage20.Name = "tabPage20";
- this.tabPage20.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage20.Size = new System.Drawing.Size(629, 405);
+ this.tabPage20.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage20.Size = new System.Drawing.Size(841, 501);
this.tabPage20.TabIndex = 4;
this.tabPage20.Text = "Cable Info";
//
@@ -2983,9 +3057,10 @@ private void InitializeComponent()
//
this.panel35.Controls.Add(this.dataGridViewIRDICableDMI);
this.panel35.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel35.Location = new System.Drawing.Point(3, 185);
+ this.panel35.Location = new System.Drawing.Point(4, 224);
+ this.panel35.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel35.Name = "panel35";
- this.panel35.Size = new System.Drawing.Size(623, 217);
+ this.panel35.Size = new System.Drawing.Size(833, 273);
this.panel35.TabIndex = 2;
//
// dataGridViewIRDICableDMI
@@ -2998,9 +3073,10 @@ private void InitializeComponent()
this.Column22});
this.dataGridViewIRDICableDMI.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDICableDMI.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDICableDMI.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDICableDMI.Name = "dataGridViewIRDICableDMI";
this.dataGridViewIRDICableDMI.RowHeadersWidth = 51;
- this.dataGridViewIRDICableDMI.Size = new System.Drawing.Size(623, 217);
+ this.dataGridViewIRDICableDMI.Size = new System.Drawing.Size(833, 273);
this.dataGridViewIRDICableDMI.TabIndex = 0;
//
// Column19
@@ -3040,9 +3116,9 @@ private void InitializeComponent()
this.toolStripButton22,
this.toolStripSeparator45,
this.toolStripButton23});
- this.toolStrip21.Location = new System.Drawing.Point(3, 160);
+ this.toolStrip21.Location = new System.Drawing.Point(4, 197);
this.toolStrip21.Name = "toolStrip21";
- this.toolStrip21.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip21.Size = new System.Drawing.Size(833, 27);
this.toolStrip21.TabIndex = 1;
this.toolStrip21.Text = "toolStrip21";
//
@@ -3050,13 +3126,13 @@ private void InitializeComponent()
//
this.toolStripLabel23.Enabled = false;
this.toolStripLabel23.Name = "toolStripLabel23";
- this.toolStripLabel23.Size = new System.Drawing.Size(190, 22);
+ this.toolStripLabel23.Size = new System.Drawing.Size(240, 24);
this.toolStripLabel23.Text = "Cable Dimension and Material Info";
//
// toolStripSeparator44
//
this.toolStripSeparator44.Name = "toolStripSeparator44";
- this.toolStripSeparator44.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator44.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton22
//
@@ -3064,14 +3140,14 @@ private void InitializeComponent()
this.toolStripButton22.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton22.Image")));
this.toolStripButton22.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton22.Name = "toolStripButton22";
- this.toolStripButton22.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton22.Size = new System.Drawing.Size(41, 24);
this.toolStripButton22.Text = "Add";
this.toolStripButton22.Click += new System.EventHandler(this.ToolStripButton22_Click);
//
// toolStripSeparator45
//
this.toolStripSeparator45.Name = "toolStripSeparator45";
- this.toolStripSeparator45.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator45.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton23
//
@@ -3079,7 +3155,7 @@ private void InitializeComponent()
this.toolStripButton23.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton23.Image")));
this.toolStripButton23.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton23.Name = "toolStripButton23";
- this.toolStripButton23.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton23.Size = new System.Drawing.Size(47, 24);
this.toolStripButton23.Text = "Clear";
this.toolStripButton23.Click += new System.EventHandler(this.ToolStripButton23_Click);
//
@@ -3088,18 +3164,20 @@ private void InitializeComponent()
this.panel22.Controls.Add(this.panel24);
this.panel22.Controls.Add(this.cableLeadsNumber);
this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel22.Location = new System.Drawing.Point(3, 3);
+ this.panel22.Location = new System.Drawing.Point(4, 4);
+ this.panel22.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel22.Name = "panel22";
- this.panel22.Size = new System.Drawing.Size(623, 157);
+ this.panel22.Size = new System.Drawing.Size(833, 193);
this.panel22.TabIndex = 0;
//
// panel24
//
this.panel24.Controls.Add(this.dataGridViewIRDICableLeads);
this.panel24.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel24.Location = new System.Drawing.Point(0, 25);
+ this.panel24.Location = new System.Drawing.Point(0, 27);
+ this.panel24.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel24.Name = "panel24";
- this.panel24.Size = new System.Drawing.Size(623, 132);
+ this.panel24.Size = new System.Drawing.Size(833, 166);
this.panel24.TabIndex = 1;
//
// dataGridViewIRDICableLeads
@@ -3113,9 +3191,10 @@ private void InitializeComponent()
this.Units});
this.dataGridViewIRDICableLeads.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDICableLeads.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDICableLeads.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDICableLeads.Name = "dataGridViewIRDICableLeads";
this.dataGridViewIRDICableLeads.RowHeadersWidth = 51;
- this.dataGridViewIRDICableLeads.Size = new System.Drawing.Size(623, 132);
+ this.dataGridViewIRDICableLeads.Size = new System.Drawing.Size(833, 166);
this.dataGridViewIRDICableLeads.TabIndex = 0;
//
// PinNumber
@@ -3168,7 +3247,7 @@ private void InitializeComponent()
this.toolStripButton21});
this.cableLeadsNumber.Location = new System.Drawing.Point(0, 0);
this.cableLeadsNumber.Name = "cableLeadsNumber";
- this.cableLeadsNumber.Size = new System.Drawing.Size(623, 25);
+ this.cableLeadsNumber.Size = new System.Drawing.Size(833, 27);
this.cableLeadsNumber.TabIndex = 0;
this.cableLeadsNumber.Text = "toolStrip20";
//
@@ -3176,34 +3255,34 @@ private void InitializeComponent()
//
this.toolStripLabel21.Enabled = false;
this.toolStripLabel21.Name = "toolStripLabel21";
- this.toolStripLabel21.Size = new System.Drawing.Size(133, 22);
+ this.toolStripLabel21.Size = new System.Drawing.Size(167, 24);
this.toolStripLabel21.Text = "Pins to Cable leads Info:";
//
// toolStripSeparator16
//
this.toolStripSeparator16.Name = "toolStripSeparator16";
- this.toolStripSeparator16.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator16.Size = new System.Drawing.Size(6, 27);
//
// toolStripLabel22
//
this.toolStripLabel22.Name = "toolStripLabel22";
- this.toolStripLabel22.Size = new System.Drawing.Size(95, 22);
+ this.toolStripLabel22.Size = new System.Drawing.Size(120, 24);
this.toolStripLabel22.Text = "Number of leads";
//
// toolStripSeparator29
//
this.toolStripSeparator29.Name = "toolStripSeparator29";
- this.toolStripSeparator29.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator29.Size = new System.Drawing.Size(6, 27);
//
// cableLeadsNumberTxtbx
//
this.cableLeadsNumberTxtbx.Name = "cableLeadsNumberTxtbx";
- this.cableLeadsNumberTxtbx.Size = new System.Drawing.Size(100, 25);
+ this.cableLeadsNumberTxtbx.Size = new System.Drawing.Size(132, 27);
//
// toolStripSeparator42
//
this.toolStripSeparator42.Name = "toolStripSeparator42";
- this.toolStripSeparator42.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator42.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton20
//
@@ -3211,14 +3290,14 @@ private void InitializeComponent()
this.toolStripButton20.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton20.Image")));
this.toolStripButton20.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton20.Name = "toolStripButton20";
- this.toolStripButton20.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton20.Size = new System.Drawing.Size(41, 24);
this.toolStripButton20.Text = "Add";
this.toolStripButton20.Click += new System.EventHandler(this.ToolStripButton20_Click);
//
// toolStripSeparator43
//
this.toolStripSeparator43.Name = "toolStripSeparator43";
- this.toolStripSeparator43.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator43.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton21
//
@@ -3226,7 +3305,7 @@ private void InitializeComponent()
this.toolStripButton21.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton21.Image")));
this.toolStripButton21.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton21.Name = "toolStripButton21";
- this.toolStripButton21.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton21.Size = new System.Drawing.Size(47, 24);
this.toolStripButton21.Text = "Clear";
this.toolStripButton21.Click += new System.EventHandler(this.ToolStripButton21_Click);
//
@@ -3236,10 +3315,11 @@ private void InitializeComponent()
this.tabPage8.Controls.Add(this.panel7);
this.tabPage8.Controls.Add(this.panel6);
this.tabPage8.Controls.Add(this.toolStrip15);
- this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Location = new System.Drawing.Point(4, 25);
+ this.tabPage8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage8.Size = new System.Drawing.Size(629, 405);
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage8.Size = new System.Drawing.Size(841, 501);
this.tabPage8.TabIndex = 1;
this.tabPage8.Text = "Dimensional Info";
//
@@ -3248,18 +3328,20 @@ private void InitializeComponent()
this.panel7.Controls.Add(this.panel8);
this.panel7.Controls.Add(this.toolStrip16);
this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel7.Location = new System.Drawing.Point(3, 128);
+ this.panel7.Location = new System.Drawing.Point(4, 155);
+ this.panel7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(623, 274);
+ this.panel7.Size = new System.Drawing.Size(833, 342);
this.panel7.TabIndex = 2;
//
// panel8
//
this.panel8.Controls.Add(this.dataGridViewIRDIConnectorDimensions);
this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel8.Location = new System.Drawing.Point(0, 25);
+ this.panel8.Location = new System.Drawing.Point(0, 28);
+ this.panel8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(623, 249);
+ this.panel8.Size = new System.Drawing.Size(833, 314);
this.panel8.TabIndex = 1;
//
// dataGridViewIRDIConnectorDimensions
@@ -3274,9 +3356,10 @@ private void InitializeComponent()
this.Column13});
this.dataGridViewIRDIConnectorDimensions.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorDimensions.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorDimensions.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIConnectorDimensions.Name = "dataGridViewIRDIConnectorDimensions";
this.dataGridViewIRDIConnectorDimensions.RowHeadersWidth = 51;
- this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(623, 249);
+ this.dataGridViewIRDIConnectorDimensions.Size = new System.Drawing.Size(833, 314);
this.dataGridViewIRDIConnectorDimensions.TabIndex = 0;
//
// Column8
@@ -3339,7 +3422,7 @@ private void InitializeComponent()
this.toolStripButton19});
this.toolStrip16.Location = new System.Drawing.Point(0, 0);
this.toolStrip16.Name = "toolStrip16";
- this.toolStrip16.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip16.Size = new System.Drawing.Size(833, 28);
this.toolStrip16.TabIndex = 0;
this.toolStrip16.Text = "toolStrip16";
//
@@ -3347,47 +3430,47 @@ private void InitializeComponent()
//
this.toolStripLabel15.Enabled = false;
this.toolStripLabel15.Name = "toolStripLabel15";
- this.toolStripLabel15.Size = new System.Drawing.Size(69, 22);
+ this.toolStripLabel15.Size = new System.Drawing.Size(86, 25);
this.toolStripLabel15.Text = "Dimensions";
//
// toolStripSeparator28
//
this.toolStripSeparator28.Name = "toolStripSeparator28";
- this.toolStripSeparator28.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator28.Size = new System.Drawing.Size(6, 28);
//
// toolStripLabel20
//
this.toolStripLabel20.Name = "toolStripLabel20";
- this.toolStripLabel20.Size = new System.Drawing.Size(94, 22);
+ this.toolStripLabel20.Size = new System.Drawing.Size(116, 25);
this.toolStripLabel20.Text = "Connector Code";
//
// toolStripSeparator35
//
this.toolStripSeparator35.Name = "toolStripSeparator35";
- this.toolStripSeparator35.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator35.Size = new System.Drawing.Size(6, 28);
//
// toolStripComboBox2
//
this.toolStripComboBox2.Items.AddRange(new object[] {
"E - Coding"});
this.toolStripComboBox2.Name = "toolStripComboBox2";
- this.toolStripComboBox2.Size = new System.Drawing.Size(75, 25);
+ this.toolStripComboBox2.Size = new System.Drawing.Size(99, 28);
//
// toolStripSeparator39
//
this.toolStripSeparator39.Name = "toolStripSeparator39";
- this.toolStripSeparator39.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator39.Size = new System.Drawing.Size(6, 28);
//
// connectorTypelabel
//
this.connectorTypelabel.Name = "connectorTypelabel";
- this.connectorTypelabel.Size = new System.Drawing.Size(91, 22);
+ this.connectorTypelabel.Size = new System.Drawing.Size(112, 25);
this.connectorTypelabel.Text = "Connector Type";
//
// toolStripSeparator41
//
this.toolStripSeparator41.Name = "toolStripSeparator41";
- this.toolStripSeparator41.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator41.Size = new System.Drawing.Size(6, 28);
//
// connectorTypeCmbx
//
@@ -3395,7 +3478,7 @@ private void InitializeComponent()
"Male",
"Female"});
this.connectorTypeCmbx.Name = "connectorTypeCmbx";
- this.connectorTypeCmbx.Size = new System.Drawing.Size(75, 25);
+ this.connectorTypeCmbx.Size = new System.Drawing.Size(99, 28);
//
// toolStripButton18
//
@@ -3403,14 +3486,14 @@ private void InitializeComponent()
this.toolStripButton18.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
this.toolStripButton18.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton18.Name = "toolStripButton18";
- this.toolStripButton18.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton18.Size = new System.Drawing.Size(41, 25);
this.toolStripButton18.Text = "Add";
this.toolStripButton18.Click += new System.EventHandler(this.ToolStripButton18_Click);
//
// toolStripSeparator40
//
this.toolStripSeparator40.Name = "toolStripSeparator40";
- this.toolStripSeparator40.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator40.Size = new System.Drawing.Size(6, 28);
//
// toolStripButton19
//
@@ -3418,7 +3501,7 @@ private void InitializeComponent()
this.toolStripButton19.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton19.Image")));
this.toolStripButton19.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton19.Name = "toolStripButton19";
- this.toolStripButton19.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton19.Size = new System.Drawing.Size(47, 25);
this.toolStripButton19.Text = "Clear";
this.toolStripButton19.Click += new System.EventHandler(this.ToolStripButton19_Click);
//
@@ -3426,9 +3509,10 @@ private void InitializeComponent()
//
this.panel6.Controls.Add(this.dataGridViewIRDIMountingData);
this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel6.Location = new System.Drawing.Point(3, 28);
+ this.panel6.Location = new System.Drawing.Point(4, 32);
+ this.panel6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(623, 100);
+ this.panel6.Size = new System.Drawing.Size(833, 123);
this.panel6.TabIndex = 1;
//
// dataGridViewIRDIMountingData
@@ -3440,9 +3524,10 @@ private void InitializeComponent()
this.Column6,
this.Column7});
this.dataGridViewIRDIMountingData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIMountingData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIMountingData.Name = "dataGridViewIRDIMountingData";
this.dataGridViewIRDIMountingData.RowHeadersWidth = 51;
- this.dataGridViewIRDIMountingData.Size = new System.Drawing.Size(623, 100);
+ this.dataGridViewIRDIMountingData.Size = new System.Drawing.Size(831, 123);
this.dataGridViewIRDIMountingData.TabIndex = 0;
//
// Column4
@@ -3492,22 +3577,22 @@ private void InitializeComponent()
this.toolStripButton16,
this.toolStripSeparator38,
this.toolStripButton17});
- this.toolStrip15.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip15.Location = new System.Drawing.Point(4, 4);
this.toolStrip15.Name = "toolStrip15";
- this.toolStrip15.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip15.Size = new System.Drawing.Size(833, 28);
this.toolStrip15.TabIndex = 0;
this.toolStrip15.Text = "toolStrip15";
//
// toolStripLabel8
//
this.toolStripLabel8.Name = "toolStripLabel8";
- this.toolStripLabel8.Size = new System.Drawing.Size(91, 22);
+ this.toolStripLabel8.Size = new System.Drawing.Size(113, 25);
this.toolStripLabel8.Text = "Connector Style";
//
// toolStripSeparator24
//
this.toolStripSeparator24.Name = "toolStripSeparator24";
- this.toolStripSeparator24.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator24.Size = new System.Drawing.Size(6, 28);
//
// connectorStyleCmbx
//
@@ -3515,24 +3600,24 @@ private void InitializeComponent()
"Fixed Connectors",
"Free Connectors"});
this.connectorStyleCmbx.Name = "connectorStyleCmbx";
- this.connectorStyleCmbx.Size = new System.Drawing.Size(75, 25);
+ this.connectorStyleCmbx.Size = new System.Drawing.Size(99, 28);
this.connectorStyleCmbx.Click += new System.EventHandler(this.ConnectorStyleCmbx_Click);
//
// toolStripSeparator23
//
this.toolStripSeparator23.Name = "toolStripSeparator23";
- this.toolStripSeparator23.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator23.Size = new System.Drawing.Size(6, 28);
//
// toolStripLabel14
//
this.toolStripLabel14.Name = "toolStripLabel14";
- this.toolStripLabel14.Size = new System.Drawing.Size(63, 22);
+ this.toolStripLabel14.Size = new System.Drawing.Size(77, 25);
this.toolStripLabel14.Text = "Mounting ";
//
// toolStripSeparator25
//
this.toolStripSeparator25.Name = "toolStripSeparator25";
- this.toolStripSeparator25.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator25.Size = new System.Drawing.Size(6, 28);
//
// mountingCmbx
//
@@ -3541,24 +3626,24 @@ private void InitializeComponent()
"Single hole mounting",
"Locking nut"});
this.mountingCmbx.Name = "mountingCmbx";
- this.mountingCmbx.Size = new System.Drawing.Size(75, 25);
+ this.mountingCmbx.Size = new System.Drawing.Size(99, 28);
//
// toolStripSeparator36
//
this.toolStripSeparator36.Name = "toolStripSeparator36";
- this.toolStripSeparator36.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator36.Size = new System.Drawing.Size(6, 28);
//
// connectorVersion
//
this.connectorVersion.Enabled = false;
this.connectorVersion.Name = "connectorVersion";
- this.connectorVersion.Size = new System.Drawing.Size(104, 22);
+ this.connectorVersion.Size = new System.Drawing.Size(129, 25);
this.connectorVersion.Text = "Connector Version";
//
// toolStripSeparator22
//
this.toolStripSeparator22.Name = "toolStripSeparator22";
- this.toolStripSeparator22.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator22.Size = new System.Drawing.Size(6, 28);
//
// connectorVersionCmbx
//
@@ -3567,12 +3652,12 @@ private void InitializeComponent()
"Straight",
"Right Angled"});
this.connectorVersionCmbx.Name = "connectorVersionCmbx";
- this.connectorVersionCmbx.Size = new System.Drawing.Size(75, 25);
+ this.connectorVersionCmbx.Size = new System.Drawing.Size(99, 28);
//
// toolStripSeparator37
//
this.toolStripSeparator37.Name = "toolStripSeparator37";
- this.toolStripSeparator37.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator37.Size = new System.Drawing.Size(6, 28);
//
// toolStripButton16
//
@@ -3580,14 +3665,14 @@ private void InitializeComponent()
this.toolStripButton16.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_plus_2_24;
this.toolStripButton16.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton16.Name = "toolStripButton16";
- this.toolStripButton16.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton16.Size = new System.Drawing.Size(41, 25);
this.toolStripButton16.Text = "Add";
this.toolStripButton16.Click += new System.EventHandler(this.ToolStripButton16_Click);
//
// toolStripSeparator38
//
this.toolStripSeparator38.Name = "toolStripSeparator38";
- this.toolStripSeparator38.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator38.Size = new System.Drawing.Size(6, 28);
//
// toolStripButton17
//
@@ -3595,7 +3680,7 @@ private void InitializeComponent()
this.toolStripButton17.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton17.Image")));
this.toolStripButton17.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton17.Name = "toolStripButton17";
- this.toolStripButton17.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton17.Size = new System.Drawing.Size(47, 25);
this.toolStripButton17.Text = "Clear";
this.toolStripButton17.Click += new System.EventHandler(this.ToolStripButton17_Click);
//
@@ -3604,10 +3689,11 @@ private void InitializeComponent()
this.tabPage19.BackColor = System.Drawing.Color.LightGray;
this.tabPage19.Controls.Add(this.panel36);
this.tabPage19.Controls.Add(this.toolStrip19);
- this.tabPage19.Location = new System.Drawing.Point(4, 22);
+ this.tabPage19.Location = new System.Drawing.Point(4, 25);
+ this.tabPage19.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage19.Name = "tabPage19";
- this.tabPage19.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage19.Size = new System.Drawing.Size(629, 405);
+ this.tabPage19.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage19.Size = new System.Drawing.Size(841, 501);
this.tabPage19.TabIndex = 3;
this.tabPage19.Text = "Orientation Info";
//
@@ -3615,9 +3701,10 @@ private void InitializeComponent()
//
this.panel36.Controls.Add(this.dataGridViewIRDIOrientationData);
this.panel36.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel36.Location = new System.Drawing.Point(3, 28);
+ this.panel36.Location = new System.Drawing.Point(4, 31);
+ this.panel36.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel36.Name = "panel36";
- this.panel36.Size = new System.Drawing.Size(623, 374);
+ this.panel36.Size = new System.Drawing.Size(833, 466);
this.panel36.TabIndex = 1;
//
// dataGridViewIRDIOrientationData
@@ -3630,9 +3717,10 @@ private void InitializeComponent()
this.Column26});
this.dataGridViewIRDIOrientationData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIOrientationData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIOrientationData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIOrientationData.Name = "dataGridViewIRDIOrientationData";
this.dataGridViewIRDIOrientationData.RowHeadersWidth = 51;
- this.dataGridViewIRDIOrientationData.Size = new System.Drawing.Size(623, 374);
+ this.dataGridViewIRDIOrientationData.Size = new System.Drawing.Size(833, 466);
this.dataGridViewIRDIOrientationData.TabIndex = 0;
//
// Column23
@@ -3676,9 +3764,9 @@ private void InitializeComponent()
this.toolStripButton24,
this.toolStripSeparator49,
this.toolStripButton25});
- this.toolStrip19.Location = new System.Drawing.Point(3, 3);
+ this.toolStrip19.Location = new System.Drawing.Point(4, 4);
this.toolStrip19.Name = "toolStrip19";
- this.toolStrip19.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip19.Size = new System.Drawing.Size(833, 27);
this.toolStrip19.TabIndex = 0;
this.toolStrip19.Text = "toolStrip19";
//
@@ -3686,34 +3774,34 @@ private void InitializeComponent()
//
this.toolStripLabel7.Enabled = false;
this.toolStripLabel7.Name = "toolStripLabel7";
- this.toolStripLabel7.Size = new System.Drawing.Size(73, 22);
+ this.toolStripLabel7.Size = new System.Drawing.Size(91, 24);
this.toolStripLabel7.Text = "Orientation :";
//
// toolStripSeparator46
//
this.toolStripSeparator46.Name = "toolStripSeparator46";
- this.toolStripSeparator46.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator46.Size = new System.Drawing.Size(6, 27);
//
// toolStripLabel24
//
this.toolStripLabel24.Name = "toolStripLabel24";
- this.toolStripLabel24.Size = new System.Drawing.Size(108, 22);
+ this.toolStripLabel24.Size = new System.Drawing.Size(135, 24);
this.toolStripLabel24.Text = "Orientation System";
//
// toolStripSeparator47
//
this.toolStripSeparator47.Name = "toolStripSeparator47";
- this.toolStripSeparator47.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator47.Size = new System.Drawing.Size(6, 27);
//
// toolStripTextBox5
//
this.toolStripTextBox5.Name = "toolStripTextBox5";
- this.toolStripTextBox5.Size = new System.Drawing.Size(100, 25);
+ this.toolStripTextBox5.Size = new System.Drawing.Size(132, 27);
//
// toolStripSeparator48
//
this.toolStripSeparator48.Name = "toolStripSeparator48";
- this.toolStripSeparator48.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator48.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton24
//
@@ -3721,14 +3809,14 @@ private void InitializeComponent()
this.toolStripButton24.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton24.Image")));
this.toolStripButton24.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton24.Name = "toolStripButton24";
- this.toolStripButton24.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton24.Size = new System.Drawing.Size(41, 24);
this.toolStripButton24.Text = "Add";
this.toolStripButton24.Click += new System.EventHandler(this.ToolStripButton24_Click);
//
// toolStripSeparator49
//
this.toolStripSeparator49.Name = "toolStripSeparator49";
- this.toolStripSeparator49.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator49.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton25
//
@@ -3736,7 +3824,7 @@ private void InitializeComponent()
this.toolStripButton25.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton25.Image")));
this.toolStripButton25.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton25.Name = "toolStripButton25";
- this.toolStripButton25.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton25.Size = new System.Drawing.Size(47, 24);
this.toolStripButton25.Text = "Clear";
this.toolStripButton25.Click += new System.EventHandler(this.ToolStripButton25_Click);
//
@@ -3747,10 +3835,11 @@ private void InitializeComponent()
this.tabPage18.Controls.Add(this.toolStrip20);
this.tabPage18.Controls.Add(this.panel38);
this.tabPage18.Controls.Add(this.panel37);
- this.tabPage18.Location = new System.Drawing.Point(4, 22);
+ this.tabPage18.Location = new System.Drawing.Point(4, 25);
+ this.tabPage18.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage18.Name = "tabPage18";
- this.tabPage18.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage18.Size = new System.Drawing.Size(629, 405);
+ this.tabPage18.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage18.Size = new System.Drawing.Size(841, 501);
this.tabPage18.TabIndex = 2;
this.tabPage18.Text = "Miscellaneous Info";
//
@@ -3758,9 +3847,10 @@ private void InitializeComponent()
//
this.panel40.Controls.Add(this.dataGridViewIRDIConnectorMiscData);
this.panel40.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel40.Location = new System.Drawing.Point(3, 284);
+ this.panel40.Location = new System.Drawing.Point(4, 346);
+ this.panel40.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel40.Name = "panel40";
- this.panel40.Size = new System.Drawing.Size(623, 118);
+ this.panel40.Size = new System.Drawing.Size(833, 151);
this.panel40.TabIndex = 3;
//
// dataGridViewIRDIConnectorMiscData
@@ -3773,9 +3863,10 @@ private void InitializeComponent()
this.Column37});
this.dataGridViewIRDIConnectorMiscData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorMiscData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorMiscData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIConnectorMiscData.Name = "dataGridViewIRDIConnectorMiscData";
this.dataGridViewIRDIConnectorMiscData.RowHeadersWidth = 51;
- this.dataGridViewIRDIConnectorMiscData.Size = new System.Drawing.Size(623, 118);
+ this.dataGridViewIRDIConnectorMiscData.Size = new System.Drawing.Size(833, 151);
this.dataGridViewIRDIConnectorMiscData.TabIndex = 0;
//
// Column34
@@ -3814,9 +3905,9 @@ private void InitializeComponent()
this.toolStripButton30,
this.toolStripSeparator52,
this.toolStripButton31});
- this.toolStrip20.Location = new System.Drawing.Point(3, 259);
+ this.toolStrip20.Location = new System.Drawing.Point(4, 319);
this.toolStrip20.Name = "toolStrip20";
- this.toolStrip20.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip20.Size = new System.Drawing.Size(833, 27);
this.toolStrip20.TabIndex = 2;
this.toolStrip20.Text = "toolStrip20";
//
@@ -3824,7 +3915,7 @@ private void InitializeComponent()
//
this.toolStripLabel27.Enabled = false;
this.toolStripLabel27.Name = "toolStripLabel27";
- this.toolStripLabel27.Size = new System.Drawing.Size(168, 22);
+ this.toolStripLabel27.Size = new System.Drawing.Size(207, 24);
this.toolStripLabel27.Text = "Connector Miscellineous Info :";
//
// toolStripButton30
@@ -3833,14 +3924,14 @@ private void InitializeComponent()
this.toolStripButton30.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton30.Image")));
this.toolStripButton30.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton30.Name = "toolStripButton30";
- this.toolStripButton30.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton30.Size = new System.Drawing.Size(41, 24);
this.toolStripButton30.Text = "Add";
this.toolStripButton30.Click += new System.EventHandler(this.ToolStripButton30_Click);
//
// toolStripSeparator52
//
this.toolStripSeparator52.Name = "toolStripSeparator52";
- this.toolStripSeparator52.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator52.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton31
//
@@ -3848,7 +3939,7 @@ private void InitializeComponent()
this.toolStripButton31.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton31.Image")));
this.toolStripButton31.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton31.Name = "toolStripButton31";
- this.toolStripButton31.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton31.Size = new System.Drawing.Size(47, 24);
this.toolStripButton31.Text = "Clear";
this.toolStripButton31.Click += new System.EventHandler(this.ToolStripButton31_Click);
//
@@ -3857,18 +3948,20 @@ private void InitializeComponent()
this.panel38.Controls.Add(this.panel39);
this.panel38.Controls.Add(this.toolStrip23);
this.panel38.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel38.Location = new System.Drawing.Point(3, 132);
+ this.panel38.Location = new System.Drawing.Point(4, 163);
+ this.panel38.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel38.Name = "panel38";
- this.panel38.Size = new System.Drawing.Size(623, 127);
+ this.panel38.Size = new System.Drawing.Size(833, 156);
this.panel38.TabIndex = 1;
//
// panel39
//
this.panel39.Controls.Add(this.dataGridViewIRDIConnectorMaterialData);
this.panel39.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel39.Location = new System.Drawing.Point(0, 25);
+ this.panel39.Location = new System.Drawing.Point(0, 27);
+ this.panel39.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel39.Name = "panel39";
- this.panel39.Size = new System.Drawing.Size(623, 102);
+ this.panel39.Size = new System.Drawing.Size(833, 129);
this.panel39.TabIndex = 2;
//
// dataGridViewIRDIConnectorMaterialData
@@ -3880,9 +3973,10 @@ private void InitializeComponent()
this.Column33});
this.dataGridViewIRDIConnectorMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIRDIConnectorMaterialData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIRDIConnectorMaterialData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIConnectorMaterialData.Name = "dataGridViewIRDIConnectorMaterialData";
this.dataGridViewIRDIConnectorMaterialData.RowHeadersWidth = 51;
- this.dataGridViewIRDIConnectorMaterialData.Size = new System.Drawing.Size(623, 102);
+ this.dataGridViewIRDIConnectorMaterialData.Size = new System.Drawing.Size(833, 129);
this.dataGridViewIRDIConnectorMaterialData.TabIndex = 0;
//
// Column31
@@ -3916,7 +4010,7 @@ private void InitializeComponent()
this.toolStripButton29});
this.toolStrip23.Location = new System.Drawing.Point(0, 0);
this.toolStrip23.Name = "toolStrip23";
- this.toolStrip23.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip23.Size = new System.Drawing.Size(833, 27);
this.toolStrip23.TabIndex = 1;
this.toolStrip23.Text = "toolStrip23";
//
@@ -3924,7 +4018,7 @@ private void InitializeComponent()
//
this.toolStripLabel26.Enabled = false;
this.toolStripLabel26.Name = "toolStripLabel26";
- this.toolStripLabel26.Size = new System.Drawing.Size(139, 22);
+ this.toolStripLabel26.Size = new System.Drawing.Size(173, 24);
this.toolStripLabel26.Text = "Connector Material Info :";
//
// toolStripButton28
@@ -3933,14 +4027,14 @@ private void InitializeComponent()
this.toolStripButton28.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton28.Image")));
this.toolStripButton28.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton28.Name = "toolStripButton28";
- this.toolStripButton28.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton28.Size = new System.Drawing.Size(41, 24);
this.toolStripButton28.Text = "Add";
this.toolStripButton28.Click += new System.EventHandler(this.ToolStripButton28_Click);
//
// toolStripSeparator51
//
this.toolStripSeparator51.Name = "toolStripSeparator51";
- this.toolStripSeparator51.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator51.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton29
//
@@ -3948,7 +4042,7 @@ private void InitializeComponent()
this.toolStripButton29.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton29.Image")));
this.toolStripButton29.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton29.Name = "toolStripButton29";
- this.toolStripButton29.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton29.Size = new System.Drawing.Size(47, 24);
this.toolStripButton29.Text = "Clear";
this.toolStripButton29.Click += new System.EventHandler(this.ToolStripButton29_Click);
//
@@ -3957,9 +4051,10 @@ private void InitializeComponent()
this.panel37.Controls.Add(this.dataGridViewIRDIConnectorTempData);
this.panel37.Controls.Add(this.toolStrip22);
this.panel37.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel37.Location = new System.Drawing.Point(3, 3);
+ this.panel37.Location = new System.Drawing.Point(4, 4);
+ this.panel37.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel37.Name = "panel37";
- this.panel37.Size = new System.Drawing.Size(623, 129);
+ this.panel37.Size = new System.Drawing.Size(833, 159);
this.panel37.TabIndex = 0;
//
// dataGridViewIRDIConnectorTempData
@@ -3971,10 +4066,11 @@ private void InitializeComponent()
this.Column29,
this.Column30});
this.dataGridViewIRDIConnectorTempData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewIRDIConnectorTempData.Location = new System.Drawing.Point(0, 25);
+ this.dataGridViewIRDIConnectorTempData.Location = new System.Drawing.Point(0, 27);
+ this.dataGridViewIRDIConnectorTempData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIRDIConnectorTempData.Name = "dataGridViewIRDIConnectorTempData";
this.dataGridViewIRDIConnectorTempData.RowHeadersWidth = 51;
- this.dataGridViewIRDIConnectorTempData.Size = new System.Drawing.Size(623, 104);
+ this.dataGridViewIRDIConnectorTempData.Size = new System.Drawing.Size(833, 132);
this.dataGridViewIRDIConnectorTempData.TabIndex = 1;
//
// Column27
@@ -4015,7 +4111,7 @@ private void InitializeComponent()
this.toolStripButton27});
this.toolStrip22.Location = new System.Drawing.Point(0, 0);
this.toolStrip22.Name = "toolStrip22";
- this.toolStrip22.Size = new System.Drawing.Size(623, 25);
+ this.toolStrip22.Size = new System.Drawing.Size(833, 27);
this.toolStrip22.TabIndex = 0;
this.toolStrip22.Text = "toolStrip22";
//
@@ -4023,7 +4119,7 @@ private void InitializeComponent()
//
this.toolStripLabel25.Enabled = false;
this.toolStripLabel25.Name = "toolStripLabel25";
- this.toolStripLabel25.Size = new System.Drawing.Size(163, 22);
+ this.toolStripLabel25.Size = new System.Drawing.Size(202, 24);
this.toolStripLabel25.Text = "Connector Temperature Info :";
//
// toolStripButton26
@@ -4032,14 +4128,14 @@ private void InitializeComponent()
this.toolStripButton26.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton26.Image")));
this.toolStripButton26.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton26.Name = "toolStripButton26";
- this.toolStripButton26.Size = new System.Drawing.Size(33, 22);
+ this.toolStripButton26.Size = new System.Drawing.Size(41, 24);
this.toolStripButton26.Text = "Add";
this.toolStripButton26.Click += new System.EventHandler(this.ToolStripButton26_Click);
//
// toolStripSeparator50
//
this.toolStripSeparator50.Name = "toolStripSeparator50";
- this.toolStripSeparator50.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator50.Size = new System.Drawing.Size(6, 27);
//
// toolStripButton27
//
@@ -4047,7 +4143,7 @@ private void InitializeComponent()
this.toolStripButton27.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton27.Image")));
this.toolStripButton27.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton27.Name = "toolStripButton27";
- this.toolStripButton27.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton27.Size = new System.Drawing.Size(47, 24);
this.toolStripButton27.Text = "Clear";
this.toolStripButton27.Click += new System.EventHandler(this.ToolStripButton27_Click);
//
@@ -4066,16 +4162,16 @@ private void InitializeComponent()
this.toolStripButton5,
this.toolStripSeparator21,
this.interfacecollection});
- this.toolStrip13.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip13.Location = new System.Drawing.Point(0, 28);
this.toolStrip13.Name = "toolStrip13";
- this.toolStrip13.Size = new System.Drawing.Size(637, 27);
+ this.toolStrip13.Size = new System.Drawing.Size(849, 27);
this.toolStrip13.TabIndex = 2;
this.toolStrip13.Text = "toolStrip13";
//
// interfaceNumberdrpdwn
//
this.interfaceNumberdrpdwn.Name = "interfaceNumberdrpdwn";
- this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(119, 24);
+ this.interfaceNumberdrpdwn.Size = new System.Drawing.Size(149, 24);
this.interfaceNumberdrpdwn.Text = "Number of Interfaces";
//
// toolStripSeparator17
@@ -4086,7 +4182,7 @@ private void InitializeComponent()
// interfacesNumberTxtbx
//
this.interfacesNumberTxtbx.Name = "interfacesNumberTxtbx";
- this.interfacesNumberTxtbx.Size = new System.Drawing.Size(75, 27);
+ this.interfacesNumberTxtbx.Size = new System.Drawing.Size(99, 27);
//
// toolStripSeparator18
//
@@ -4099,7 +4195,7 @@ private void InitializeComponent()
this.addInterfaces.Image = ((System.Drawing.Image)(resources.GetObject("addInterfaces.Image")));
this.addInterfaces.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addInterfaces.Name = "addInterfaces";
- this.addInterfaces.Size = new System.Drawing.Size(33, 24);
+ this.addInterfaces.Size = new System.Drawing.Size(41, 24);
this.addInterfaces.Text = "Add";
this.addInterfaces.Click += new System.EventHandler(this.ToolStripButton3_Click_1);
//
@@ -4114,7 +4210,7 @@ private void InitializeComponent()
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton4.Name = "toolStripButton4";
- this.toolStripButton4.Size = new System.Drawing.Size(44, 24);
+ this.toolStripButton4.Size = new System.Drawing.Size(57, 24);
this.toolStripButton4.Text = "Delete";
//
// toolStripSeparator20
@@ -4128,7 +4224,7 @@ private void InitializeComponent()
this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton5.Name = "toolStripButton5";
- this.toolStripButton5.Size = new System.Drawing.Size(38, 24);
+ this.toolStripButton5.Size = new System.Drawing.Size(47, 24);
this.toolStripButton5.Text = "Clear";
//
// toolStripSeparator21
@@ -4143,7 +4239,7 @@ private void InitializeComponent()
this.interfacecollection.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datenbank_hinzufügen_30;
this.interfacecollection.ImageTransparentColor = System.Drawing.Color.Magenta;
this.interfacecollection.Name = "interfacecollection";
- this.interfacecollection.Size = new System.Drawing.Size(33, 24);
+ this.interfacecollection.Size = new System.Drawing.Size(34, 24);
this.interfacecollection.Text = "toolStripButton30";
//
// button2
@@ -4152,8 +4248,9 @@ private void InitializeComponent()
this.button2.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.button2.Location = new System.Drawing.Point(0, 0);
+ this.button2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(637, 23);
+ this.button2.Size = new System.Drawing.Size(849, 28);
this.button2.TabIndex = 0;
this.button2.Text = "Electrical Interface";
this.button2.UseVisualStyleBackColor = true;
@@ -4163,25 +4260,16 @@ private void InitializeComponent()
//
this.tabPage6.AutoScroll = true;
this.tabPage6.BackColor = System.Drawing.Color.LightGray;
- this.tabPage6.Controls.Add(this.panel9);
- this.tabPage6.Location = new System.Drawing.Point(4, 22);
+ this.tabPage6.Controls.Add(this.panel14);
+ this.tabPage6.Controls.Add(this.panel10);
+ this.tabPage6.Location = new System.Drawing.Point(4, 25);
+ this.tabPage6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage6.Size = new System.Drawing.Size(643, 586);
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage6.Size = new System.Drawing.Size(869, 676);
this.tabPage6.TabIndex = 10;
this.tabPage6.Text = "Field attachables";
//
- // panel9
- //
- this.panel9.AutoScroll = true;
- this.panel9.Controls.Add(this.panel14);
- this.panel9.Controls.Add(this.panel10);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel9.Location = new System.Drawing.Point(3, 3);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(637, 580);
- this.panel9.TabIndex = 0;
- //
// panel14
//
this.panel14.BackColor = System.Drawing.Color.LightGray;
@@ -4189,11 +4277,12 @@ private void InitializeComponent()
this.panel14.Controls.Add(this.toolStrip30);
this.panel14.Controls.Add(this.button10);
this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel14.Location = new System.Drawing.Point(0, 23);
- this.panel14.MaximumSize = new System.Drawing.Size(637, 250);
- this.panel14.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel14.Location = new System.Drawing.Point(4, 32);
+ this.panel14.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel14.MaximumSize = new System.Drawing.Size(849, 308);
+ this.panel14.MinimumSize = new System.Drawing.Size(849, 28);
this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(637, 23);
+ this.panel14.Size = new System.Drawing.Size(849, 308);
this.panel14.TabIndex = 1;
//
// tableLayoutPanel3
@@ -4201,8 +4290,8 @@ private void InitializeComponent()
this.tableLayoutPanel3.ColumnCount = 4;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.00001F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 59.99999F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 78F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
+ this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 123F));
this.tableLayoutPanel3.Controls.Add(this.label32, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.bomTxtbx, 1, 2);
this.tableLayoutPanel3.Controls.Add(this.button7, 2, 2);
@@ -4213,23 +4302,25 @@ private void InitializeComponent()
this.tableLayoutPanel3.Controls.Add(this.DofcTxtbx, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.button9, 2, 0);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 48);
+ this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 55);
+ this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 4;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(637, 113);
+ this.tableLayoutPanel3.Size = new System.Drawing.Size(849, 139);
this.tableLayoutPanel3.TabIndex = 3;
//
// label32
//
this.label32.AutoSize = true;
this.label32.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label32.Location = new System.Drawing.Point(3, 56);
+ this.label32.Location = new System.Drawing.Point(4, 68);
+ this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(187, 28);
+ this.label32.Size = new System.Drawing.Size(242, 34);
this.label32.TabIndex = 6;
this.label32.Text = "Bill of materials:";
this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -4238,16 +4329,18 @@ private void InitializeComponent()
//
this.bomTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.bomTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.bomTxtbx.Location = new System.Drawing.Point(196, 59);
+ this.bomTxtbx.Location = new System.Drawing.Point(254, 72);
+ this.bomTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.bomTxtbx.Name = "bomTxtbx";
- this.bomTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.bomTxtbx.Size = new System.Drawing.Size(367, 22);
this.bomTxtbx.TabIndex = 7;
//
// button7
//
- this.button7.Location = new System.Drawing.Point(486, 59);
+ this.button7.Location = new System.Drawing.Point(629, 72);
+ this.button7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(69, 21);
+ this.button7.Size = new System.Drawing.Size(92, 26);
this.button7.TabIndex = 8;
this.button7.Text = "Upload";
this.button7.UseVisualStyleBackColor = true;
@@ -4257,9 +4350,10 @@ private void InitializeComponent()
//
this.label33.AutoSize = true;
this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label33.Location = new System.Drawing.Point(3, 28);
+ this.label33.Location = new System.Drawing.Point(4, 34);
+ this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(187, 28);
+ this.label33.Size = new System.Drawing.Size(242, 34);
this.label33.TabIndex = 3;
this.label33.Text = "Short Guide:";
this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -4268,17 +4362,19 @@ private void InitializeComponent()
//
this.shortGuideTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.shortGuideTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.shortGuideTxtbx.Location = new System.Drawing.Point(196, 31);
+ this.shortGuideTxtbx.Location = new System.Drawing.Point(254, 38);
+ this.shortGuideTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.shortGuideTxtbx.Name = "shortGuideTxtbx";
- this.shortGuideTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.shortGuideTxtbx.Size = new System.Drawing.Size(367, 22);
this.shortGuideTxtbx.TabIndex = 4;
//
// button8
//
this.button8.Dock = System.Windows.Forms.DockStyle.Left;
- this.button8.Location = new System.Drawing.Point(486, 31);
+ this.button8.Location = new System.Drawing.Point(629, 38);
+ this.button8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(69, 22);
+ this.button8.Size = new System.Drawing.Size(92, 26);
this.button8.TabIndex = 5;
this.button8.Text = "Upload";
this.button8.UseVisualStyleBackColor = true;
@@ -4288,9 +4384,10 @@ private void InitializeComponent()
//
this.label34.AutoSize = true;
this.label34.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label34.Location = new System.Drawing.Point(3, 0);
+ this.label34.Location = new System.Drawing.Point(4, 0);
+ this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(187, 28);
+ this.label34.Size = new System.Drawing.Size(242, 34);
this.label34.TabIndex = 0;
this.label34.Text = "Decleration of Conformity:";
this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -4299,17 +4396,19 @@ private void InitializeComponent()
//
this.DofcTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.DofcTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DofcTxtbx.Location = new System.Drawing.Point(196, 3);
+ this.DofcTxtbx.Location = new System.Drawing.Point(254, 4);
+ this.DofcTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.DofcTxtbx.Name = "DofcTxtbx";
- this.DofcTxtbx.Size = new System.Drawing.Size(284, 20);
+ this.DofcTxtbx.Size = new System.Drawing.Size(367, 22);
this.DofcTxtbx.TabIndex = 1;
//
// button9
//
this.button9.Dock = System.Windows.Forms.DockStyle.Left;
- this.button9.Location = new System.Drawing.Point(486, 3);
+ this.button9.Location = new System.Drawing.Point(629, 4);
+ this.button9.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(69, 22);
+ this.button9.Size = new System.Drawing.Size(92, 26);
this.button9.TabIndex = 2;
this.button9.Text = "Upload";
this.button9.UseVisualStyleBackColor = true;
@@ -4321,9 +4420,9 @@ private void InitializeComponent()
this.toolStrip30.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton36,
this.toolStripButton39});
- this.toolStrip30.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip30.Location = new System.Drawing.Point(0, 28);
this.toolStrip30.Name = "toolStrip30";
- this.toolStrip30.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip30.Size = new System.Drawing.Size(849, 27);
this.toolStrip30.TabIndex = 2;
this.toolStrip30.Text = "toolStrip30";
//
@@ -4334,7 +4433,7 @@ private void InitializeComponent()
this.toolStripButton36.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton36.Image")));
this.toolStripButton36.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton36.Name = "toolStripButton36";
- this.toolStripButton36.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton36.Size = new System.Drawing.Size(57, 24);
this.toolStripButton36.Text = "Cancel";
//
// toolStripButton39
@@ -4344,7 +4443,7 @@ private void InitializeComponent()
this.toolStripButton39.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton39.Image")));
this.toolStripButton39.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton39.Name = "toolStripButton39";
- this.toolStripButton39.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton39.Size = new System.Drawing.Size(44, 24);
this.toolStripButton39.Text = "Save";
//
// button10
@@ -4354,8 +4453,9 @@ private void InitializeComponent()
this.button10.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_expand_arrow_24;
this.button10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
this.button10.Location = new System.Drawing.Point(0, 0);
+ this.button10.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(637, 23);
+ this.button10.Size = new System.Drawing.Size(849, 28);
this.button10.TabIndex = 0;
this.button10.Text = "+ Add Documents ";
this.button10.UseVisualStyleBackColor = false;
@@ -4368,11 +4468,12 @@ private void InitializeComponent()
this.panel10.Controls.Add(this.toolStrip29);
this.panel10.Controls.Add(this.button1);
this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel10.Location = new System.Drawing.Point(0, 0);
- this.panel10.MaximumSize = new System.Drawing.Size(637, 250);
- this.panel10.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel10.Location = new System.Drawing.Point(4, 4);
+ this.panel10.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.panel10.MaximumSize = new System.Drawing.Size(849, 308);
+ this.panel10.MinimumSize = new System.Drawing.Size(849, 28);
this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(637, 23);
+ this.panel10.Size = new System.Drawing.Size(849, 28);
this.panel10.TabIndex = 0;
//
// tableLayoutPanel2
@@ -4391,41 +4492,45 @@ private void InitializeComponent()
this.tableLayoutPanel2.Controls.Add(this.addVendorLogoTxtbx, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.button4, 2, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 48);
+ this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 55);
+ this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 4;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(637, 113);
+ this.tableLayoutPanel2.Size = new System.Drawing.Size(849, 139);
this.tableLayoutPanel2.TabIndex = 2;
//
// label31
//
this.label31.AutoSize = true;
this.label31.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label31.Location = new System.Drawing.Point(3, 56);
+ this.label31.Location = new System.Drawing.Point(4, 68);
+ this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(176, 28);
+ this.label31.Size = new System.Drawing.Size(234, 34);
this.label31.TabIndex = 6;
- this.label31.Text = "Add Device Picture:";
+ this.label31.Text = "Device Picture:";
this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// addDevicePictureTxtbx
//
this.addDevicePictureTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.addDevicePictureTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.addDevicePictureTxtbx.Location = new System.Drawing.Point(185, 59);
+ this.addDevicePictureTxtbx.Location = new System.Drawing.Point(246, 72);
+ this.addDevicePictureTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addDevicePictureTxtbx.Name = "addDevicePictureTxtbx";
- this.addDevicePictureTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addDevicePictureTxtbx.Size = new System.Drawing.Size(355, 22);
this.addDevicePictureTxtbx.TabIndex = 7;
//
// button6
//
- this.button6.Location = new System.Drawing.Point(457, 59);
+ this.button6.Location = new System.Drawing.Point(609, 72);
+ this.button6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(75, 21);
+ this.button6.Size = new System.Drawing.Size(100, 26);
this.button6.TabIndex = 8;
this.button6.Text = "Upload";
this.button6.UseVisualStyleBackColor = true;
@@ -4435,28 +4540,31 @@ private void InitializeComponent()
//
this.label30.AutoSize = true;
this.label30.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label30.Location = new System.Drawing.Point(3, 28);
+ this.label30.Location = new System.Drawing.Point(4, 34);
+ this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(176, 28);
+ this.label30.Size = new System.Drawing.Size(234, 34);
this.label30.TabIndex = 3;
- this.label30.Text = "Add Device Icon:";
+ this.label30.Text = "Device Icon:";
this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// addDeviceIconTxtbx
//
this.addDeviceIconTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.addDeviceIconTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.addDeviceIconTxtbx.Location = new System.Drawing.Point(185, 31);
+ this.addDeviceIconTxtbx.Location = new System.Drawing.Point(246, 38);
+ this.addDeviceIconTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addDeviceIconTxtbx.Name = "addDeviceIconTxtbx";
- this.addDeviceIconTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addDeviceIconTxtbx.Size = new System.Drawing.Size(355, 22);
this.addDeviceIconTxtbx.TabIndex = 4;
//
// button5
//
this.button5.Dock = System.Windows.Forms.DockStyle.Left;
- this.button5.Location = new System.Drawing.Point(457, 31);
+ this.button5.Location = new System.Drawing.Point(609, 38);
+ this.button5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(75, 22);
+ this.button5.Size = new System.Drawing.Size(100, 26);
this.button5.TabIndex = 5;
this.button5.Text = "Upload";
this.button5.UseVisualStyleBackColor = true;
@@ -4466,28 +4574,31 @@ private void InitializeComponent()
//
this.label29.AutoSize = true;
this.label29.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label29.Location = new System.Drawing.Point(3, 0);
+ this.label29.Location = new System.Drawing.Point(4, 0);
+ this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(176, 28);
+ this.label29.Size = new System.Drawing.Size(234, 34);
this.label29.TabIndex = 0;
- this.label29.Text = "Add Vendor Logo:";
+ this.label29.Text = "Vendor Logo:";
this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// addVendorLogoTxtbx
//
this.addVendorLogoTxtbx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.addVendorLogoTxtbx.Dock = System.Windows.Forms.DockStyle.Fill;
- this.addVendorLogoTxtbx.Location = new System.Drawing.Point(185, 3);
+ this.addVendorLogoTxtbx.Location = new System.Drawing.Point(246, 4);
+ this.addVendorLogoTxtbx.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addVendorLogoTxtbx.Name = "addVendorLogoTxtbx";
- this.addVendorLogoTxtbx.Size = new System.Drawing.Size(266, 20);
+ this.addVendorLogoTxtbx.Size = new System.Drawing.Size(355, 22);
this.addVendorLogoTxtbx.TabIndex = 1;
//
// button4
//
this.button4.Dock = System.Windows.Forms.DockStyle.Left;
- this.button4.Location = new System.Drawing.Point(457, 3);
+ this.button4.Location = new System.Drawing.Point(609, 4);
+ this.button4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(75, 22);
+ this.button4.Size = new System.Drawing.Size(100, 26);
this.button4.TabIndex = 2;
this.button4.Text = "Upload";
this.button4.UseVisualStyleBackColor = true;
@@ -4499,9 +4610,9 @@ private void InitializeComponent()
this.toolStrip29.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton37,
this.toolStripButton38});
- this.toolStrip29.Location = new System.Drawing.Point(0, 23);
+ this.toolStrip29.Location = new System.Drawing.Point(0, 28);
this.toolStrip29.Name = "toolStrip29";
- this.toolStrip29.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip29.Size = new System.Drawing.Size(849, 27);
this.toolStrip29.TabIndex = 1;
this.toolStrip29.Text = "toolStrip29";
//
@@ -4512,7 +4623,7 @@ private void InitializeComponent()
this.toolStripButton37.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton37.Image")));
this.toolStripButton37.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton37.Name = "toolStripButton37";
- this.toolStripButton37.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton37.Size = new System.Drawing.Size(57, 24);
this.toolStripButton37.Text = "Cancel";
//
// toolStripButton38
@@ -4522,7 +4633,7 @@ private void InitializeComponent()
this.toolStripButton38.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton38.Image")));
this.toolStripButton38.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton38.Name = "toolStripButton38";
- this.toolStripButton38.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton38.Size = new System.Drawing.Size(44, 24);
this.toolStripButton38.Text = "Save";
//
// button1
@@ -4534,7 +4645,7 @@ private void InitializeComponent()
this.button1.Location = new System.Drawing.Point(0, 0);
this.button1.Margin = new System.Windows.Forms.Padding(0);
this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(637, 23);
+ this.button1.Size = new System.Drawing.Size(849, 28);
this.button1.TabIndex = 0;
this.button1.Text = "+ Add Logo";
this.button1.UseVisualStyleBackColor = false;
@@ -4547,11 +4658,11 @@ private void InitializeComponent()
this.tabPage2.Controls.Add(this.panel29);
this.tabPage2.Controls.Add(this.panel28);
this.tabPage2.Controls.Add(this.panel27);
- this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage2.Size = new System.Drawing.Size(643, 586);
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage2.Size = new System.Drawing.Size(869, 676);
this.tabPage2.TabIndex = 11;
this.tabPage2.Text = "Generic Data";
//
@@ -4561,12 +4672,12 @@ private void InitializeComponent()
this.panel29.Controls.Add(this.tabControl4);
this.panel29.Controls.Add(this.button33);
this.panel29.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel29.Location = new System.Drawing.Point(3, 49);
+ this.panel29.Location = new System.Drawing.Point(4, 60);
this.panel29.Margin = new System.Windows.Forms.Padding(0);
- this.panel29.MaximumSize = new System.Drawing.Size(637, 300);
- this.panel29.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel29.MaximumSize = new System.Drawing.Size(849, 369);
+ this.panel29.MinimumSize = new System.Drawing.Size(849, 28);
this.panel29.Name = "panel29";
- this.panel29.Size = new System.Drawing.Size(637, 23);
+ this.panel29.Size = new System.Drawing.Size(849, 28);
this.panel29.TabIndex = 2;
//
// toolStrip8
@@ -4579,9 +4690,9 @@ private void InitializeComponent()
this.toolStripLabel12,
this.toolStripSeparator14,
this.toolStripTextBox8});
- this.toolStrip8.Location = new System.Drawing.Point(0, 239);
+ this.toolStrip8.Location = new System.Drawing.Point(0, 294);
this.toolStrip8.Name = "toolStrip8";
- this.toolStrip8.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip8.Size = new System.Drawing.Size(849, 27);
this.toolStrip8.TabIndex = 3;
this.toolStrip8.Text = "toolStrip8";
//
@@ -4592,7 +4703,7 @@ private void InitializeComponent()
this.toolStripButton12.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton12.Image")));
this.toolStripButton12.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton12.Name = "toolStripButton12";
- this.toolStripButton12.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton12.Size = new System.Drawing.Size(47, 24);
this.toolStripButton12.Text = "Clear";
//
// toolStripButton13
@@ -4602,7 +4713,7 @@ private void InitializeComponent()
this.toolStripButton13.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton13.Image")));
this.toolStripButton13.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton13.Name = "toolStripButton13";
- this.toolStripButton13.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton13.Size = new System.Drawing.Size(57, 24);
this.toolStripButton13.Text = "Cancel";
//
// toolStripButton14
@@ -4612,24 +4723,24 @@ private void InitializeComponent()
this.toolStripButton14.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton14.Image")));
this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton14.Name = "toolStripButton14";
- this.toolStripButton14.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton14.Size = new System.Drawing.Size(44, 24);
this.toolStripButton14.Text = "Save";
//
// toolStripLabel12
//
this.toolStripLabel12.Name = "toolStripLabel12";
- this.toolStripLabel12.Size = new System.Drawing.Size(111, 22);
+ this.toolStripLabel12.Size = new System.Drawing.Size(140, 24);
this.toolStripLabel12.Text = "Ref Semantic Prefix:";
//
// toolStripSeparator14
//
this.toolStripSeparator14.Name = "toolStripSeparator14";
- this.toolStripSeparator14.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator14.Size = new System.Drawing.Size(6, 27);
//
// toolStripTextBox8
//
this.toolStripTextBox8.Name = "toolStripTextBox8";
- this.toolStripTextBox8.Size = new System.Drawing.Size(100, 25);
+ this.toolStripTextBox8.Size = new System.Drawing.Size(132, 27);
//
// tabControl4
//
@@ -4638,22 +4749,22 @@ private void InitializeComponent()
this.tabControl4.Controls.Add(this.tabPage16);
this.tabControl4.Controls.Add(this.tabPage17);
this.tabControl4.Dock = System.Windows.Forms.DockStyle.Top;
- this.tabControl4.Location = new System.Drawing.Point(0, 23);
+ this.tabControl4.Location = new System.Drawing.Point(0, 28);
this.tabControl4.Margin = new System.Windows.Forms.Padding(0);
this.tabControl4.Name = "tabControl4";
this.tabControl4.SelectedIndex = 0;
- this.tabControl4.Size = new System.Drawing.Size(637, 216);
+ this.tabControl4.Size = new System.Drawing.Size(849, 266);
this.tabControl4.TabIndex = 2;
//
// tabPage14
//
this.tabPage14.BackColor = System.Drawing.Color.LightGray;
this.tabPage14.Controls.Add(this.dataGridViewPD);
- this.tabPage14.Location = new System.Drawing.Point(4, 22);
+ this.tabPage14.Location = new System.Drawing.Point(4, 25);
this.tabPage14.Margin = new System.Windows.Forms.Padding(0);
this.tabPage14.Name = "tabPage14";
- this.tabPage14.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage14.Size = new System.Drawing.Size(629, 190);
+ this.tabPage14.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage14.Size = new System.Drawing.Size(841, 237);
this.tabPage14.TabIndex = 0;
this.tabPage14.Text = "Product Details";
//
@@ -4665,10 +4776,11 @@ private void InitializeComponent()
this.Attribute,
this.Description});
this.dataGridViewPD.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewPD.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewPD.Location = new System.Drawing.Point(4, 4);
+ this.dataGridViewPD.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewPD.Name = "dataGridViewPD";
this.dataGridViewPD.RowHeadersWidth = 51;
- this.dataGridViewPD.Size = new System.Drawing.Size(623, 184);
+ this.dataGridViewPD.Size = new System.Drawing.Size(833, 229);
this.dataGridViewPD.TabIndex = 0;
//
// ReferenceID
@@ -4696,11 +4808,11 @@ private void InitializeComponent()
//
this.tabPage15.BackColor = System.Drawing.Color.LightGray;
this.tabPage15.Controls.Add(this.dataGridViewPOD);
- this.tabPage15.Location = new System.Drawing.Point(4, 22);
+ this.tabPage15.Location = new System.Drawing.Point(4, 25);
this.tabPage15.Margin = new System.Windows.Forms.Padding(0);
this.tabPage15.Name = "tabPage15";
- this.tabPage15.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage15.Size = new System.Drawing.Size(629, 190);
+ this.tabPage15.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage15.Size = new System.Drawing.Size(841, 237);
this.tabPage15.TabIndex = 1;
this.tabPage15.Text = "Product Order Details";
//
@@ -4712,10 +4824,11 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn2,
this.dataGridViewTextBoxColumn3});
this.dataGridViewPOD.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewPOD.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewPOD.Location = new System.Drawing.Point(4, 4);
+ this.dataGridViewPOD.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewPOD.Name = "dataGridViewPOD";
this.dataGridViewPOD.RowHeadersWidth = 51;
- this.dataGridViewPOD.Size = new System.Drawing.Size(623, 184);
+ this.dataGridViewPOD.Size = new System.Drawing.Size(833, 229);
this.dataGridViewPOD.TabIndex = 1;
//
// dataGridViewTextBoxColumn1
@@ -4744,9 +4857,10 @@ private void InitializeComponent()
this.tabPage16.BackColor = System.Drawing.Color.LightGray;
this.tabPage16.Controls.Add(this.panel34);
this.tabPage16.Controls.Add(this.toolStrip12);
- this.tabPage16.Location = new System.Drawing.Point(4, 22);
+ this.tabPage16.Location = new System.Drawing.Point(4, 25);
+ this.tabPage16.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage16.Name = "tabPage16";
- this.tabPage16.Size = new System.Drawing.Size(629, 190);
+ this.tabPage16.Size = new System.Drawing.Size(841, 237);
this.tabPage16.TabIndex = 2;
this.tabPage16.Text = "Product Price Details";
//
@@ -4754,9 +4868,10 @@ private void InitializeComponent()
//
this.panel34.Controls.Add(this.dataGridViewPPD);
this.panel34.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel34.Location = new System.Drawing.Point(0, 25);
+ this.panel34.Location = new System.Drawing.Point(0, 27);
+ this.panel34.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel34.Name = "panel34";
- this.panel34.Size = new System.Drawing.Size(629, 153);
+ this.panel34.Size = new System.Drawing.Size(841, 188);
this.panel34.TabIndex = 3;
//
// dataGridViewPPD
@@ -4768,9 +4883,10 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn6});
this.dataGridViewPPD.Dock = System.Windows.Forms.DockStyle.Top;
this.dataGridViewPPD.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewPPD.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewPPD.Name = "dataGridViewPPD";
this.dataGridViewPPD.RowHeadersWidth = 51;
- this.dataGridViewPPD.Size = new System.Drawing.Size(629, 190);
+ this.dataGridViewPPD.Size = new System.Drawing.Size(841, 234);
this.dataGridViewPPD.TabIndex = 1;
//
// dataGridViewTextBoxColumn4
@@ -4807,55 +4923,56 @@ private void InitializeComponent()
this.toolStripTextBox3});
this.toolStrip12.Location = new System.Drawing.Point(0, 0);
this.toolStrip12.Name = "toolStrip12";
- this.toolStrip12.Size = new System.Drawing.Size(629, 25);
+ this.toolStrip12.Size = new System.Drawing.Size(841, 27);
this.toolStrip12.TabIndex = 2;
this.toolStrip12.Text = "toolStrip12";
//
// toolStripLabel3
//
this.toolStripLabel3.Name = "toolStripLabel3";
- this.toolStripLabel3.Size = new System.Drawing.Size(89, 22);
+ this.toolStripLabel3.Size = new System.Drawing.Size(116, 24);
this.toolStripLabel3.Text = "Valid Start Date:";
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
- this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator10.Size = new System.Drawing.Size(6, 27);
//
// toolStripTextBox2
//
this.toolStripTextBox2.Name = "toolStripTextBox2";
- this.toolStripTextBox2.Size = new System.Drawing.Size(100, 25);
+ this.toolStripTextBox2.Size = new System.Drawing.Size(132, 27);
//
// toolStripSeparator11
//
this.toolStripSeparator11.Name = "toolStripSeparator11";
- this.toolStripSeparator11.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator11.Size = new System.Drawing.Size(6, 27);
//
// toolStripLabel6
//
this.toolStripLabel6.Name = "toolStripLabel6";
- this.toolStripLabel6.Size = new System.Drawing.Size(85, 22);
+ this.toolStripLabel6.Size = new System.Drawing.Size(110, 24);
this.toolStripLabel6.Text = "Valid End Date:";
//
// toolStripSeparator12
//
this.toolStripSeparator12.Name = "toolStripSeparator12";
- this.toolStripSeparator12.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator12.Size = new System.Drawing.Size(6, 27);
//
// toolStripTextBox3
//
this.toolStripTextBox3.Name = "toolStripTextBox3";
- this.toolStripTextBox3.Size = new System.Drawing.Size(100, 25);
+ this.toolStripTextBox3.Size = new System.Drawing.Size(132, 27);
//
// tabPage17
//
this.tabPage17.AutoScroll = true;
this.tabPage17.BackColor = System.Drawing.Color.LightGray;
this.tabPage17.Controls.Add(this.dataGridViewMD);
- this.tabPage17.Location = new System.Drawing.Point(4, 22);
+ this.tabPage17.Location = new System.Drawing.Point(4, 25);
+ this.tabPage17.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage17.Name = "tabPage17";
- this.tabPage17.Size = new System.Drawing.Size(629, 190);
+ this.tabPage17.Size = new System.Drawing.Size(841, 237);
this.tabPage17.TabIndex = 3;
this.tabPage17.Text = "Manufacturer Details";
//
@@ -4868,9 +4985,10 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn9});
this.dataGridViewMD.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewMD.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewMD.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewMD.Name = "dataGridViewMD";
this.dataGridViewMD.RowHeadersWidth = 51;
- this.dataGridViewMD.Size = new System.Drawing.Size(629, 190);
+ this.dataGridViewMD.Size = new System.Drawing.Size(841, 237);
this.dataGridViewMD.TabIndex = 1;
//
// dataGridViewTextBoxColumn7
@@ -4902,7 +5020,7 @@ private void InitializeComponent()
this.button33.Location = new System.Drawing.Point(0, 0);
this.button33.Margin = new System.Windows.Forms.Padding(0);
this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(637, 23);
+ this.button33.Size = new System.Drawing.Size(849, 28);
this.button33.TabIndex = 1;
this.button33.Text = "Commercial Data";
this.button33.UseVisualStyleBackColor = true;
@@ -4914,12 +5032,12 @@ private void InitializeComponent()
this.panel28.Controls.Add(this.tabControl3);
this.panel28.Controls.Add(this.button32);
this.panel28.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel28.Location = new System.Drawing.Point(3, 26);
+ this.panel28.Location = new System.Drawing.Point(4, 32);
this.panel28.Margin = new System.Windows.Forms.Padding(0);
- this.panel28.MaximumSize = new System.Drawing.Size(637, 197);
- this.panel28.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel28.MaximumSize = new System.Drawing.Size(849, 242);
+ this.panel28.MinimumSize = new System.Drawing.Size(849, 28);
this.panel28.Name = "panel28";
- this.panel28.Size = new System.Drawing.Size(637, 23);
+ this.panel28.Size = new System.Drawing.Size(849, 28);
this.panel28.TabIndex = 1;
//
// toolStrip7
@@ -4932,9 +5050,9 @@ private void InitializeComponent()
this.toolStripLabel11,
this.toolStripSeparator9,
this.toolStripTextBox7});
- this.toolStrip7.Location = new System.Drawing.Point(0, 172);
+ this.toolStrip7.Location = new System.Drawing.Point(0, 211);
this.toolStrip7.Name = "toolStrip7";
- this.toolStrip7.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip7.Size = new System.Drawing.Size(849, 27);
this.toolStrip7.TabIndex = 3;
this.toolStrip7.Text = "toolStrip7";
//
@@ -4945,7 +5063,7 @@ private void InitializeComponent()
this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton9.Name = "toolStripButton9";
- this.toolStripButton9.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton9.Size = new System.Drawing.Size(47, 24);
this.toolStripButton9.Text = "Clear";
//
// toolStripButton10
@@ -4955,7 +5073,7 @@ private void InitializeComponent()
this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton10.Name = "toolStripButton10";
- this.toolStripButton10.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton10.Size = new System.Drawing.Size(57, 24);
this.toolStripButton10.Text = "Cancel";
//
// toolStripButton11
@@ -4965,24 +5083,24 @@ private void InitializeComponent()
this.toolStripButton11.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton11.Image")));
this.toolStripButton11.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton11.Name = "toolStripButton11";
- this.toolStripButton11.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton11.Size = new System.Drawing.Size(44, 24);
this.toolStripButton11.Text = "Save";
//
// toolStripLabel11
//
this.toolStripLabel11.Name = "toolStripLabel11";
- this.toolStripLabel11.Size = new System.Drawing.Size(111, 22);
+ this.toolStripLabel11.Size = new System.Drawing.Size(140, 24);
this.toolStripLabel11.Text = "Ref Semantic Prefix:";
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
- this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator9.Size = new System.Drawing.Size(6, 27);
//
// toolStripTextBox7
//
this.toolStripTextBox7.Name = "toolStripTextBox7";
- this.toolStripTextBox7.Size = new System.Drawing.Size(100, 25);
+ this.toolStripTextBox7.Size = new System.Drawing.Size(132, 27);
//
// tabControl3
//
@@ -4992,22 +5110,22 @@ private void InitializeComponent()
this.tabControl3.Controls.Add(this.tabPage12);
this.tabControl3.Controls.Add(this.tabPage13);
this.tabControl3.Dock = System.Windows.Forms.DockStyle.Top;
- this.tabControl3.Location = new System.Drawing.Point(0, 23);
+ this.tabControl3.Location = new System.Drawing.Point(0, 28);
this.tabControl3.Margin = new System.Windows.Forms.Padding(0);
this.tabControl3.Name = "tabControl3";
this.tabControl3.SelectedIndex = 0;
- this.tabControl3.Size = new System.Drawing.Size(637, 149);
+ this.tabControl3.Size = new System.Drawing.Size(849, 183);
this.tabControl3.TabIndex = 2;
//
// tabPage9
//
this.tabPage9.BackColor = System.Drawing.Color.LightGray;
this.tabPage9.Controls.Add(this.dataGridViewMechData);
- this.tabPage9.Location = new System.Drawing.Point(4, 22);
+ this.tabPage9.Location = new System.Drawing.Point(4, 25);
this.tabPage9.Margin = new System.Windows.Forms.Padding(0);
this.tabPage9.Name = "tabPage9";
- this.tabPage9.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage9.Size = new System.Drawing.Size(629, 123);
+ this.tabPage9.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage9.Size = new System.Drawing.Size(841, 154);
this.tabPage9.TabIndex = 0;
this.tabPage9.Text = "Mechanical Data";
//
@@ -5019,10 +5137,11 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn11,
this.dataGridViewTextBoxColumn12});
this.dataGridViewMechData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewMechData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMechData.Location = new System.Drawing.Point(4, 4);
+ this.dataGridViewMechData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewMechData.Name = "dataGridViewMechData";
this.dataGridViewMechData.RowHeadersWidth = 51;
- this.dataGridViewMechData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMechData.Size = new System.Drawing.Size(833, 146);
this.dataGridViewMechData.TabIndex = 1;
//
// dataGridViewTextBoxColumn10
@@ -5050,11 +5169,11 @@ private void InitializeComponent()
//
this.tabPage10.BackColor = System.Drawing.Color.LightGray;
this.tabPage10.Controls.Add(this.dataGridViewMaterialData);
- this.tabPage10.Location = new System.Drawing.Point(4, 22);
+ this.tabPage10.Location = new System.Drawing.Point(4, 25);
this.tabPage10.Margin = new System.Windows.Forms.Padding(0);
this.tabPage10.Name = "tabPage10";
- this.tabPage10.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
- this.tabPage10.Size = new System.Drawing.Size(629, 123);
+ this.tabPage10.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.tabPage10.Size = new System.Drawing.Size(841, 154);
this.tabPage10.TabIndex = 1;
this.tabPage10.Text = "Material Data";
//
@@ -5066,10 +5185,11 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn14,
this.dataGridViewTextBoxColumn15});
this.dataGridViewMaterialData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dataGridViewMaterialData.Location = new System.Drawing.Point(3, 3);
+ this.dataGridViewMaterialData.Location = new System.Drawing.Point(4, 4);
+ this.dataGridViewMaterialData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewMaterialData.Name = "dataGridViewMaterialData";
this.dataGridViewMaterialData.RowHeadersWidth = 51;
- this.dataGridViewMaterialData.Size = new System.Drawing.Size(623, 117);
+ this.dataGridViewMaterialData.Size = new System.Drawing.Size(833, 146);
this.dataGridViewMaterialData.TabIndex = 1;
//
// dataGridViewTextBoxColumn13
@@ -5097,9 +5217,10 @@ private void InitializeComponent()
//
this.tabPage11.BackColor = System.Drawing.Color.LightGray;
this.tabPage11.Controls.Add(this.dataGridViewElectricalConnection);
- this.tabPage11.Location = new System.Drawing.Point(4, 22);
+ this.tabPage11.Location = new System.Drawing.Point(4, 25);
+ this.tabPage11.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage11.Name = "tabPage11";
- this.tabPage11.Size = new System.Drawing.Size(629, 123);
+ this.tabPage11.Size = new System.Drawing.Size(841, 154);
this.tabPage11.TabIndex = 2;
this.tabPage11.Text = "Electrical Connection";
//
@@ -5112,9 +5233,10 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn18});
this.dataGridViewElectricalConnection.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewElectricalConnection.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalConnection.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewElectricalConnection.Name = "dataGridViewElectricalConnection";
this.dataGridViewElectricalConnection.RowHeadersWidth = 51;
- this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalConnection.Size = new System.Drawing.Size(841, 154);
this.dataGridViewElectricalConnection.TabIndex = 1;
//
// dataGridViewTextBoxColumn16
@@ -5143,9 +5265,10 @@ private void InitializeComponent()
this.tabPage12.AutoScroll = true;
this.tabPage12.BackColor = System.Drawing.Color.LightGray;
this.tabPage12.Controls.Add(this.dataGridViewElectricalData);
- this.tabPage12.Location = new System.Drawing.Point(4, 22);
+ this.tabPage12.Location = new System.Drawing.Point(4, 25);
+ this.tabPage12.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage12.Name = "tabPage12";
- this.tabPage12.Size = new System.Drawing.Size(629, 123);
+ this.tabPage12.Size = new System.Drawing.Size(841, 154);
this.tabPage12.TabIndex = 3;
this.tabPage12.Text = "Electrical Data";
//
@@ -5158,9 +5281,10 @@ private void InitializeComponent()
this.dataGridViewTextBoxColumn21});
this.dataGridViewElectricalData.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewElectricalData.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewElectricalData.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewElectricalData.Name = "dataGridViewElectricalData";
this.dataGridViewElectricalData.RowHeadersWidth = 51;
- this.dataGridViewElectricalData.Size = new System.Drawing.Size(629, 123);
+ this.dataGridViewElectricalData.Size = new System.Drawing.Size(841, 154);
this.dataGridViewElectricalData.TabIndex = 1;
//
// dataGridViewTextBoxColumn19
@@ -5188,9 +5312,10 @@ private void InitializeComponent()
//
this.tabPage13.BackColor = System.Drawing.Color.LightGray;
this.tabPage13.Controls.Add(this.tableLayoutPanel17);
- this.tabPage13.Location = new System.Drawing.Point(4, 22);
+ this.tabPage13.Location = new System.Drawing.Point(4, 25);
+ this.tabPage13.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabPage13.Name = "tabPage13";
- this.tabPage13.Size = new System.Drawing.Size(629, 123);
+ this.tabPage13.Size = new System.Drawing.Size(841, 154);
this.tabPage13.TabIndex = 4;
this.tabPage13.Text = "Display";
//
@@ -5207,35 +5332,37 @@ private void InitializeComponent()
this.tableLayoutPanel17.Controls.Add(this.textBox84, 1, 0);
this.tableLayoutPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel17.Location = new System.Drawing.Point(0, 0);
+ this.tableLayoutPanel17.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanel17.Name = "tableLayoutPanel17";
this.tableLayoutPanel17.RowCount = 5;
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
+ this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel17.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel17.Size = new System.Drawing.Size(629, 123);
+ this.tableLayoutPanel17.Size = new System.Drawing.Size(841, 154);
this.tableLayoutPanel17.TabIndex = 2;
//
// textBox83
//
this.textBox83.Dock = System.Windows.Forms.DockStyle.Fill;
- this.textBox83.Location = new System.Drawing.Point(469, 0);
+ this.textBox83.Location = new System.Drawing.Point(629, 0);
this.textBox83.Margin = new System.Windows.Forms.Padding(0);
this.textBox83.Name = "textBox83";
- this.textBox83.Size = new System.Drawing.Size(160, 20);
+ this.textBox83.Size = new System.Drawing.Size(212, 22);
this.textBox83.TabIndex = 3;
//
// label115
//
this.label115.AutoSize = true;
this.label115.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label115.Location = new System.Drawing.Point(315, 0);
+ this.label115.Location = new System.Drawing.Point(423, 0);
+ this.label115.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label115.Name = "label115";
- this.label115.Size = new System.Drawing.Size(151, 25);
+ this.label115.Size = new System.Drawing.Size(202, 31);
this.label115.TabIndex = 2;
this.label115.Text = "Power Indicator:";
this.label115.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -5244,9 +5371,10 @@ private void InitializeComponent()
//
this.label116.AutoSize = true;
this.label116.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label116.Location = new System.Drawing.Point(3, 0);
+ this.label116.Location = new System.Drawing.Point(4, 0);
+ this.label116.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label116.Name = "label116";
- this.label116.Size = new System.Drawing.Size(143, 25);
+ this.label116.Size = new System.Drawing.Size(192, 31);
this.label116.TabIndex = 0;
this.label116.Text = "Function Indicator:";
this.label116.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@@ -5254,10 +5382,10 @@ private void InitializeComponent()
// textBox84
//
this.textBox84.Dock = System.Windows.Forms.DockStyle.Fill;
- this.textBox84.Location = new System.Drawing.Point(149, 0);
+ this.textBox84.Location = new System.Drawing.Point(200, 0);
this.textBox84.Margin = new System.Windows.Forms.Padding(0);
this.textBox84.Name = "textBox84";
- this.textBox84.Size = new System.Drawing.Size(163, 20);
+ this.textBox84.Size = new System.Drawing.Size(219, 22);
this.textBox84.TabIndex = 1;
//
// button32
@@ -5268,7 +5396,7 @@ private void InitializeComponent()
this.button32.Location = new System.Drawing.Point(0, 0);
this.button32.Margin = new System.Windows.Forms.Padding(0);
this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(637, 23);
+ this.button32.Size = new System.Drawing.Size(849, 28);
this.button32.TabIndex = 1;
this.button32.Text = "General Technical Data";
this.button32.UseVisualStyleBackColor = true;
@@ -5279,12 +5407,12 @@ private void InitializeComponent()
this.panel27.Controls.Add(this.panel32);
this.panel27.Controls.Add(this.button3);
this.panel27.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel27.Location = new System.Drawing.Point(3, 3);
+ this.panel27.Location = new System.Drawing.Point(4, 4);
this.panel27.Margin = new System.Windows.Forms.Padding(0);
- this.panel27.MaximumSize = new System.Drawing.Size(637, 194);
- this.panel27.MinimumSize = new System.Drawing.Size(637, 23);
+ this.panel27.MaximumSize = new System.Drawing.Size(849, 239);
+ this.panel27.MinimumSize = new System.Drawing.Size(849, 28);
this.panel27.Name = "panel27";
- this.panel27.Size = new System.Drawing.Size(637, 23);
+ this.panel27.Size = new System.Drawing.Size(849, 28);
this.panel27.TabIndex = 0;
//
// panel32
@@ -5292,9 +5420,10 @@ private void InitializeComponent()
this.panel32.Controls.Add(this.panel33);
this.panel32.Controls.Add(this.toolStrip6);
this.panel32.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel32.Location = new System.Drawing.Point(0, 23);
+ this.panel32.Location = new System.Drawing.Point(0, 28);
+ this.panel32.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel32.Name = "panel32";
- this.panel32.Size = new System.Drawing.Size(637, 157);
+ this.panel32.Size = new System.Drawing.Size(849, 193);
this.panel32.TabIndex = 3;
this.panel32.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel32_Paint);
//
@@ -5303,8 +5432,9 @@ private void InitializeComponent()
this.panel33.Controls.Add(this.dataGridViewIDT);
this.panel33.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel33.Location = new System.Drawing.Point(0, 0);
+ this.panel33.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.panel33.Name = "panel33";
- this.panel33.Size = new System.Drawing.Size(637, 132);
+ this.panel33.Size = new System.Drawing.Size(849, 166);
this.panel33.TabIndex = 1;
//
// dataGridViewIDT
@@ -5316,9 +5446,10 @@ private void InitializeComponent()
this.Column3});
this.dataGridViewIDT.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewIDT.Location = new System.Drawing.Point(0, 0);
+ this.dataGridViewIDT.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dataGridViewIDT.Name = "dataGridViewIDT";
this.dataGridViewIDT.RowHeadersWidth = 51;
- this.dataGridViewIDT.Size = new System.Drawing.Size(637, 132);
+ this.dataGridViewIDT.Size = new System.Drawing.Size(849, 166);
this.dataGridViewIDT.TabIndex = 0;
//
// Column1
@@ -5350,9 +5481,9 @@ private void InitializeComponent()
this.toolStripButton6,
this.toolStripButton7,
this.toolStripButton8});
- this.toolStrip6.Location = new System.Drawing.Point(0, 132);
+ this.toolStrip6.Location = new System.Drawing.Point(0, 166);
this.toolStrip6.Name = "toolStrip6";
- this.toolStrip6.Size = new System.Drawing.Size(637, 25);
+ this.toolStrip6.Size = new System.Drawing.Size(849, 27);
this.toolStrip6.TabIndex = 2;
this.toolStrip6.Text = "toolStrip6";
//
@@ -5363,7 +5494,7 @@ private void InitializeComponent()
this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton6.Name = "toolStripButton6";
- this.toolStripButton6.Size = new System.Drawing.Size(38, 22);
+ this.toolStripButton6.Size = new System.Drawing.Size(47, 24);
this.toolStripButton6.Text = "Clear";
this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6_Click);
//
@@ -5374,7 +5505,7 @@ private void InitializeComponent()
this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton7.Name = "toolStripButton7";
- this.toolStripButton7.Size = new System.Drawing.Size(47, 22);
+ this.toolStripButton7.Size = new System.Drawing.Size(57, 24);
this.toolStripButton7.Text = "Cancel";
//
// toolStripButton8
@@ -5384,7 +5515,7 @@ private void InitializeComponent()
this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton8.Name = "toolStripButton8";
- this.toolStripButton8.Size = new System.Drawing.Size(35, 22);
+ this.toolStripButton8.Size = new System.Drawing.Size(44, 24);
this.toolStripButton8.Text = "Save";
//
// button3
@@ -5395,7 +5526,7 @@ private void InitializeComponent()
this.button3.Location = new System.Drawing.Point(0, 0);
this.button3.Margin = new System.Windows.Forms.Padding(0);
this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(637, 23);
+ this.button3.Size = new System.Drawing.Size(849, 28);
this.button3.TabIndex = 0;
this.button3.Text = "Identification Data";
this.button3.UseVisualStyleBackColor = true;
@@ -5410,36 +5541,39 @@ private void InitializeComponent()
this.panel25.Controls.Add(this.treeView2);
this.panel25.Controls.Add(this.toolStrip11);
this.panel25.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel25.Location = new System.Drawing.Point(652, 52);
+ this.panel25.Location = new System.Drawing.Point(878, 55);
this.panel25.Margin = new System.Windows.Forms.Padding(0);
this.panel25.Name = "panel25";
- this.panel25.Size = new System.Drawing.Size(200, 580);
+ this.panel25.Size = new System.Drawing.Size(267, 746);
this.panel25.TabIndex = 50;
//
// pictureBox3
//
this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.pictureBox3.Location = new System.Drawing.Point(0, 346);
+ this.pictureBox3.Location = new System.Drawing.Point(0, 418);
+ this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.pictureBox3.Name = "pictureBox3";
- this.pictureBox3.Size = new System.Drawing.Size(200, 120);
+ this.pictureBox3.Size = new System.Drawing.Size(267, 148);
this.pictureBox3.TabIndex = 5;
this.pictureBox3.TabStop = false;
//
// pictureBox2
//
this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.pictureBox2.Location = new System.Drawing.Point(0, 266);
+ this.pictureBox2.Location = new System.Drawing.Point(0, 320);
+ this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(200, 80);
+ this.pictureBox2.Size = new System.Drawing.Size(267, 98);
this.pictureBox2.TabIndex = 4;
this.pictureBox2.TabStop = false;
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.pictureBox1.Location = new System.Drawing.Point(0, 186);
+ this.pictureBox1.Location = new System.Drawing.Point(0, 222);
+ this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(200, 80);
+ this.pictureBox1.Size = new System.Drawing.Size(267, 98);
this.pictureBox1.TabIndex = 3;
this.pictureBox1.TabStop = false;
//
@@ -5448,8 +5582,9 @@ private void InitializeComponent()
this.treeView2.BackColor = System.Drawing.Color.LightGray;
this.treeView2.Dock = System.Windows.Forms.DockStyle.Top;
this.treeView2.Location = new System.Drawing.Point(0, 25);
+ this.treeView2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.treeView2.Name = "treeView2";
- this.treeView2.Size = new System.Drawing.Size(200, 161);
+ this.treeView2.Size = new System.Drawing.Size(267, 197);
this.treeView2.TabIndex = 2;
this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView2_AfterSelect);
//
@@ -5460,14 +5595,14 @@ private void InitializeComponent()
this.toolStripLabel10});
this.toolStrip11.Location = new System.Drawing.Point(0, 0);
this.toolStrip11.Name = "toolStrip11";
- this.toolStrip11.Size = new System.Drawing.Size(200, 25);
+ this.toolStrip11.Size = new System.Drawing.Size(267, 25);
this.toolStrip11.TabIndex = 1;
this.toolStrip11.Text = "toolStrip11";
//
// toolStripLabel10
//
this.toolStripLabel10.Name = "toolStripLabel10";
- this.toolStripLabel10.Size = new System.Drawing.Size(85, 22);
+ this.toolStripLabel10.Size = new System.Drawing.Size(108, 22);
this.toolStripLabel10.Text = "Data Hierarchy";
//
// toolStrip5
@@ -5482,53 +5617,53 @@ private void InitializeComponent()
this.toolStripSeparator7,
this.versionTextBox,
this.toolStripSeparator13});
- this.toolStrip5.Location = new System.Drawing.Point(0, 27);
+ this.toolStrip5.Location = new System.Drawing.Point(0, 28);
this.toolStrip5.Name = "toolStrip5";
- this.toolStrip5.Size = new System.Drawing.Size(852, 25);
+ this.toolStrip5.Size = new System.Drawing.Size(1145, 27);
this.toolStrip5.TabIndex = 49;
this.toolStrip5.Text = "toolStrip5";
//
// toolStripLabel4
//
this.toolStripLabel4.Name = "toolStripLabel4";
- this.toolStripLabel4.Size = new System.Drawing.Size(121, 22);
+ this.toolStripLabel4.Size = new System.Drawing.Size(150, 24);
this.toolStripLabel4.Text = "Classification System:";
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
- this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator5.Size = new System.Drawing.Size(6, 27);
//
// classificationSystemTextBox
//
this.classificationSystemTextBox.Name = "classificationSystemTextBox";
- this.classificationSystemTextBox.Size = new System.Drawing.Size(100, 25);
+ this.classificationSystemTextBox.Size = new System.Drawing.Size(132, 27);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
- this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator6.Size = new System.Drawing.Size(6, 27);
//
// toolStripLabel5
//
this.toolStripLabel5.Name = "toolStripLabel5";
- this.toolStripLabel5.Size = new System.Drawing.Size(48, 22);
+ this.toolStripLabel5.Size = new System.Drawing.Size(60, 24);
this.toolStripLabel5.Text = "Version:";
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
- this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator7.Size = new System.Drawing.Size(6, 27);
//
// versionTextBox
//
this.versionTextBox.Name = "versionTextBox";
- this.versionTextBox.Size = new System.Drawing.Size(100, 25);
+ this.versionTextBox.Size = new System.Drawing.Size(132, 27);
//
// toolStripSeparator13
//
this.toolStripSeparator13.Name = "toolStripSeparator13";
- this.toolStripSeparator13.Size = new System.Drawing.Size(6, 25);
+ this.toolStripSeparator13.Size = new System.Drawing.Size(6, 27);
//
// toolStrip4
//
@@ -5545,37 +5680,36 @@ private void InitializeComponent()
this.generaterAML});
this.toolStrip4.Location = new System.Drawing.Point(0, 0);
this.toolStrip4.Name = "toolStrip4";
- this.toolStrip4.Size = new System.Drawing.Size(852, 27);
+ this.toolStrip4.Size = new System.Drawing.Size(1145, 28);
this.toolStrip4.TabIndex = 48;
this.toolStrip4.Text = "toolStrip4";
//
// semanticSystemdrpdwn
//
this.semanticSystemdrpdwn.Name = "semanticSystemdrpdwn";
- this.semanticSystemdrpdwn.Size = new System.Drawing.Size(110, 24);
+ this.semanticSystemdrpdwn.Size = new System.Drawing.Size(135, 25);
this.semanticSystemdrpdwn.Text = "Semantic System";
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
- this.toolStripSeparator3.Size = new System.Drawing.Size(6, 27);
+ this.toolStripSeparator3.Size = new System.Drawing.Size(6, 28);
//
// semanticSystemCmbx
//
this.semanticSystemCmbx.Items.AddRange(new object[] {
"eClass",
"Balluff",
- "IEC",
- "Daimler",
- "IEC-CDD"});
+ "IEC-CDD",
+ "Diamler"});
this.semanticSystemCmbx.Name = "semanticSystemCmbx";
- this.semanticSystemCmbx.Size = new System.Drawing.Size(121, 27);
+ this.semanticSystemCmbx.Size = new System.Drawing.Size(160, 28);
this.semanticSystemCmbx.Click += new System.EventHandler(this.SemanticSystemCmbx_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
- this.toolStripSeparator4.Size = new System.Drawing.Size(6, 27);
+ this.toolStripSeparator4.Size = new System.Drawing.Size(6, 28);
//
// addSemanticSystems
//
@@ -5583,14 +5717,14 @@ private void InitializeComponent()
this.addSemanticSystems.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_datei_hinzufügen_16;
this.addSemanticSystems.ImageTransparentColor = System.Drawing.Color.Magenta;
this.addSemanticSystems.Name = "addSemanticSystems";
- this.addSemanticSystems.Size = new System.Drawing.Size(24, 24);
+ this.addSemanticSystems.Size = new System.Drawing.Size(29, 25);
this.addSemanticSystems.Text = "addSemanticSystems";
this.addSemanticSystems.Click += new System.EventHandler(this.AddSemanticSystems_Click);
//
// toolStripSeparator15
//
this.toolStripSeparator15.Name = "toolStripSeparator15";
- this.toolStripSeparator15.Size = new System.Drawing.Size(6, 27);
+ this.toolStripSeparator15.Size = new System.Drawing.Size(6, 28);
//
// cancelSemanticSystem
//
@@ -5598,29 +5732,30 @@ private void InitializeComponent()
this.cancelSemanticSystem.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_abo_kündigen_16;
this.cancelSemanticSystem.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cancelSemanticSystem.Name = "cancelSemanticSystem";
- this.cancelSemanticSystem.Size = new System.Drawing.Size(24, 24);
+ this.cancelSemanticSystem.Size = new System.Drawing.Size(29, 25);
this.cancelSemanticSystem.Text = "toolStripButton3";
this.cancelSemanticSystem.Click += new System.EventHandler(this.ToolStripButton3_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
- this.toolStripSeparator8.Size = new System.Drawing.Size(6, 27);
+ this.toolStripSeparator8.Size = new System.Drawing.Size(6, 28);
//
// generaterAML
//
this.generaterAML.Image = global::Aml.Editor.Plugin.Properties.Resources.icons8_dienstleistungen_26__1_;
this.generaterAML.ImageTransparentColor = System.Drawing.Color.Magenta;
this.generaterAML.Name = "generaterAML";
- this.generaterAML.Size = new System.Drawing.Size(78, 24);
+ this.generaterAML.Size = new System.Drawing.Size(93, 25);
this.generaterAML.Text = "Generate";
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.statusStrip1.Location = new System.Drawing.Point(0, 735);
+ this.statusStrip1.Location = new System.Drawing.Point(0, 910);
this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(1090, 22);
+ this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
+ this.statusStrip1.Size = new System.Drawing.Size(1453, 22);
this.statusStrip1.TabIndex = 46;
this.statusStrip1.Text = "statusStrip1";
//
@@ -5632,22 +5767,22 @@ private void InitializeComponent()
this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1,
this.toolStripTextBox1});
- this.toolStrip3.Location = new System.Drawing.Point(0, 710);
+ this.toolStrip3.Location = new System.Drawing.Point(0, 883);
this.toolStrip3.Name = "toolStrip3";
- this.toolStrip3.Size = new System.Drawing.Size(1090, 25);
+ this.toolStrip3.Size = new System.Drawing.Size(1453, 27);
this.toolStrip3.TabIndex = 48;
this.toolStrip3.Text = "toolStrip3";
//
// toolStripLabel1
//
this.toolStripLabel1.Name = "toolStripLabel1";
- this.toolStripLabel1.Size = new System.Drawing.Size(83, 22);
+ this.toolStripLabel1.Size = new System.Drawing.Size(102, 24);
this.toolStripLabel1.Text = "Comment line";
//
// toolStripTextBox1
//
this.toolStripTextBox1.Name = "toolStripTextBox1";
- this.toolStripTextBox1.Size = new System.Drawing.Size(800, 25);
+ this.toolStripTextBox1.Size = new System.Drawing.Size(1065, 27);
//
// contextMenuStrip1
//
@@ -5663,7 +5798,7 @@ private void InitializeComponent()
//
// CreateDevice
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.Controls.Add(this.panel1);
@@ -5671,9 +5806,9 @@ private void InitializeComponent()
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.toolStrip3);
this.Controls.Add(this.statusStrip1);
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
+ this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "CreateDevice";
- this.Size = new System.Drawing.Size(1090, 757);
+ this.Size = new System.Drawing.Size(1453, 932);
this.Load += new System.EventHandler(this.CreateDevice_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
@@ -5705,7 +5840,9 @@ private void InitializeComponent()
this.tabPage3.PerformLayout();
this.tabPage4.ResumeLayout(false);
this.panel3.ResumeLayout(false);
- this.panel23.ResumeLayout(false);
+ this.panel3.PerformLayout();
+ this.toolStrip31.ResumeLayout(false);
+ this.toolStrip31.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tabPage5.ResumeLayout(false);
@@ -5801,7 +5938,6 @@ private void InitializeComponent()
this.toolStrip13.ResumeLayout(false);
this.toolStrip13.PerformLayout();
this.tabPage6.ResumeLayout(false);
- this.panel9.ResumeLayout(false);
this.panel14.ResumeLayout(false);
this.panel14.PerformLayout();
this.tableLayoutPanel3.ResumeLayout(false);
@@ -5992,10 +6128,6 @@ private void InitializeComponent()
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.TabPage tabPage4;
private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Panel panel23;
- private System.Windows.Forms.Button button29;
- private System.Windows.Forms.Button button30;
- private System.Windows.Forms.Button button31;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label label39;
private System.Windows.Forms.Label label38;
@@ -6021,7 +6153,6 @@ private void InitializeComponent()
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.TabPage tabPage5;
private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.Panel panel9;
private System.Windows.Forms.Panel panel10;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
@@ -6413,5 +6544,9 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripSeparator toolStripSeparator59;
private System.Windows.Forms.ToolStripButton toolStripButton41;
private System.Windows.Forms.TabPage tabPage24;
+ private System.Windows.Forms.ToolStrip toolStrip31;
+ private System.Windows.Forms.ToolStripButton toolStripButton44;
+ private System.Windows.Forms.ToolStripButton toolStripButton45;
+ private System.Windows.Forms.ToolStripButton toolStripButton46;
}
}
diff --git a/CreateDevice.cs b/CreateDevice.cs
index 5bb9ccc..9879996 100644
--- a/CreateDevice.cs
+++ b/CreateDevice.cs
@@ -881,6 +881,7 @@ private void Button6_Click_1(object sender, EventArgs e)
private void Button9_Click(object sender, EventArgs e)
{
AMC.OpenFileDialog(DofcTxtbx);
+
}
private void Button8_Click(object sender, EventArgs e)
diff --git a/CreateDevice.resx b/CreateDevice.resx
index 2507bb8..c4eb526 100644
--- a/CreateDevice.resx
+++ b/CreateDevice.resx
@@ -133,7 +133,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
0iiDPCGiE3ZCRkvR8VzTeBhnyR5/ccaZNnPhB4t9sdf6Ln5hb8QeathNJFVFKF5C8DqL4ksDVHWGDf7j
LHyPg6NjviSaFqlu5yQYR+KpupaIkrMknCxT3Y7v/NYYb0ITK1c3BarbWWhLQ7IR0cTKReyZ6lZ0XYei
ztHpK4bAc+h1FgQijzSxMptrGIxVSO0xX3AaStFki7bUMVFmaMm/eJMGfIH/MkGzLep0AXn4h/r3CJV3
@@ -144,7 +144,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
@@ -160,7 +160,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
@@ -176,7 +176,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
@@ -191,7 +191,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
@@ -204,7 +204,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHkSURBVDhPvZHfS1NhHIf3p5QypLr2D4goMwoMCi/qIugH
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAHkSURBVDhPvZHfS1NhHIf3p5QypLr2D4goMwoMCi/qIugH
Xe1Cr7qKDIMkZixwNhfWLGWbnuki0kXKzLU023KubBNPJrbRdOzocm6e2dPOO21mMS+CHvjcvOf9PF++
79H9M+7RT2iRRsIi9sEAXe43yAvf2LpSHq28G9uAnytNT4jMLewtcQ2Ht2pF8ps/aOt+gccX5lxD694S
+1BQFD1RkN5DSFa4Z3uONKbgHE3h8KZ4OJTC1J8UiSzmfhd2uf1CoJHbyKOsZokl0kKwm+aeJaov+wjO
@@ -218,7 +218,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJSSURBVDhPtZJrSJNRGMdf6IN9KbpQn/pUEH2JIoLqQ0Zh
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAJSSURBVDhPtZJrSJNRGMdf6IN9KbpQn/pUEH2JIoLqQ0Zh
FqYZRmJG1iKmUqKyLB2pqSm6vC1Nm5GXoeatEsVJ0RASR3eNzegikRq5lrV3857Fr/d9ddlICoL+8OfA
Oef/e57zcIT/os7WLMw302muSGJ2689qqi7A44q8IzjtNYzarzHQm8tZtT8FmRqu6LToMxN+B8qhCbGR
KVcDE85ajKUaxoaryEuL4UVXIudPB5Ko2oy98xjDptXERuz3hsgAOTzlqqMk6yjdllzE90UM9Wp5azlB
@@ -234,7 +234,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIVSURBVDhPtVJNaxNRFM1PyE+Yn1AUXLjK0uWgDWQZwUUX
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIVSURBVDhPtVJNaxNRFM1PyE+Yn1AUXLjK0uWgDWQZwUUX
KsGFBEEcCkIwqBEpGiydsSo2kupsasdo7Yi2toh0sFZjG5JpiZo20/TpVOmH5njvm8BYahEXHji8+968
c+55l4n8F0zM+rhVWkHmdg29A/PoK1Yw8uIjOp/3xpvqBgrjLeilZbjNLXxZ34bwt6jexMVCGRndQenl
0p+NWHzPXoP3rQ3bAbQhQM0E5Np2BKprbZzrm8TIs8puE+68+r0NwwZiacCwALEBCVcAqet8JlAjk1PZ
@@ -252,70 +252,70 @@
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
- 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
+ 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
- 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
+ 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
@@ -327,6 +327,54 @@
1043, 59
+
+ 1247, 137
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
+ 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
+ bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
+ VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9
+ c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32
+ Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo
+ mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+
+ kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D
+ TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+
True
@@ -345,7 +393,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -360,7 +408,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -390,7 +438,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -405,7 +453,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -429,7 +477,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -444,7 +492,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -459,7 +507,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -492,7 +540,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -540,7 +588,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -555,7 +603,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -588,7 +636,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -603,7 +651,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -639,7 +687,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -669,7 +717,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -699,7 +747,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -714,7 +762,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -744,7 +792,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -759,7 +807,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -786,7 +834,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -801,7 +849,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -831,7 +879,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -846,7 +894,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -864,7 +912,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -879,7 +927,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -894,7 +942,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -912,7 +960,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -927,7 +975,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -945,7 +993,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -960,7 +1008,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -978,7 +1026,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -993,7 +1041,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -1008,7 +1056,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -1065,7 +1113,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
+ YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG
YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9
0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw
bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc
@@ -1080,7 +1128,7 @@