152 lines
5.4 KiB
C#
152 lines
5.4 KiB
C#
namespace Voile
|
|
{
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
menuStrip1 = new MenuStrip();
|
|
fileToolStripMenuItem = new ToolStripMenuItem();
|
|
stopAllAndExitToolStripMenuItem = new ToolStripMenuItem();
|
|
toolStrip1 = new ToolStrip();
|
|
toolStripButton1 = new ToolStripButton();
|
|
toolStripButton2 = new ToolStripButton();
|
|
statusStrip1 = new StatusStrip();
|
|
dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel();
|
|
vS2003Theme1 = new WeifenLuo.WinFormsUI.Docking.VS2003Theme();
|
|
menuStrip1.SuspendLayout();
|
|
toolStrip1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
menuStrip1.Items.AddRange(new ToolStripItem[] { fileToolStripMenuItem });
|
|
menuStrip1.Location = new Point(0, 0);
|
|
menuStrip1.Name = "menuStrip1";
|
|
menuStrip1.Size = new Size(800, 24);
|
|
menuStrip1.TabIndex = 1;
|
|
menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { stopAllAndExitToolStripMenuItem });
|
|
fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
fileToolStripMenuItem.Size = new Size(37, 20);
|
|
fileToolStripMenuItem.Text = "File";
|
|
//
|
|
// stopAllAndExitToolStripMenuItem
|
|
//
|
|
stopAllAndExitToolStripMenuItem.Name = "stopAllAndExitToolStripMenuItem";
|
|
stopAllAndExitToolStripMenuItem.Size = new Size(158, 22);
|
|
stopAllAndExitToolStripMenuItem.Text = "Stop all and Exit";
|
|
stopAllAndExitToolStripMenuItem.Click += stopAllAndExitToolStripMenuItem_Click;
|
|
//
|
|
// toolStrip1
|
|
//
|
|
toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripButton1, toolStripButton2 });
|
|
toolStrip1.Location = new Point(0, 24);
|
|
toolStrip1.Name = "toolStrip1";
|
|
toolStrip1.Size = new Size(800, 54);
|
|
toolStrip1.TabIndex = 2;
|
|
toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// toolStripButton1
|
|
//
|
|
toolStripButton1.Image = Properties.Resources.inetwiz_100_1_32x32x4;
|
|
toolStripButton1.ImageScaling = ToolStripItemImageScaling.None;
|
|
toolStripButton1.ImageTransparentColor = Color.Magenta;
|
|
toolStripButton1.Name = "toolStripButton1";
|
|
toolStripButton1.Size = new Size(152, 51);
|
|
toolStripButton1.Text = "Quick Connect to TCP Port";
|
|
toolStripButton1.TextAlign = ContentAlignment.BottomCenter;
|
|
toolStripButton1.TextImageRelation = TextImageRelation.ImageAboveText;
|
|
//
|
|
// toolStripButton2
|
|
//
|
|
toolStripButton2.Image = Properties.Resources.URLPKR_141_1_32x32x4;
|
|
toolStripButton2.ImageScaling = ToolStripItemImageScaling.None;
|
|
toolStripButton2.ImageTransparentColor = Color.Magenta;
|
|
toolStripButton2.Name = "toolStripButton2";
|
|
toolStripButton2.Size = new Size(110, 51);
|
|
toolStripButton2.Text = "Quick Open TS File";
|
|
toolStripButton2.TextAlign = ContentAlignment.BottomCenter;
|
|
toolStripButton2.TextImageRelation = TextImageRelation.ImageAboveText;
|
|
//
|
|
// statusStrip1
|
|
//
|
|
statusStrip1.Location = new Point(0, 428);
|
|
statusStrip1.Name = "statusStrip1";
|
|
statusStrip1.Size = new Size(800, 22);
|
|
statusStrip1.TabIndex = 3;
|
|
statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// dockPanel1
|
|
//
|
|
dockPanel1.Dock = DockStyle.Fill;
|
|
dockPanel1.DockRightPortion = 0.3D;
|
|
dockPanel1.Location = new Point(0, 78);
|
|
dockPanel1.Name = "dockPanel1";
|
|
dockPanel1.Size = new Size(800, 350);
|
|
dockPanel1.TabIndex = 5;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dockPanel1);
|
|
Controls.Add(statusStrip1);
|
|
Controls.Add(toolStrip1);
|
|
Controls.Add(menuStrip1);
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|
IsMdiContainer = true;
|
|
MainMenuStrip = menuStrip1;
|
|
Name = "Form1";
|
|
Text = "Voile";
|
|
Shown += Form1_Shown;
|
|
menuStrip1.ResumeLayout(false);
|
|
menuStrip1.PerformLayout();
|
|
toolStrip1.ResumeLayout(false);
|
|
toolStrip1.PerformLayout();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private MenuStrip menuStrip1;
|
|
private ToolStrip toolStrip1;
|
|
private StatusStrip statusStrip1;
|
|
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel1;
|
|
private WeifenLuo.WinFormsUI.Docking.VS2003Theme vS2003Theme1;
|
|
private ToolStripButton toolStripButton1;
|
|
private ToolStripButton toolStripButton2;
|
|
private ToolStripMenuItem fileToolStripMenuItem;
|
|
private ToolStripMenuItem stopAllAndExitToolStripMenuItem;
|
|
}
|
|
}
|