Form1.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. namespace SketchAssistant
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  31. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  32. this.pictureBoxRight = new System.Windows.Forms.PictureBox();
  33. this.pictureBoxLeft = new System.Windows.Forms.PictureBox();
  34. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  35. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  38. this.canvasButton = new System.Windows.Forms.ToolStripButton();
  39. this.drawButton = new System.Windows.Forms.ToolStripButton();
  40. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  41. this.toolStripLoadStatus = new System.Windows.Forms.ToolStripStatusLabel();
  42. this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
  43. this.drawTimer = new System.Windows.Forms.Timer(this.components);
  44. this.tableLayoutPanel1.SuspendLayout();
  45. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).BeginInit();
  47. this.menuStrip1.SuspendLayout();
  48. this.toolStrip1.SuspendLayout();
  49. this.statusStrip1.SuspendLayout();
  50. this.SuspendLayout();
  51. //
  52. // tableLayoutPanel1
  53. //
  54. this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  55. | System.Windows.Forms.AnchorStyles.Left)
  56. | System.Windows.Forms.AnchorStyles.Right)));
  57. this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.InactiveCaption;
  58. this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble;
  59. this.tableLayoutPanel1.ColumnCount = 2;
  60. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  61. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  62. this.tableLayoutPanel1.Controls.Add(this.pictureBoxRight, 1, 0);
  63. this.tableLayoutPanel1.Controls.Add(this.pictureBoxLeft, 0, 0);
  64. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 52);
  65. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  66. this.tableLayoutPanel1.RowCount = 1;
  67. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  68. this.tableLayoutPanel1.Size = new System.Drawing.Size(696, 440);
  69. this.tableLayoutPanel1.TabIndex = 1;
  70. //
  71. // pictureBoxRight
  72. //
  73. this.pictureBoxRight.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.pictureBoxRight.Location = new System.Drawing.Point(349, 3);
  75. this.pictureBoxRight.Margin = new System.Windows.Forms.Padding(0);
  76. this.pictureBoxRight.Name = "pictureBoxRight";
  77. this.pictureBoxRight.Size = new System.Drawing.Size(344, 434);
  78. this.pictureBoxRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  79. this.pictureBoxRight.TabIndex = 6;
  80. this.pictureBoxRight.TabStop = false;
  81. this.pictureBoxRight.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseDown);
  82. this.pictureBoxRight.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseMove);
  83. this.pictureBoxRight.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseUp);
  84. //
  85. // pictureBoxLeft
  86. //
  87. this.pictureBoxLeft.BackColor = System.Drawing.SystemColors.InactiveCaption;
  88. this.pictureBoxLeft.Dock = System.Windows.Forms.DockStyle.Fill;
  89. this.pictureBoxLeft.Location = new System.Drawing.Point(3, 3);
  90. this.pictureBoxLeft.Margin = new System.Windows.Forms.Padding(0);
  91. this.pictureBoxLeft.Name = "pictureBoxLeft";
  92. this.pictureBoxLeft.Size = new System.Drawing.Size(343, 434);
  93. this.pictureBoxLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  94. this.pictureBoxLeft.TabIndex = 5;
  95. this.pictureBoxLeft.TabStop = false;
  96. //
  97. // menuStrip1
  98. //
  99. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  100. this.fileToolStripMenuItem});
  101. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  102. this.menuStrip1.MaximumSize = new System.Drawing.Size(1000, 0);
  103. this.menuStrip1.Name = "menuStrip1";
  104. this.menuStrip1.Size = new System.Drawing.Size(696, 24);
  105. this.menuStrip1.TabIndex = 2;
  106. this.menuStrip1.Text = "menuStrip1";
  107. //
  108. // fileToolStripMenuItem
  109. //
  110. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  111. this.loadToolStripMenuItem});
  112. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  113. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  114. this.fileToolStripMenuItem.Text = "File";
  115. //
  116. // loadToolStripMenuItem
  117. //
  118. this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
  119. this.loadToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  120. this.loadToolStripMenuItem.Text = "Load...";
  121. this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
  122. //
  123. // toolStrip1
  124. //
  125. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  126. this.canvasButton,
  127. this.drawButton});
  128. this.toolStrip1.Location = new System.Drawing.Point(0, 24);
  129. this.toolStrip1.Name = "toolStrip1";
  130. this.toolStrip1.Size = new System.Drawing.Size(696, 25);
  131. this.toolStrip1.TabIndex = 3;
  132. this.toolStrip1.Text = "toolStrip1";
  133. //
  134. // canvasButton
  135. //
  136. this.canvasButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  137. this.canvasButton.Image = ((System.Drawing.Image)(resources.GetObject("canvasButton.Image")));
  138. this.canvasButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  139. this.canvasButton.Name = "canvasButton";
  140. this.canvasButton.Size = new System.Drawing.Size(76, 22);
  141. this.canvasButton.Text = "New Canvas";
  142. this.canvasButton.Click += new System.EventHandler(this.canvasButton_Click);
  143. //
  144. // drawButton
  145. //
  146. this.drawButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  147. this.drawButton.Image = ((System.Drawing.Image)(resources.GetObject("drawButton.Image")));
  148. this.drawButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  149. this.drawButton.Name = "drawButton";
  150. this.drawButton.Size = new System.Drawing.Size(38, 22);
  151. this.drawButton.Text = "Draw";
  152. this.drawButton.Click += new System.EventHandler(this.drawButton_Click);
  153. //
  154. // statusStrip1
  155. //
  156. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  157. this.toolStripLoadStatus});
  158. this.statusStrip1.Location = new System.Drawing.Point(0, 493);
  159. this.statusStrip1.Name = "statusStrip1";
  160. this.statusStrip1.Size = new System.Drawing.Size(696, 22);
  161. this.statusStrip1.TabIndex = 4;
  162. this.statusStrip1.Text = "statusStrip1";
  163. //
  164. // toolStripLoadStatus
  165. //
  166. this.toolStripLoadStatus.Name = "toolStripLoadStatus";
  167. this.toolStripLoadStatus.Size = new System.Drawing.Size(40, 17);
  168. this.toolStripLoadStatus.Text = "no file";
  169. //
  170. // drawTimer
  171. //
  172. this.drawTimer.Interval = 2;
  173. this.drawTimer.Tick += new System.EventHandler(this.drawTimer_Tick);
  174. //
  175. // Form1
  176. //
  177. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  178. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  179. this.BackColor = System.Drawing.SystemColors.MenuBar;
  180. this.ClientSize = new System.Drawing.Size(696, 515);
  181. this.Controls.Add(this.statusStrip1);
  182. this.Controls.Add(this.toolStrip1);
  183. this.Controls.Add(this.tableLayoutPanel1);
  184. this.Controls.Add(this.menuStrip1);
  185. this.MainMenuStrip = this.menuStrip1;
  186. this.Margin = new System.Windows.Forms.Padding(2);
  187. this.Name = "Form1";
  188. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  189. this.Text = "Sketch Assistant";
  190. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  191. this.Load += new System.EventHandler(this.Form1_Load);
  192. this.SizeChanged += new System.EventHandler(this.Form1_Resize);
  193. this.tableLayoutPanel1.ResumeLayout(false);
  194. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
  195. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).EndInit();
  196. this.menuStrip1.ResumeLayout(false);
  197. this.menuStrip1.PerformLayout();
  198. this.toolStrip1.ResumeLayout(false);
  199. this.toolStrip1.PerformLayout();
  200. this.statusStrip1.ResumeLayout(false);
  201. this.statusStrip1.PerformLayout();
  202. this.ResumeLayout(false);
  203. this.PerformLayout();
  204. }
  205. #endregion
  206. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  207. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  208. private System.Windows.Forms.MenuStrip menuStrip1;
  209. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  210. private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
  211. private System.Windows.Forms.ToolStrip toolStrip1;
  212. private System.Windows.Forms.StatusStrip statusStrip1;
  213. private System.Windows.Forms.ToolStripStatusLabel toolStripLoadStatus;
  214. private System.ComponentModel.BackgroundWorker backgroundWorker2;
  215. private System.Windows.Forms.PictureBox pictureBoxRight;
  216. private System.Windows.Forms.PictureBox pictureBoxLeft;
  217. private System.Windows.Forms.Timer drawTimer;
  218. private System.Windows.Forms.ToolStripButton canvasButton;
  219. private System.Windows.Forms.ToolStripButton drawButton;
  220. }
  221. }