|
@@ -28,7 +28,6 @@ namespace SketchAssistant
|
|
|
/// </summary>
|
|
|
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();
|
|
@@ -38,11 +37,10 @@ namespace SketchAssistant
|
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
|
+ this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|
|
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();
|
|
@@ -132,6 +130,16 @@ namespace SketchAssistant
|
|
|
this.toolStrip1.TabIndex = 3;
|
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
|
//
|
|
|
+ // 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);
|
|
|
+ //
|
|
|
// statusStrip1
|
|
|
//
|
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
@@ -150,22 +158,6 @@ namespace SketchAssistant
|
|
|
this.toolStripLoadStatus.Text = "no file";
|
|
|
this.toolStripLoadStatus.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
|
|
|
//
|
|
|
- // timer1
|
|
|
- //
|
|
|
- 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);
|
|
@@ -183,6 +175,7 @@ namespace SketchAssistant
|
|
|
this.Text = "Sketch Assistant";
|
|
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
|
+ this.SizeChanged += new System.EventHandler(this.Form1_Resize);
|
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).EndInit();
|
|
@@ -209,7 +202,6 @@ namespace SketchAssistant
|
|
|
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;
|
|
|
}
|
|
|
}
|