Form1.Designer.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. namespace WindowsFormsToolStrip
  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.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
  31. this.toolStrip1.SuspendLayout();
  32. this.SuspendLayout();
  33. //
  34. // toolStrip1
  35. //
  36. this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  37. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  38. this.toolStripButton1});
  39. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  40. this.toolStrip1.Name = "toolStrip1";
  41. this.toolStrip1.Size = new System.Drawing.Size(430, 27);
  42. this.toolStrip1.TabIndex = 0;
  43. this.toolStrip1.Text = "toolStrip1";
  44. //
  45. // toolStripButton1
  46. //
  47. this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  48. this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
  49. this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  50. this.toolStripButton1.Name = "toolStripButton1";
  51. this.toolStripButton1.Size = new System.Drawing.Size(29, 24);
  52. this.toolStripButton1.Text = "toolStripButton1";
  53. this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
  54. //
  55. // Form1
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59. this.ClientSize = new System.Drawing.Size(430, 263);
  60. this.Controls.Add(this.toolStrip1);
  61. this.Name = "Form1";
  62. this.Text = "Form1";
  63. this.toolStrip1.ResumeLayout(false);
  64. this.toolStrip1.PerformLayout();
  65. this.ResumeLayout(false);
  66. this.PerformLayout();
  67. }
  68. #endregion
  69. private System.Windows.Forms.ToolStrip toolStrip1;
  70. private System.Windows.Forms.ToolStripButton toolStripButton1;
  71. }
  72. }