412 lines
20 KiB
C#
412 lines
20 KiB
C#
|
|
namespace WinFormsApp1
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.loadLibraryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.librarysToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.manualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.tabPage3 = new System.Windows.Forms.TabPage();
|
|
this.tabControl3 = new System.Windows.Forms.TabControl();
|
|
this.tabPage5 = new System.Windows.Forms.TabPage();
|
|
this.tabPage6 = new System.Windows.Forms.TabPage();
|
|
this.tabControl2 = new System.Windows.Forms.TabControl();
|
|
this.tabPage4 = new System.Windows.Forms.TabPage();
|
|
this.tabControl4 = new System.Windows.Forms.TabControl();
|
|
this.tabPage7 = new System.Windows.Forms.TabPage();
|
|
this.panel3 = new System.Windows.Forms.Panel();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabControl3.SuspendLayout();
|
|
this.tabControl2.SuspendLayout();
|
|
this.tabControl4.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem,
|
|
this.viewToolStripMenuItem,
|
|
this.librarysToolStripMenuItem,
|
|
this.helpToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(971, 24);
|
|
this.menuStrip1.TabIndex = 0;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.newToolStripMenuItem,
|
|
this.openToolStripMenuItem,
|
|
this.saveToolStripMenuItem,
|
|
this.saveAsToolStripMenuItem,
|
|
this.importToolStripMenuItem,
|
|
this.loadLibraryToolStripMenuItem,
|
|
this.exitToolStripMenuItem});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fileToolStripMenuItem.Text = "File";
|
|
//
|
|
// newToolStripMenuItem
|
|
//
|
|
this.newToolStripMenuItem.Name = "newToolStripMenuItem";
|
|
this.newToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.newToolStripMenuItem.Text = "New";
|
|
//
|
|
// openToolStripMenuItem
|
|
//
|
|
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
|
this.openToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.openToolStripMenuItem.Text = "Open";
|
|
//
|
|
// saveToolStripMenuItem
|
|
//
|
|
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
|
|
this.saveToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.saveToolStripMenuItem.Text = "Save";
|
|
//
|
|
// saveAsToolStripMenuItem
|
|
//
|
|
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
|
|
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.saveAsToolStripMenuItem.Text = "Save As";
|
|
//
|
|
// importToolStripMenuItem
|
|
//
|
|
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
|
|
this.importToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.importToolStripMenuItem.Text = "Import";
|
|
//
|
|
// loadLibraryToolStripMenuItem
|
|
//
|
|
this.loadLibraryToolStripMenuItem.Name = "loadLibraryToolStripMenuItem";
|
|
this.loadLibraryToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.loadLibraryToolStripMenuItem.Text = "Load Library";
|
|
//
|
|
// exitToolStripMenuItem
|
|
//
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.exitToolStripMenuItem.Text = "Exit";
|
|
//
|
|
// viewToolStripMenuItem
|
|
//
|
|
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
|
this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|
this.viewToolStripMenuItem.Text = "View";
|
|
//
|
|
// librarysToolStripMenuItem
|
|
//
|
|
this.librarysToolStripMenuItem.Name = "librarysToolStripMenuItem";
|
|
this.librarysToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
|
|
this.librarysToolStripMenuItem.Text = "Librarys";
|
|
//
|
|
// helpToolStripMenuItem
|
|
//
|
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.aboutToolStripMenuItem,
|
|
this.manualToolStripMenuItem});
|
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|
this.helpToolStripMenuItem.Text = "Help";
|
|
//
|
|
// aboutToolStripMenuItem
|
|
//
|
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
|
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.aboutToolStripMenuItem.Text = "About";
|
|
//
|
|
// manualToolStripMenuItem
|
|
//
|
|
this.manualToolStripMenuItem.Name = "manualToolStripMenuItem";
|
|
this.manualToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.manualToolStripMenuItem.Text = "Manual";
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.AutoSize = true;
|
|
this.panel1.BackColor = System.Drawing.SystemColors.MenuHighlight;
|
|
this.panel1.Controls.Add(this.panel2);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel1.Location = new System.Drawing.Point(0, 24);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(971, 548);
|
|
this.panel1.TabIndex = 5;
|
|
this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.AutoSize = true;
|
|
this.panel2.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
|
|
this.panel2.Controls.Add(this.splitContainer1);
|
|
this.panel2.Controls.Add(this.panel3);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel2.Location = new System.Drawing.Point(0, 0);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(971, 548);
|
|
this.panel2.TabIndex = 0;
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.splitContainer1.Cursor = System.Windows.Forms.Cursors.VSplit;
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
|
|
this.splitContainer1.Panel1.Controls.Add(this.tabControl3);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control;
|
|
this.splitContainer1.Panel2.Controls.Add(this.tabControl2);
|
|
this.splitContainer1.Panel2.Controls.Add(this.tabControl4);
|
|
this.splitContainer1.Size = new System.Drawing.Size(971, 548);
|
|
this.splitContainer1.SplitterDistance = 668;
|
|
this.splitContainer1.TabIndex = 6;
|
|
//
|
|
// tabControl1
|
|
//
|
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|
this.tabControl1.Controls.Add(this.tabPage2);
|
|
this.tabControl1.Controls.Add(this.tabPage3);
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.Size = new System.Drawing.Size(668, 228);
|
|
this.tabControl1.TabIndex = 1;
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage1.Size = new System.Drawing.Size(660, 200);
|
|
this.tabPage1.TabIndex = 0;
|
|
this.tabPage1.Text = "Generic Data";
|
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage2.Size = new System.Drawing.Size(660, 200);
|
|
this.tabPage2.TabIndex = 1;
|
|
this.tabPage2.Text = "Interfaces";
|
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabPage3
|
|
//
|
|
this.tabPage3.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage3.Name = "tabPage3";
|
|
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage3.Size = new System.Drawing.Size(660, 200);
|
|
this.tabPage3.TabIndex = 2;
|
|
this.tabPage3.Text = "Attachments";
|
|
this.tabPage3.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabControl3
|
|
//
|
|
this.tabControl3.Controls.Add(this.tabPage5);
|
|
this.tabControl3.Controls.Add(this.tabPage6);
|
|
this.tabControl3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.tabControl3.Location = new System.Drawing.Point(0, 253);
|
|
this.tabControl3.Name = "tabControl3";
|
|
this.tabControl3.SelectedIndex = 0;
|
|
this.tabControl3.Size = new System.Drawing.Size(668, 295);
|
|
this.tabControl3.TabIndex = 3;
|
|
//
|
|
// tabPage5
|
|
//
|
|
this.tabPage5.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage5.Name = "tabPage5";
|
|
this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage5.Size = new System.Drawing.Size(660, 267);
|
|
this.tabPage5.TabIndex = 0;
|
|
this.tabPage5.Text = "Attributes";
|
|
this.tabPage5.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabPage6
|
|
//
|
|
this.tabPage6.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage6.Name = "tabPage6";
|
|
this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage6.Size = new System.Drawing.Size(660, 267);
|
|
this.tabPage6.TabIndex = 1;
|
|
this.tabPage6.Text = "Header";
|
|
this.tabPage6.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabControl2
|
|
//
|
|
this.tabControl2.Controls.Add(this.tabPage4);
|
|
this.tabControl2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.tabControl2.Location = new System.Drawing.Point(0, 0);
|
|
this.tabControl2.Name = "tabControl2";
|
|
this.tabControl2.SelectedIndex = 0;
|
|
this.tabControl2.Size = new System.Drawing.Size(299, 228);
|
|
this.tabControl2.TabIndex = 2;
|
|
//
|
|
// tabPage4
|
|
//
|
|
this.tabPage4.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage4.Name = "tabPage4";
|
|
this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage4.Size = new System.Drawing.Size(291, 200);
|
|
this.tabPage4.TabIndex = 0;
|
|
this.tabPage4.Text = "Role Class Library";
|
|
this.tabPage4.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabControl4
|
|
//
|
|
this.tabControl4.Controls.Add(this.tabPage7);
|
|
this.tabControl4.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.tabControl4.Location = new System.Drawing.Point(0, 253);
|
|
this.tabControl4.Name = "tabControl4";
|
|
this.tabControl4.SelectedIndex = 0;
|
|
this.tabControl4.Size = new System.Drawing.Size(299, 295);
|
|
this.tabControl4.TabIndex = 4;
|
|
//
|
|
// tabPage7
|
|
//
|
|
this.tabPage7.Location = new System.Drawing.Point(4, 24);
|
|
this.tabPage7.Name = "tabPage7";
|
|
this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage7.Size = new System.Drawing.Size(291, 267);
|
|
this.tabPage7.TabIndex = 0;
|
|
this.tabPage7.Text = "Interface Class Library";
|
|
this.tabPage7.UseVisualStyleBackColor = true;
|
|
//
|
|
// panel3
|
|
//
|
|
this.panel3.AutoSize = true;
|
|
this.panel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
this.panel3.BackColor = System.Drawing.SystemColors.Highlight;
|
|
this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.panel3.Location = new System.Drawing.Point(0, 0);
|
|
this.panel3.Name = "panel3";
|
|
this.panel3.Size = new System.Drawing.Size(0, 548);
|
|
this.panel3.TabIndex = 5;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.AutoSize = true;
|
|
this.ClientSize = new System.Drawing.Size(971, 572);
|
|
this.Controls.Add(this.panel1);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "Form1";
|
|
this.Text = "AutomationML ModellingWizard";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.tabControl3.ResumeLayout(false);
|
|
this.tabControl2.ResumeLayout(false);
|
|
this.tabControl4.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem loadLibraryToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem librarysToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem manualToolStripMenuItem;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.TabControl tabControl3;
|
|
private System.Windows.Forms.TabPage tabPage5;
|
|
private System.Windows.Forms.TabPage tabPage6;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.TabPage tabPage3;
|
|
private System.Windows.Forms.TabControl tabControl4;
|
|
private System.Windows.Forms.TabPage tabPage7;
|
|
private System.Windows.Forms.Panel panel3;
|
|
private System.Windows.Forms.TabControl tabControl2;
|
|
private System.Windows.Forms.TabPage tabPage4;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
}
|
|
}
|
|
|