Form1.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 = "notifyIcon1";
  50. this.notifyIcon1.Visible = true;
  51. //
  52. // webBrowser1
  53. //
  54. this.webBrowser1.Location = new System.Drawing.Point(49, 291);
  55. this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
  56. this.webBrowser1.Name = "webBrowser1";
  57. this.webBrowser1.Size = new System.Drawing.Size(250, 24);
  58. this.webBrowser1.TabIndex = 1;
  59. this.webBrowser1.Url = new System.Uri("http://fm.baidu.com/", System.UriKind.Absolute);
  60. //
  61. // Form1
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.ClientSize = new System.Drawing.Size(345, 327);
  66. this.Controls.Add(this.webBrowser1);
  67. this.Controls.Add(this.pictureBox1);
  68. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  69. this.Name = "Form1";
  70. this.Text = "Icon";
  71. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  72. this.ResumeLayout(false);
  73. }
  74. #endregion
  75. private System.Windows.Forms.PictureBox pictureBox1;
  76. private System.Windows.Forms.NotifyIcon notifyIcon1;
  77. private System.Windows.Forms.WebBrowser webBrowser1;
  78. }
  79. }