Form1.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. namespace Test.Toast
  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. this.components = new System.ComponentModel.Container();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button4 = new System.Windows.Forms.Button();
  33. this.button5 = new System.Windows.Forms.Button();
  34. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  35. this.button6 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // button1
  39. //
  40. this.button1.Location = new System.Drawing.Point(12, 12);
  41. this.button1.Name = "button1";
  42. this.button1.Size = new System.Drawing.Size(75, 23);
  43. this.button1.TabIndex = 0;
  44. this.button1.Text = "button1";
  45. this.button1.UseVisualStyleBackColor = true;
  46. this.button1.Click += new System.EventHandler(this.button1_Click);
  47. //
  48. // button2
  49. //
  50. this.button2.Location = new System.Drawing.Point(197, 12);
  51. this.button2.Name = "button2";
  52. this.button2.Size = new System.Drawing.Size(75, 23);
  53. this.button2.TabIndex = 1;
  54. this.button2.Text = "button2";
  55. this.button2.UseVisualStyleBackColor = true;
  56. this.button2.Click += new System.EventHandler(this.button2_Click);
  57. //
  58. // button3
  59. //
  60. this.button3.Location = new System.Drawing.Point(197, 41);
  61. this.button3.Name = "button3";
  62. this.button3.Size = new System.Drawing.Size(75, 23);
  63. this.button3.TabIndex = 2;
  64. this.button3.Text = "button3";
  65. this.button3.UseVisualStyleBackColor = true;
  66. this.button3.Click += new System.EventHandler(this.button3_Click);
  67. //
  68. // button4
  69. //
  70. this.button4.Location = new System.Drawing.Point(197, 70);
  71. this.button4.Name = "button4";
  72. this.button4.Size = new System.Drawing.Size(75, 23);
  73. this.button4.TabIndex = 3;
  74. this.button4.Text = "button4";
  75. this.button4.UseVisualStyleBackColor = true;
  76. this.button4.Click += new System.EventHandler(this.button4_Click);
  77. //
  78. // button5
  79. //
  80. this.button5.Location = new System.Drawing.Point(12, 226);
  81. this.button5.Name = "button5";
  82. this.button5.Size = new System.Drawing.Size(75, 23);
  83. this.button5.TabIndex = 4;
  84. this.button5.Text = "button5";
  85. this.button5.UseVisualStyleBackColor = true;
  86. this.button5.Click += new System.EventHandler(this.button5_Click);
  87. //
  88. // notifyIcon1
  89. //
  90. this.notifyIcon1.Text = "notifyIcon1";
  91. this.notifyIcon1.Visible = true;
  92. //
  93. // button6
  94. //
  95. this.button6.Location = new System.Drawing.Point(28, 85);
  96. this.button6.Name = "button6";
  97. this.button6.Size = new System.Drawing.Size(75, 23);
  98. this.button6.TabIndex = 5;
  99. this.button6.Text = "button6";
  100. this.button6.UseVisualStyleBackColor = true;
  101. this.button6.Click += new System.EventHandler(this.button6_Click);
  102. //
  103. // Form1
  104. //
  105. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  106. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  107. this.ClientSize = new System.Drawing.Size(284, 261);
  108. this.Controls.Add(this.button6);
  109. this.Controls.Add(this.button5);
  110. this.Controls.Add(this.button4);
  111. this.Controls.Add(this.button3);
  112. this.Controls.Add(this.button2);
  113. this.Controls.Add(this.button1);
  114. this.Name = "Form1";
  115. this.Text = "Form1";
  116. this.Load += new System.EventHandler(this.Form1_Load);
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.Button button1;
  121. private System.Windows.Forms.Button button2;
  122. private System.Windows.Forms.Button button3;
  123. private System.Windows.Forms.Button button4;
  124. private System.Windows.Forms.Button button5;
  125. private System.Windows.Forms.NotifyIcon notifyIcon1;
  126. private System.Windows.Forms.Button button6;
  127. }
  128. }