Form1.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. namespace WindowsFormsHelpProvider
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  30. this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
  31. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  32. this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
  33. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  34. this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
  35. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  36. this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
  37. this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
  38. this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  39. this.helpProvider1 = new System.Windows.Forms.HelpProvider();
  40. this.toolStrip1.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // toolStrip1
  44. //
  45. this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  46. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  47. this.toolStripLabel1,
  48. this.toolStripSeparator1,
  49. this.toolStripLabel2,
  50. this.toolStripSeparator2,
  51. this.toolStripLabel3,
  52. this.toolStripSeparator3,
  53. this.toolStripLabel4,
  54. this.toolStripSeparator4,
  55. this.toolStripButton1});
  56. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  57. this.toolStrip1.Name = "toolStrip1";
  58. this.toolStrip1.Size = new System.Drawing.Size(471, 27);
  59. this.toolStrip1.TabIndex = 0;
  60. this.toolStrip1.Text = "toolStrip1";
  61. //
  62. // toolStripLabel1
  63. //
  64. this.toolStripLabel1.Name = "toolStripLabel1";
  65. this.toolStripLabel1.Size = new System.Drawing.Size(39, 24);
  66. this.toolStripLabel1.Text = "文件";
  67. //
  68. // toolStripSeparator1
  69. //
  70. this.toolStripSeparator1.Name = "toolStripSeparator1";
  71. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 27);
  72. //
  73. // toolStripLabel2
  74. //
  75. this.toolStripLabel2.Name = "toolStripLabel2";
  76. this.toolStripLabel2.Size = new System.Drawing.Size(39, 24);
  77. this.toolStripLabel2.Text = "编辑";
  78. //
  79. // toolStripSeparator2
  80. //
  81. this.toolStripSeparator2.Name = "toolStripSeparator2";
  82. this.toolStripSeparator2.Size = new System.Drawing.Size(6, 27);
  83. //
  84. // toolStripLabel3
  85. //
  86. this.toolStripLabel3.Name = "toolStripLabel3";
  87. this.toolStripLabel3.Size = new System.Drawing.Size(39, 24);
  88. this.toolStripLabel3.Text = "窗口";
  89. //
  90. // toolStripSeparator3
  91. //
  92. this.toolStripSeparator3.Name = "toolStripSeparator3";
  93. this.toolStripSeparator3.Size = new System.Drawing.Size(6, 27);
  94. //
  95. // toolStripLabel4
  96. //
  97. this.toolStripLabel4.Name = "toolStripLabel4";
  98. this.toolStripLabel4.Size = new System.Drawing.Size(39, 24);
  99. this.toolStripLabel4.Text = "测试";
  100. //
  101. // toolStripSeparator4
  102. //
  103. this.toolStripSeparator4.Name = "toolStripSeparator4";
  104. this.toolStripSeparator4.Size = new System.Drawing.Size(6, 27);
  105. //
  106. // toolStripButton1
  107. //
  108. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  109. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  110. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  111. this.toolStripButton1.Name = "toolStripButton1";
  112. this.toolStripButton1.Size = new System.Drawing.Size(29, 24);
  113. this.toolStripButton1.Text = "toolStripButton1";
  114. //
  115. // Form1
  116. //
  117. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  118. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  119. this.ClientSize = new System.Drawing.Size(471, 270);
  120. this.Controls.Add(this.toolStrip1);
  121. this.Name = "Form1";
  122. this.Text = "Form1";
  123. this.Load += new System.EventHandler(this.Form1_Load);
  124. this.toolStrip1.ResumeLayout(false);
  125. this.toolStrip1.PerformLayout();
  126. this.ResumeLayout(false);
  127. this.PerformLayout();
  128. }
  129. #endregion
  130. private System.Windows.Forms.ToolStrip toolStrip1;
  131. private System.Windows.Forms.ToolStripLabel toolStripLabel1;
  132. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  133. private System.Windows.Forms.ToolStripLabel toolStripLabel2;
  134. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  135. private System.Windows.Forms.ToolStripLabel toolStripLabel3;
  136. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  137. private System.Windows.Forms.ToolStripLabel toolStripLabel4;
  138. private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
  139. private System.Windows.Forms.ToolStripButton toolStripButton1;
  140. private System.Windows.Forms.HelpProvider helpProvider1;
  141. }
  142. }