Form1.Designer.cs 15 KB

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