Form1.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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.deleteButton = new System.Windows.Forms.ToolStripButton();
  41. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  42. this.toolStripLoadStatus = new System.Windows.Forms.ToolStripStatusLabel();
  43. this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
  44. this.mouseTimer = new System.Windows.Forms.Timer(this.components);
  45. this.tableLayoutPanel1.SuspendLayout();
  46. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).BeginInit();
  48. this.menuStrip1.SuspendLayout();
  49. this.toolStrip1.SuspendLayout();
  50. this.statusStrip1.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // tableLayoutPanel1
  54. //
  55. this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  56. | System.Windows.Forms.AnchorStyles.Left)
  57. | System.Windows.Forms.AnchorStyles.Right)));
  58. this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.InactiveCaption;
  59. this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble;
  60. this.tableLayoutPanel1.ColumnCount = 2;
  61. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  62. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  63. this.tableLayoutPanel1.Controls.Add(this.pictureBoxRight, 1, 0);
  64. this.tableLayoutPanel1.Controls.Add(this.pictureBoxLeft, 0, 0);
  65. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 52);
  66. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  67. this.tableLayoutPanel1.RowCount = 1;
  68. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  69. this.tableLayoutPanel1.Size = new System.Drawing.Size(696, 440);
  70. this.tableLayoutPanel1.TabIndex = 1;
  71. //
  72. // pictureBoxRight
  73. //
  74. this.pictureBoxRight.Dock = System.Windows.Forms.DockStyle.Fill;
  75. this.pictureBoxRight.Location = new System.Drawing.Point(349, 3);
  76. this.pictureBoxRight.Margin = new System.Windows.Forms.Padding(0);
  77. this.pictureBoxRight.Name = "pictureBoxRight";
  78. this.pictureBoxRight.Size = new System.Drawing.Size(344, 434);
  79. this.pictureBoxRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  80. this.pictureBoxRight.TabIndex = 6;
  81. this.pictureBoxRight.TabStop = false;
  82. this.pictureBoxRight.Click += new System.EventHandler(this.pictureBoxRight_Click);
  83. this.pictureBoxRight.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseDown);
  84. this.pictureBoxRight.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseMove);
  85. this.pictureBoxRight.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseUp);
  86. //
  87. // pictureBoxLeft
  88. //
  89. this.pictureBoxLeft.BackColor = System.Drawing.SystemColors.InactiveCaption;
  90. this.pictureBoxLeft.Dock = System.Windows.Forms.DockStyle.Fill;
  91. this.pictureBoxLeft.Location = new System.Drawing.Point(3, 3);
  92. this.pictureBoxLeft.Margin = new System.Windows.Forms.Padding(0);
  93. this.pictureBoxLeft.Name = "pictureBoxLeft";
  94. this.pictureBoxLeft.Size = new System.Drawing.Size(343, 434);
  95. this.pictureBoxLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  96. this.pictureBoxLeft.TabIndex = 5;
  97. this.pictureBoxLeft.TabStop = false;
  98. //
  99. // menuStrip1
  100. //
  101. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  102. this.fileToolStripMenuItem});
  103. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  104. this.menuStrip1.MaximumSize = new System.Drawing.Size(1000, 0);
  105. this.menuStrip1.Name = "menuStrip1";
  106. this.menuStrip1.Size = new System.Drawing.Size(696, 24);
  107. this.menuStrip1.TabIndex = 2;
  108. this.menuStrip1.Text = "menuStrip1";
  109. //
  110. // fileToolStripMenuItem
  111. //
  112. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  113. this.loadToolStripMenuItem});
  114. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  115. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  116. this.fileToolStripMenuItem.Text = "File";
  117. //
  118. // loadToolStripMenuItem
  119. //
  120. this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
  121. this.loadToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
  122. this.loadToolStripMenuItem.Text = "Load...";
  123. this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
  124. //
  125. // toolStrip1
  126. //
  127. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  128. this.canvasButton,
  129. this.drawButton,
  130. this.deleteButton});
  131. this.toolStrip1.Location = new System.Drawing.Point(0, 24);
  132. this.toolStrip1.Name = "toolStrip1";
  133. this.toolStrip1.Size = new System.Drawing.Size(696, 25);
  134. this.toolStrip1.TabIndex = 3;
  135. this.toolStrip1.Text = "toolStrip1";
  136. //
  137. // canvasButton
  138. //
  139. this.canvasButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  140. this.canvasButton.Image = ((System.Drawing.Image)(resources.GetObject("canvasButton.Image")));
  141. this.canvasButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  142. this.canvasButton.Name = "canvasButton";
  143. this.canvasButton.Size = new System.Drawing.Size(76, 22);
  144. this.canvasButton.Text = "New Canvas";
  145. this.canvasButton.Click += new System.EventHandler(this.canvasButton_Click);
  146. //
  147. // drawButton
  148. //
  149. this.drawButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  150. this.drawButton.Image = ((System.Drawing.Image)(resources.GetObject("drawButton.Image")));
  151. this.drawButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  152. this.drawButton.Name = "drawButton";
  153. this.drawButton.Size = new System.Drawing.Size(38, 22);
  154. this.drawButton.Text = "Draw";
  155. this.drawButton.Click += new System.EventHandler(this.drawButton_Click);
  156. //
  157. // deleteButton
  158. //
  159. this.deleteButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  160. this.deleteButton.Image = ((System.Drawing.Image)(resources.GetObject("deleteButton.Image")));
  161. this.deleteButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  162. this.deleteButton.Name = "deleteButton";
  163. this.deleteButton.Size = new System.Drawing.Size(44, 22);
  164. this.deleteButton.Text = "Delete";
  165. this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
  166. //
  167. // statusStrip1
  168. //
  169. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  170. this.toolStripLoadStatus});
  171. this.statusStrip1.Location = new System.Drawing.Point(0, 493);
  172. this.statusStrip1.Name = "statusStrip1";
  173. this.statusStrip1.Size = new System.Drawing.Size(696, 22);
  174. this.statusStrip1.TabIndex = 4;
  175. this.statusStrip1.Text = "statusStrip1";
  176. //
  177. // toolStripLoadStatus
  178. //
  179. this.toolStripLoadStatus.Name = "toolStripLoadStatus";
  180. this.toolStripLoadStatus.Size = new System.Drawing.Size(40, 17);
  181. this.toolStripLoadStatus.Text = "no file";
  182. //
  183. // mouseTimer
  184. //
  185. this.mouseTimer.Interval = 1;
  186. this.mouseTimer.Tick += new System.EventHandler(this.mouseTimer_Tick);
  187. //
  188. // Form1
  189. //
  190. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  191. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  192. this.BackColor = System.Drawing.SystemColors.MenuBar;
  193. this.ClientSize = new System.Drawing.Size(696, 515);
  194. this.Controls.Add(this.statusStrip1);
  195. this.Controls.Add(this.toolStrip1);
  196. this.Controls.Add(this.tableLayoutPanel1);
  197. this.Controls.Add(this.menuStrip1);
  198. this.MainMenuStrip = this.menuStrip1;
  199. this.Margin = new System.Windows.Forms.Padding(2);
  200. this.Name = "Form1";
  201. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  202. this.Text = "Sketch Assistant";
  203. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  204. this.Load += new System.EventHandler(this.Form1_Load);
  205. this.SizeChanged += new System.EventHandler(this.Form1_Resize);
  206. this.tableLayoutPanel1.ResumeLayout(false);
  207. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
  208. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).EndInit();
  209. this.menuStrip1.ResumeLayout(false);
  210. this.menuStrip1.PerformLayout();
  211. this.toolStrip1.ResumeLayout(false);
  212. this.toolStrip1.PerformLayout();
  213. this.statusStrip1.ResumeLayout(false);
  214. this.statusStrip1.PerformLayout();
  215. this.ResumeLayout(false);
  216. this.PerformLayout();
  217. }
  218. #endregion
  219. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  220. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  221. private System.Windows.Forms.MenuStrip menuStrip1;
  222. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  223. private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
  224. private System.Windows.Forms.ToolStrip toolStrip1;
  225. private System.Windows.Forms.StatusStrip statusStrip1;
  226. private System.Windows.Forms.ToolStripStatusLabel toolStripLoadStatus;
  227. private System.ComponentModel.BackgroundWorker backgroundWorker2;
  228. private System.Windows.Forms.PictureBox pictureBoxRight;
  229. private System.Windows.Forms.PictureBox pictureBoxLeft;
  230. private System.Windows.Forms.Timer mouseTimer;
  231. private System.Windows.Forms.ToolStripButton canvasButton;
  232. private System.Windows.Forms.ToolStripButton drawButton;
  233. private System.Windows.Forms.ToolStripButton deleteButton;
  234. }
  235. }