|
@@ -28,51 +28,75 @@ namespace SketchAssistant
|
|
|
/// </summary>
|
|
|
private void InitializeComponent()
|
|
|
{
|
|
|
- this.button1 = new System.Windows.Forms.Button();
|
|
|
- this.helloWorldLabel = new System.Windows.Forms.Label();
|
|
|
+ this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
|
+ this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
|
|
+ this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
|
+ this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
|
+ this.toolStrip1.SuspendLayout();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
- // button1
|
|
|
+ // toolStrip1
|
|
|
//
|
|
|
- this.button1.Location = new System.Drawing.Point(217, 156);
|
|
|
- this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
|
- this.button1.Name = "button1";
|
|
|
- this.button1.Size = new System.Drawing.Size(97, 28);
|
|
|
- this.button1.TabIndex = 2;
|
|
|
- this.button1.Text = "Click Me!";
|
|
|
- this.button1.UseVisualStyleBackColor = true;
|
|
|
- this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
+ this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
|
|
|
+ this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
+ this.toolStripLabel1});
|
|
|
+ this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
|
+ this.toolStrip1.Name = "toolStrip1";
|
|
|
+ this.toolStrip1.Size = new System.Drawing.Size(584, 25);
|
|
|
+ this.toolStrip1.TabIndex = 0;
|
|
|
+ this.toolStrip1.Text = "toolStrip1";
|
|
|
//
|
|
|
- // helloWorldLabel
|
|
|
+ // toolStripLabel1
|
|
|
//
|
|
|
- this.helloWorldLabel.AutoSize = true;
|
|
|
- this.helloWorldLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
|
- this.helloWorldLabel.Location = new System.Drawing.Point(202, 19);
|
|
|
- this.helloWorldLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
|
|
- this.helloWorldLabel.Name = "helloWorldLabel";
|
|
|
- this.helloWorldLabel.Size = new System.Drawing.Size(131, 26);
|
|
|
- this.helloWorldLabel.TabIndex = 3;
|
|
|
- this.helloWorldLabel.Text = "Hello World!";
|
|
|
+ this.toolStripLabel1.Name = "toolStripLabel1";
|
|
|
+ this.toolStripLabel1.Size = new System.Drawing.Size(168, 22);
|
|
|
+ this.toolStripLabel1.Text = "Placeholder for Future Buttons";
|
|
|
+ this.toolStripLabel1.Click += new System.EventHandler(this.toolStripLabel1_Click);
|
|
|
+ //
|
|
|
+ // tableLayoutPanel1
|
|
|
+ //
|
|
|
+ this.tableLayoutPanel1.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.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.InactiveCaption;
|
|
|
+ this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble;
|
|
|
+ this.tableLayoutPanel1.ColumnCount = 2;
|
|
|
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
|
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
|
+ this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 23);
|
|
|
+ this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
|
+ this.tableLayoutPanel1.RowCount = 1;
|
|
|
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
|
+ this.tableLayoutPanel1.Size = new System.Drawing.Size(584, 438);
|
|
|
+ this.tableLayoutPanel1.TabIndex = 1;
|
|
|
+ this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
|
|
|
//
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
- this.ClientSize = new System.Drawing.Size(533, 292);
|
|
|
- this.Controls.Add(this.helloWorldLabel);
|
|
|
- this.Controls.Add(this.button1);
|
|
|
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
|
+ this.BackColor = System.Drawing.SystemColors.MenuBar;
|
|
|
+ this.ClientSize = new System.Drawing.Size(584, 461);
|
|
|
+ this.Controls.Add(this.tableLayoutPanel1);
|
|
|
+ this.Controls.Add(this.toolStrip1);
|
|
|
+ this.Margin = new System.Windows.Forms.Padding(2);
|
|
|
this.Name = "Form1";
|
|
|
- this.Text = "Form1";
|
|
|
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
+ this.Text = "Sketch Assistant";
|
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
|
+ this.toolStrip1.ResumeLayout(false);
|
|
|
+ this.toolStrip1.PerformLayout();
|
|
|
this.ResumeLayout(false);
|
|
|
this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
- private System.Windows.Forms.Button button1;
|
|
|
- private System.Windows.Forms.Label helloWorldLabel;
|
|
|
+
|
|
|
+ private System.Windows.Forms.ToolStrip toolStrip1;
|
|
|
+ private System.Windows.Forms.ToolStripLabel toolStripLabel1;
|
|
|
+ private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
|
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
|
}
|
|
|
}
|
|
|
|