Form1.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  30. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  31. this.pictureBoxRight = new System.Windows.Forms.PictureBox();
  32. this.pictureBoxLeft = new System.Windows.Forms.PictureBox();
  33. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  34. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  37. this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
  38. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  39. this.toolStripLoadStatus = new System.Windows.Forms.ToolStripStatusLabel();
  40. this.backgroundWorker2 = new System.ComponentModel.BackgroundWorker();
  41. this.timer1 = new System.Windows.Forms.Timer(this.components);
  42. this.tableLayoutPanel1.SuspendLayout();
  43. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
  44. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).BeginInit();
  45. this.menuStrip1.SuspendLayout();
  46. this.toolStrip1.SuspendLayout();
  47. this.statusStrip1.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // tableLayoutPanel1
  51. //
  52. this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  53. | System.Windows.Forms.AnchorStyles.Left)
  54. | System.Windows.Forms.AnchorStyles.Right)));
  55. this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.InactiveCaption;
  56. this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble;
  57. this.tableLayoutPanel1.ColumnCount = 2;
  58. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  59. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  60. this.tableLayoutPanel1.Controls.Add(this.pictureBoxRight, 1, 0);
  61. this.tableLayoutPanel1.Controls.Add(this.pictureBoxLeft, 0, 0);
  62. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 52);
  63. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  64. this.tableLayoutPanel1.RowCount = 1;
  65. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  66. this.tableLayoutPanel1.Size = new System.Drawing.Size(696, 440);
  67. this.tableLayoutPanel1.TabIndex = 1;
  68. this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
  69. //
  70. // pictureBoxRight
  71. //
  72. this.pictureBoxRight.Dock = System.Windows.Forms.DockStyle.Fill;
  73. this.pictureBoxRight.Location = new System.Drawing.Point(349, 3);
  74. this.pictureBoxRight.Margin = new System.Windows.Forms.Padding(0);
  75. this.pictureBoxRight.Name = "pictureBoxRight";
  76. this.pictureBoxRight.Size = new System.Drawing.Size(344, 434);
  77. this.pictureBoxRight.TabIndex = 6;
  78. this.pictureBoxRight.TabStop = false;
  79. //
  80. // pictureBoxLeft
  81. //
  82. this.pictureBoxLeft.BackColor = System.Drawing.SystemColors.InactiveCaption;
  83. this.pictureBoxLeft.Dock = System.Windows.Forms.DockStyle.Fill;
  84. this.pictureBoxLeft.Location = new System.Drawing.Point(3, 3);
  85. this.pictureBoxLeft.Margin = new System.Windows.Forms.Padding(0);
  86. this.pictureBoxLeft.Name = "pictureBoxLeft";
  87. this.pictureBoxLeft.Size = new System.Drawing.Size(343, 434);
  88. this.pictureBoxLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  89. this.pictureBoxLeft.TabIndex = 5;
  90. this.pictureBoxLeft.TabStop = false;
  91. this.pictureBoxLeft.Click += new System.EventHandler(this.pictureBoxLeft_Click);
  92. //
  93. // menuStrip1
  94. //
  95. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  96. this.fileToolStripMenuItem});
  97. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  98. this.menuStrip1.MaximumSize = new System.Drawing.Size(1000, 0);
  99. this.menuStrip1.Name = "menuStrip1";
  100. this.menuStrip1.Size = new System.Drawing.Size(696, 24);
  101. this.menuStrip1.TabIndex = 2;
  102. this.menuStrip1.Text = "menuStrip1";
  103. //
  104. // fileToolStripMenuItem
  105. //
  106. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  107. this.loadToolStripMenuItem});
  108. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  109. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  110. this.fileToolStripMenuItem.Text = "File";
  111. this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
  112. //
  113. // loadToolStripMenuItem
  114. //
  115. this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
  116. this.loadToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
  117. this.loadToolStripMenuItem.Text = "Load...";
  118. this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
  119. //
  120. // toolStrip1
  121. //
  122. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  123. this.toolStripLabel1});
  124. this.toolStrip1.Location = new System.Drawing.Point(0, 24);
  125. this.toolStrip1.Name = "toolStrip1";
  126. this.toolStrip1.Size = new System.Drawing.Size(696, 25);
  127. this.toolStrip1.TabIndex = 3;
  128. this.toolStrip1.Text = "toolStrip1";
  129. //
  130. // toolStripLabel1
  131. //
  132. this.toolStripLabel1.Name = "toolStripLabel1";
  133. this.toolStripLabel1.Size = new System.Drawing.Size(69, 22);
  134. this.toolStripLabel1.Text = "Placeholder";
  135. //
  136. // statusStrip1
  137. //
  138. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  139. this.toolStripLoadStatus});
  140. this.statusStrip1.Location = new System.Drawing.Point(0, 493);
  141. this.statusStrip1.Name = "statusStrip1";
  142. this.statusStrip1.Size = new System.Drawing.Size(696, 22);
  143. this.statusStrip1.TabIndex = 4;
  144. this.statusStrip1.Text = "statusStrip1";
  145. this.statusStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.statusStrip1_ItemClicked);
  146. //
  147. // toolStripLoadStatus
  148. //
  149. this.toolStripLoadStatus.Name = "toolStripLoadStatus";
  150. this.toolStripLoadStatus.Size = new System.Drawing.Size(40, 17);
  151. this.toolStripLoadStatus.Text = "no file";
  152. this.toolStripLoadStatus.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
  153. //
  154. // timer1
  155. //
  156. this.timer1.Interval = 10;
  157. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  158. //
  159. // Form1
  160. //
  161. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  162. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  163. this.BackColor = System.Drawing.SystemColors.MenuBar;
  164. this.ClientSize = new System.Drawing.Size(696, 515);
  165. this.Controls.Add(this.statusStrip1);
  166. this.Controls.Add(this.toolStrip1);
  167. this.Controls.Add(this.tableLayoutPanel1);
  168. this.Controls.Add(this.menuStrip1);
  169. this.MainMenuStrip = this.menuStrip1;
  170. this.Margin = new System.Windows.Forms.Padding(2);
  171. this.Name = "Form1";
  172. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  173. this.Text = "Sketch Assistant";
  174. this.Load += new System.EventHandler(this.Form1_Load);
  175. this.tableLayoutPanel1.ResumeLayout(false);
  176. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
  177. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLeft)).EndInit();
  178. this.menuStrip1.ResumeLayout(false);
  179. this.menuStrip1.PerformLayout();
  180. this.toolStrip1.ResumeLayout(false);
  181. this.toolStrip1.PerformLayout();
  182. this.statusStrip1.ResumeLayout(false);
  183. this.statusStrip1.PerformLayout();
  184. this.ResumeLayout(false);
  185. this.PerformLayout();
  186. }
  187. #endregion
  188. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  189. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  190. private System.Windows.Forms.MenuStrip menuStrip1;
  191. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  192. private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
  193. private System.Windows.Forms.ToolStrip toolStrip1;
  194. private System.Windows.Forms.ToolStripLabel toolStripLabel1;
  195. private System.Windows.Forms.StatusStrip statusStrip1;
  196. private System.Windows.Forms.ToolStripStatusLabel toolStripLoadStatus;
  197. private System.ComponentModel.BackgroundWorker backgroundWorker2;
  198. private System.Windows.Forms.PictureBox pictureBoxRight;
  199. private System.Windows.Forms.PictureBox pictureBoxLeft;
  200. private System.Windows.Forms.Timer timer1;
  201. }
  202. }