MyWindowsService 录音批量下载服务源代码 vs2017 - 思念食品

Form1.Designer.cs 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. namespace WindowsServiceClient
  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.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.button4 = new System.Windows.Forms.Button();
  34. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  35. this.SuspendLayout();
  36. //
  37. // button1
  38. //
  39. this.button1.Location = new System.Drawing.Point(12, 23);
  40. this.button1.Name = "button1";
  41. this.button1.Size = new System.Drawing.Size(75, 23);
  42. this.button1.TabIndex = 0;
  43. this.button1.Text = "安装服务";
  44. this.button1.UseVisualStyleBackColor = true;
  45. this.button1.Click += new System.EventHandler(this.button1_Click);
  46. //
  47. // button2
  48. //
  49. this.button2.Location = new System.Drawing.Point(107, 23);
  50. this.button2.Name = "button2";
  51. this.button2.Size = new System.Drawing.Size(75, 23);
  52. this.button2.TabIndex = 1;
  53. this.button2.Text = "启动服务";
  54. this.button2.UseVisualStyleBackColor = true;
  55. this.button2.Click += new System.EventHandler(this.button2_Click);
  56. //
  57. // button3
  58. //
  59. this.button3.Location = new System.Drawing.Point(295, 23);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(75, 23);
  62. this.button3.TabIndex = 3;
  63. this.button3.Text = "卸载服务";
  64. this.button3.UseVisualStyleBackColor = true;
  65. this.button3.Click += new System.EventHandler(this.button3_Click);
  66. //
  67. // button4
  68. //
  69. this.button4.Location = new System.Drawing.Point(202, 23);
  70. this.button4.Name = "button4";
  71. this.button4.Size = new System.Drawing.Size(75, 23);
  72. this.button4.TabIndex = 2;
  73. this.button4.Text = "停止服务";
  74. this.button4.UseVisualStyleBackColor = true;
  75. this.button4.Click += new System.EventHandler(this.button4_Click);
  76. //
  77. // notifyIcon1
  78. //
  79. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  80. this.notifyIcon1.Text = "notifyIcon";
  81. this.notifyIcon1.Visible = true;
  82. this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
  83. //
  84. // Form1
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.ClientSize = new System.Drawing.Size(389, 67);
  89. this.Controls.Add(this.button4);
  90. this.Controls.Add(this.button3);
  91. this.Controls.Add(this.button2);
  92. this.Controls.Add(this.button1);
  93. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  94. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  95. this.MaximizeBox = false;
  96. this.Name = "Form1";
  97. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  98. this.Text = "录音下载服务";
  99. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  100. this.ClientSizeChanged += new System.EventHandler(this.Form1_Deactivate);
  101. this.ResumeLayout(false);
  102. }
  103. #endregion
  104. private System.Windows.Forms.Button button1;
  105. private System.Windows.Forms.Button button2;
  106. private System.Windows.Forms.Button button3;
  107. private System.Windows.Forms.Button button4;
  108. private System.Windows.Forms.NotifyIcon notifyIcon1;
  109. }
  110. }