Form1.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace UAS_DXFORM
  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.Timer = new System.Windows.Forms.Timer(this.components);
  31. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  32. this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.提示 = new System.Windows.Forms.NotifyIcon(this.components);
  34. this.contextMenuStrip1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // Timer
  38. //
  39. this.Timer.Interval = 1000;
  40. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  41. //
  42. // contextMenuStrip1
  43. //
  44. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  45. this.退出ToolStripMenuItem});
  46. this.contextMenuStrip1.Name = "contextMenuStrip1";
  47. this.contextMenuStrip1.Size = new System.Drawing.Size(101, 26);
  48. //
  49. // 退出ToolStripMenuItem
  50. //
  51. this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
  52. this.退出ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
  53. this.退出ToolStripMenuItem.Text = "退出";
  54. this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
  55. //
  56. // 提示
  57. //
  58. this.提示.ContextMenuStrip = this.contextMenuStrip1;
  59. this.提示.Icon = ((System.Drawing.Icon)(resources.GetObject("提示.Icon")));
  60. this.提示.Text = "提示";
  61. this.提示.Visible = true;
  62. //
  63. // Form1
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(284, 261);
  68. this.Name = "Form1";
  69. this.ShowInTaskbar = false;
  70. this.Text = "Form1";
  71. this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
  72. this.Load += new System.EventHandler(this.Form1_Load);
  73. this.contextMenuStrip1.ResumeLayout(false);
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private System.Windows.Forms.Timer Timer;
  78. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  79. private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
  80. private System.Windows.Forms.NotifyIcon 提示;
  81. }
  82. }