Form1.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.toolStrip1 = new System.Windows.Forms.ToolStrip();
  29. this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
  30. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  31. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  32. this.toolStrip1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // toolStrip1
  36. //
  37. this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
  38. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  39. this.toolStripLabel1});
  40. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  41. this.toolStrip1.Name = "toolStrip1";
  42. this.toolStrip1.Size = new System.Drawing.Size(584, 25);
  43. this.toolStrip1.TabIndex = 0;
  44. this.toolStrip1.Text = "toolStrip1";
  45. //
  46. // toolStripLabel1
  47. //
  48. this.toolStripLabel1.Name = "toolStripLabel1";
  49. this.toolStripLabel1.Size = new System.Drawing.Size(168, 22);
  50. this.toolStripLabel1.Text = "Placeholder for Future Buttons";
  51. this.toolStripLabel1.Click += new System.EventHandler(this.toolStripLabel1_Click);
  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.Location = new System.Drawing.Point(0, 23);
  64. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  65. this.tableLayoutPanel1.RowCount = 1;
  66. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  67. this.tableLayoutPanel1.Size = new System.Drawing.Size(584, 438);
  68. this.tableLayoutPanel1.TabIndex = 1;
  69. this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
  70. //
  71. // Form1
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.BackColor = System.Drawing.SystemColors.MenuBar;
  76. this.ClientSize = new System.Drawing.Size(584, 461);
  77. this.Controls.Add(this.tableLayoutPanel1);
  78. this.Controls.Add(this.toolStrip1);
  79. this.Margin = new System.Windows.Forms.Padding(2);
  80. this.Name = "Form1";
  81. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  82. this.Text = "Sketch Assistant";
  83. this.Load += new System.EventHandler(this.Form1_Load);
  84. this.toolStrip1.ResumeLayout(false);
  85. this.toolStrip1.PerformLayout();
  86. this.ResumeLayout(false);
  87. this.PerformLayout();
  88. }
  89. #endregion
  90. private System.Windows.Forms.ToolStrip toolStrip1;
  91. private System.Windows.Forms.ToolStripLabel toolStripLabel1;
  92. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  93. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  94. }
  95. }