Form1.Designer.cs 3.7 KB

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