Form3.Designer.cs 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. namespace WindowsFormsDemo1
  2. {
  3. partial class Form3
  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.menuStrip1 = new System.Windows.Forms.MenuStrip();
  29. this.水平平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  30. this.垂直平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.menuStrip1.SuspendLayout();
  32. this.SuspendLayout();
  33. //
  34. // menuStrip1
  35. //
  36. this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  37. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  38. this.水平平铺ToolStripMenuItem,
  39. this.垂直平铺ToolStripMenuItem});
  40. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  41. this.menuStrip1.Name = "menuStrip1";
  42. this.menuStrip1.Size = new System.Drawing.Size(800, 30);
  43. this.menuStrip1.TabIndex = 1;
  44. this.menuStrip1.Text = "menuStrip1";
  45. //
  46. // 水平平铺ToolStripMenuItem
  47. //
  48. this.水平平铺ToolStripMenuItem.Name = "水平平铺ToolStripMenuItem";
  49. this.水平平铺ToolStripMenuItem.Size = new System.Drawing.Size(83, 24);
  50. this.水平平铺ToolStripMenuItem.Text = "水平平铺";
  51. //
  52. // 垂直平铺ToolStripMenuItem
  53. //
  54. this.垂直平铺ToolStripMenuItem.Name = "垂直平铺ToolStripMenuItem";
  55. this.垂直平铺ToolStripMenuItem.Size = new System.Drawing.Size(83, 26);
  56. this.垂直平铺ToolStripMenuItem.Text = "垂直平铺";
  57. //
  58. // Form3
  59. //
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  62. this.ClientSize = new System.Drawing.Size(800, 450);
  63. this.Controls.Add(this.menuStrip1);
  64. this.IsMdiContainer = true;
  65. this.MainMenuStrip = this.menuStrip1;
  66. this.Name = "Form3";
  67. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  68. this.Text = "Form3";
  69. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form3_FormClosing);
  70. this.Load += new System.EventHandler(this.Form3_Load);
  71. this.Click += new System.EventHandler(this.Form3_Click);
  72. this.menuStrip1.ResumeLayout(false);
  73. this.menuStrip1.PerformLayout();
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.MenuStrip menuStrip1;
  79. private System.Windows.Forms.ToolStripMenuItem 水平平铺ToolStripMenuItem;
  80. private System.Windows.Forms.ToolStripMenuItem 垂直平铺ToolStripMenuItem;
  81. }
  82. }