|
@@ -29,6 +29,7 @@ namespace SketchAssistant
|
|
|
private void InitializeComponent()
|
|
|
{
|
|
|
this.components = new System.ComponentModel.Container();
|
|
|
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
|
this.pictureBoxRight = new System.Windows.Forms.PictureBox();
|
|
@@ -37,11 +38,11 @@ namespace SketchAssistant
|
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
|
- this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
|
this.toolStripLoadStatus = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
|
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
|
+ this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).BeginInit();
|
|
@@ -77,6 +78,7 @@ namespace SketchAssistant
|
|
|
this.pictureBoxRight.Margin = new System.Windows.Forms.Padding(0);
|
|
|
this.pictureBoxRight.Name = "pictureBoxRight";
|
|
|
this.pictureBoxRight.Size = new System.Drawing.Size(344, 434);
|
|
|
+ this.pictureBoxRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
|
this.pictureBoxRight.TabIndex = 6;
|
|
|
this.pictureBoxRight.TabStop = false;
|
|
|
//
|
|
@@ -123,19 +125,13 @@ namespace SketchAssistant
|
|
|
// toolStrip1
|
|
|
//
|
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
- this.toolStripLabel1});
|
|
|
+ this.toolStripButton1});
|
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 24);
|
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
|
this.toolStrip1.Size = new System.Drawing.Size(696, 25);
|
|
|
this.toolStrip1.TabIndex = 3;
|
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
|
//
|
|
|
- // toolStripLabel1
|
|
|
- //
|
|
|
- this.toolStripLabel1.Name = "toolStripLabel1";
|
|
|
- this.toolStripLabel1.Size = new System.Drawing.Size(69, 22);
|
|
|
- this.toolStripLabel1.Text = "Placeholder";
|
|
|
- //
|
|
|
// statusStrip1
|
|
|
//
|
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
@@ -156,9 +152,20 @@ namespace SketchAssistant
|
|
|
//
|
|
|
// timer1
|
|
|
//
|
|
|
- this.timer1.Interval = 10;
|
|
|
+ this.timer1.Enabled = true;
|
|
|
+ this.timer1.Interval = 1;
|
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
|
//
|
|
|
+ // toolStripButton1
|
|
|
+ //
|
|
|
+ this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
|
+ 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(76, 22);
|
|
|
+ this.toolStripButton1.Text = "New Canvas";
|
|
|
+ this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
|
|
+ //
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
@@ -174,6 +181,7 @@ namespace SketchAssistant
|
|
|
this.Name = "Form1";
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
this.Text = "Sketch Assistant";
|
|
|
+ this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
|
|
@@ -196,13 +204,13 @@ namespace SketchAssistant
|
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
|
private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
|
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
|
- private System.Windows.Forms.ToolStripLabel toolStripLabel1;
|
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripLoadStatus;
|
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker2;
|
|
|
private System.Windows.Forms.PictureBox pictureBoxRight;
|
|
|
private System.Windows.Forms.PictureBox pictureBoxLeft;
|
|
|
private System.Windows.Forms.Timer timer1;
|
|
|
+ private System.Windows.Forms.ToolStripButton toolStripButton1;
|
|
|
}
|
|
|
}
|
|
|
|