Form1.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
  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.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseDown);
  83. this.pictureBoxRight.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseMove);
  84. this.pictureBoxRight.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRight_MouseUp);
  85. //
  86. // pictureBoxLeft
  87. //
  88. this.pictureBoxLeft.BackColor = System.Drawing.SystemColors.InactiveCaption;
  89. this.pictureBoxLeft.Dock = System.Windows.Forms.DockStyle.Fill;
  90. this.pictureBoxLeft.Location = new System.Drawing.Point(3, 3);
  91. this.pictureBoxLeft.Margin = new System.Windows.Forms.Padding(0);
  92. this.pictureBoxLeft.Name = "pictureBoxLeft";
  93. this.pictureBoxLeft.Size = new System.Drawing.Size(343, 434);
  94. this.pictureBoxLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  95. this.pictureBoxLeft.TabIndex = 5;
  96. this.pictureBoxLeft.TabStop = false;
  97. this.pictureBoxLeft.Click += new System.EventHandler(this.pictureBoxLeft_Click);
  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. this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
  118. //
  119. // loadToolStripMenuItem
  120. //
  121. this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
  122. this.loadToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
  123. this.loadToolStripMenuItem.Text = "Load...";
  124. this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
  125. //
  126. // toolStrip1
  127. //
  128. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  129. this.canvasButton,
  130. this.drawButton});
  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. // statusStrip1
  158. //
  159. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  160. this.toolStripLoadStatus});
  161. this.statusStrip1.Location = new System.Drawing.Point(0, 493);
  162. this.statusStrip1.Name = "statusStrip1";
  163. this.statusStrip1.Size = new System.Drawing.Size(696, 22);
  164. this.statusStrip1.TabIndex = 4;
  165. this.statusStrip1.Text = "statusStrip1";
  166. this.statusStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.statusStrip1_ItemClicked);
  167. //
  168. // toolStripLoadStatus
  169. //
  170. this.toolStripLoadStatus.Name = "toolStripLoadStatus";
  171. this.toolStripLoadStatus.Size = new System.Drawing.Size(40, 17);
  172. this.toolStripLoadStatus.Text = "no file";
  173. this.toolStripLoadStatus.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
  174. //
  175. // drawTimer
  176. //
  177. this.drawTimer.Interval = 2;
  178. this.drawTimer.Tick += new System.EventHandler(this.drawTimer_Tick);
  179. //
  180. // Form1
  181. //
  182. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  183. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  184. this.BackColor = System.Drawing.SystemColors.MenuBar;
  185. this.ClientSize = new System.Drawing.Size(696, 515);
  186. this.Controls.Add(this.statusStrip1);
  187. this.Controls.Add(this.toolStrip1);
  188. this.Controls.Add(this.tableLayoutPanel1);
  189. this.Controls.Add(this.menuStrip1);
  190. this.MainMenuStrip = this.menuStrip1;
  191. this.Margin = new System.Windows.Forms.Padding(2);
  192. this.Name = "Form1";
  193. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  194. this.Text = "Sketch Assistant";
  195. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  196. this.Load += new System.EventHandler(this.Form1_Load);
  197. this.SizeChanged += new System.EventHandler(this.Form1_Resize);
  198. this.tableLayoutPanel1.ResumeLayout(false);
  199. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).EndInit();
  201. this.menuStrip1.ResumeLayout(false);
  202. this.menuStrip1.PerformLayout();
  203. this.toolStrip1.ResumeLayout(false);
  204. this.toolStrip1.PerformLayout();
  205. this.statusStrip1.ResumeLayout(false);
  206. this.statusStrip1.PerformLayout();
  207. this.ResumeLayout(false);
  208. this.PerformLayout();
  209. }
  210. #endregion
  211. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  212. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  213. private System.Windows.Forms.MenuStrip menuStrip1;
  214. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  215. private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
  216. private System.Windows.Forms.ToolStrip toolStrip1;
  217. private System.Windows.Forms.StatusStrip statusStrip1;
  218. private System.Windows.Forms.ToolStripStatusLabel toolStripLoadStatus;
  219. private System.ComponentModel.BackgroundWorker backgroundWorker2;
  220. private System.Windows.Forms.PictureBox pictureBoxRight;
  221. private System.Windows.Forms.PictureBox pictureBoxLeft;
  222. private System.Windows.Forms.Timer drawTimer;
  223. private System.Windows.Forms.ToolStripButton canvasButton;
  224. private System.Windows.Forms.ToolStripButton drawButton;
  225. }
  226. }