Form1.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. namespace Waka.Lego.Icon
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  32. this.webBrowser1 = new System.Windows.Forms.WebBrowser();
  33. this.button1 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // pictureBox1
  38. //
  39. this.pictureBox1.Image = global::Waka.Lego.Icon.Properties.Resources.PoliceAcess;
  40. this.pictureBox1.Location = new System.Drawing.Point(49, 38);
  41. this.pictureBox1.Name = "pictureBox1";
  42. this.pictureBox1.Size = new System.Drawing.Size(250, 247);
  43. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  44. this.pictureBox1.TabIndex = 0;
  45. this.pictureBox1.TabStop = false;
  46. //
  47. // notifyIcon1
  48. //
  49. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  50. this.notifyIcon1.Text = "New Icon";
  51. this.notifyIcon1.Visible = true;
  52. this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
  53. //
  54. // webBrowser1
  55. //
  56. this.webBrowser1.Location = new System.Drawing.Point(49, 291);
  57. this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  58. this.webBrowser1.Name = "webBrowser1";
  59. this.webBrowser1.Size = new System.Drawing.Size(250, 24);
  60. this.webBrowser1.TabIndex = 1;
  61. this.webBrowser1.Url = new System.Uri("http://fm.baidu.com/", System.UriKind.Absolute);
  62. //
  63. // button1
  64. //
  65. this.button1.Location = new System.Drawing.Point(224, 9);
  66. this.button1.Name = "button1";
  67. this.button1.Size = new System.Drawing.Size(75, 23);
  68. this.button1.TabIndex = 2;
  69. this.button1.Text = "button1";
  70. this.button1.UseVisualStyleBackColor = true;
  71. this.button1.Click += new System.EventHandler(this.button1_Click);
  72. //
  73. // Form1
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.ClientSize = new System.Drawing.Size(345, 327);
  78. this.Controls.Add(this.button1);
  79. this.Controls.Add(this.webBrowser1);
  80. this.Controls.Add(this.pictureBox1);
  81. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  82. this.Name = "Form1";
  83. this.Text = "Icon";
  84. this.Load += new System.EventHandler(this.Form1_Load);
  85. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. private System.Windows.Forms.PictureBox pictureBox1;
  90. private System.Windows.Forms.NotifyIcon notifyIcon1;
  91. private System.Windows.Forms.WebBrowser webBrowser1;
  92. private System.Windows.Forms.Button button1;
  93. }
  94. }