EduNetworkBuilder/EduNetworkBuilder/ShapeEditor.Designer.cs

285 lines
12 KiB
C#

namespace EduNetworkBuilder
{
partial class ShapeEditor
{
/// <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.lbShapeList = new System.Windows.Forms.ListBox();
this.lblShapes = new System.Windows.Forms.Label();
this.btnDone = new System.Windows.Forms.Button();
this.tbX = new System.Windows.Forms.TextBox();
this.lblX = new System.Windows.Forms.Label();
this.lblY = new System.Windows.Forms.Label();
this.tbY = new System.Windows.Forms.TextBox();
this.lblWidth = new System.Windows.Forms.Label();
this.lblHeight = new System.Windows.Forms.Label();
this.tbWidth = new System.Windows.Forms.TextBox();
this.tbHeight = new System.Windows.Forms.TextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.lblShape = new System.Windows.Forms.Label();
this.cbShape = new System.Windows.Forms.ComboBox();
this.lblLine = new System.Windows.Forms.Label();
this.lblFill = new System.Windows.Forms.Label();
this.cbLineColor = new System.Windows.Forms.ComboBox();
this.cbFillColor = new System.Windows.Forms.ComboBox();
this.lblName = new System.Windows.Forms.Label();
this.tbName = new System.Windows.Forms.TextBox();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// lbShapeList
//
this.lbShapeList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lbShapeList.FormattingEnabled = true;
this.lbShapeList.ItemHeight = 16;
this.lbShapeList.Location = new System.Drawing.Point(12, 29);
this.lbShapeList.Name = "lbShapeList";
this.lbShapeList.Size = new System.Drawing.Size(166, 276);
this.lbShapeList.TabIndex = 0;
this.lbShapeList.SelectedIndexChanged += new System.EventHandler(this.lbShapeList_SelectedIndexChanged);
this.lbShapeList.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbShapeList_MouseDown);
this.lbShapeList.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lbShapeList_MouseUp);
//
// lblShapes
//
this.lblShapes.AutoSize = true;
this.lblShapes.Location = new System.Drawing.Point(12, 9);
this.lblShapes.Name = "lblShapes";
this.lblShapes.Size = new System.Drawing.Size(56, 17);
this.lblShapes.TabIndex = 1;
this.lblShapes.Text = "Shapes";
//
// btnDone
//
this.btnDone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnDone.Location = new System.Drawing.Point(274, 278);
this.btnDone.Name = "btnDone";
this.btnDone.Size = new System.Drawing.Size(75, 23);
this.btnDone.TabIndex = 2;
this.btnDone.Text = "Done";
this.btnDone.UseVisualStyleBackColor = true;
this.btnDone.Click += new System.EventHandler(this.btnDone_Click);
//
// tbX
//
this.tbX.Location = new System.Drawing.Point(93, 71);
this.tbX.Name = "tbX";
this.tbX.Size = new System.Drawing.Size(64, 22);
this.tbX.TabIndex = 3;
//
// lblX
//
this.lblX.AutoSize = true;
this.lblX.Location = new System.Drawing.Point(70, 74);
this.lblX.Name = "lblX";
this.lblX.Size = new System.Drawing.Size(17, 17);
this.lblX.TabIndex = 4;
this.lblX.Text = "X";
//
// lblY
//
this.lblY.AutoSize = true;
this.lblY.Location = new System.Drawing.Point(70, 102);
this.lblY.Name = "lblY";
this.lblY.Size = new System.Drawing.Size(17, 17);
this.lblY.TabIndex = 5;
this.lblY.Text = "Y";
//
// tbY
//
this.tbY.Location = new System.Drawing.Point(93, 99);
this.tbY.Name = "tbY";
this.tbY.Size = new System.Drawing.Size(64, 22);
this.tbY.TabIndex = 6;
//
// lblWidth
//
this.lblWidth.AutoSize = true;
this.lblWidth.Location = new System.Drawing.Point(43, 130);
this.lblWidth.Name = "lblWidth";
this.lblWidth.Size = new System.Drawing.Size(44, 17);
this.lblWidth.TabIndex = 7;
this.lblWidth.Text = "Width";
//
// lblHeight
//
this.lblHeight.AutoSize = true;
this.lblHeight.Location = new System.Drawing.Point(38, 158);
this.lblHeight.Name = "lblHeight";
this.lblHeight.Size = new System.Drawing.Size(49, 17);
this.lblHeight.TabIndex = 8;
this.lblHeight.Text = "Height";
//
// tbWidth
//
this.tbWidth.Location = new System.Drawing.Point(93, 127);
this.tbWidth.Name = "tbWidth";
this.tbWidth.Size = new System.Drawing.Size(64, 22);
this.tbWidth.TabIndex = 9;
//
// tbHeight
//
this.tbHeight.Location = new System.Drawing.Point(93, 155);
this.tbHeight.Name = "tbHeight";
this.tbHeight.Size = new System.Drawing.Size(64, 22);
this.tbHeight.TabIndex = 10;
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.panel1.Controls.Add(this.tbName);
this.panel1.Controls.Add(this.lblName);
this.panel1.Controls.Add(this.lblShape);
this.panel1.Controls.Add(this.cbShape);
this.panel1.Controls.Add(this.lblLine);
this.panel1.Controls.Add(this.lblFill);
this.panel1.Controls.Add(this.cbLineColor);
this.panel1.Controls.Add(this.cbFillColor);
this.panel1.Controls.Add(this.tbHeight);
this.panel1.Controls.Add(this.tbWidth);
this.panel1.Controls.Add(this.lblHeight);
this.panel1.Controls.Add(this.lblWidth);
this.panel1.Controls.Add(this.tbY);
this.panel1.Controls.Add(this.lblY);
this.panel1.Controls.Add(this.lblX);
this.panel1.Controls.Add(this.tbX);
this.panel1.Location = new System.Drawing.Point(184, 29);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(165, 243);
this.panel1.TabIndex = 11;
//
// lblShape
//
this.lblShape.AutoSize = true;
this.lblShape.Location = new System.Drawing.Point(5, 44);
this.lblShape.Name = "lblShape";
this.lblShape.Size = new System.Drawing.Size(49, 17);
this.lblShape.TabIndex = 16;
this.lblShape.Text = "Shape";
//
// cbShape
//
this.cbShape.FormattingEnabled = true;
this.cbShape.Location = new System.Drawing.Point(60, 41);
this.cbShape.Name = "cbShape";
this.cbShape.Size = new System.Drawing.Size(97, 24);
this.cbShape.TabIndex = 15;
//
// lblLine
//
this.lblLine.AutoSize = true;
this.lblLine.Location = new System.Drawing.Point(19, 215);
this.lblLine.Name = "lblLine";
this.lblLine.Size = new System.Drawing.Size(35, 17);
this.lblLine.TabIndex = 14;
this.lblLine.Text = "Line";
//
// lblFill
//
this.lblFill.AutoSize = true;
this.lblFill.Location = new System.Drawing.Point(29, 186);
this.lblFill.Name = "lblFill";
this.lblFill.Size = new System.Drawing.Size(25, 17);
this.lblFill.TabIndex = 13;
this.lblFill.Text = "Fill";
//
// cbLineColor
//
this.cbLineColor.FormattingEnabled = true;
this.cbLineColor.Location = new System.Drawing.Point(60, 208);
this.cbLineColor.Name = "cbLineColor";
this.cbLineColor.Size = new System.Drawing.Size(97, 24);
this.cbLineColor.TabIndex = 12;
//
// cbFillColor
//
this.cbFillColor.FormattingEnabled = true;
this.cbFillColor.Location = new System.Drawing.Point(60, 183);
this.cbFillColor.Name = "cbFillColor";
this.cbFillColor.Size = new System.Drawing.Size(97, 24);
this.cbFillColor.TabIndex = 11;
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(9, 14);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(45, 17);
this.lblName.TabIndex = 17;
this.lblName.Text = "Name";
//
// tbName
//
this.tbName.Location = new System.Drawing.Point(60, 11);
this.tbName.Name = "tbName";
this.tbName.Size = new System.Drawing.Size(97, 22);
this.tbName.TabIndex = 18;
//
// ShapeEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(353, 313);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btnDone);
this.Controls.Add(this.lblShapes);
this.Controls.Add(this.lbShapeList);
this.Name = "ShapeEditor";
this.Text = "ShapeEditor";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox lbShapeList;
private System.Windows.Forms.Label lblShapes;
private System.Windows.Forms.Button btnDone;
private System.Windows.Forms.TextBox tbX;
private System.Windows.Forms.Label lblX;
private System.Windows.Forms.Label lblY;
private System.Windows.Forms.TextBox tbY;
private System.Windows.Forms.Label lblWidth;
private System.Windows.Forms.Label lblHeight;
private System.Windows.Forms.TextBox tbWidth;
private System.Windows.Forms.TextBox tbHeight;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label lblLine;
private System.Windows.Forms.Label lblFill;
private System.Windows.Forms.ComboBox cbLineColor;
private System.Windows.Forms.ComboBox cbFillColor;
private System.Windows.Forms.Label lblShape;
private System.Windows.Forms.ComboBox cbShape;
private System.Windows.Forms.TextBox tbName;
private System.Windows.Forms.Label lblName;
}
}