FromServices.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace WCS.WFormServices
  2. {
  3. partial class FromServices
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btnStart = new System.Windows.Forms.Button();
  29. this.btnClose = new System.Windows.Forms.Button();
  30. this.lblMessage = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // btnStart
  34. //
  35. this.btnStart.Location = new System.Drawing.Point(44, 49);
  36. this.btnStart.Name = "btnStart";
  37. this.btnStart.Size = new System.Drawing.Size(150, 53);
  38. this.btnStart.TabIndex = 0;
  39. this.btnStart.Text = "启动WCS";
  40. this.btnStart.UseVisualStyleBackColor = true;
  41. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  42. //
  43. // btnClose
  44. //
  45. this.btnClose.Enabled = false;
  46. this.btnClose.Location = new System.Drawing.Point(284, 49);
  47. this.btnClose.Name = "btnClose";
  48. this.btnClose.Size = new System.Drawing.Size(150, 53);
  49. this.btnClose.TabIndex = 1;
  50. this.btnClose.Text = "关闭WCS";
  51. this.btnClose.UseVisualStyleBackColor = true;
  52. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  53. //
  54. // lblMessage
  55. //
  56. this.lblMessage.AutoSize = true;
  57. this.lblMessage.ForeColor = System.Drawing.Color.Red;
  58. this.lblMessage.Location = new System.Drawing.Point(56, 131);
  59. this.lblMessage.Name = "lblMessage";
  60. this.lblMessage.Size = new System.Drawing.Size(68, 17);
  61. this.lblMessage.TabIndex = 2;
  62. this.lblMessage.Text = "服务未启动";
  63. //
  64. // FromServices
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  68. this.ClientSize = new System.Drawing.Size(528, 177);
  69. this.Controls.Add(this.lblMessage);
  70. this.Controls.Add(this.btnClose);
  71. this.Controls.Add(this.btnStart);
  72. this.MaximizeBox = false;
  73. this.Name = "FromServices";
  74. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  75. this.Text = "Form1";
  76. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FromServices_FormClosing);
  77. this.ResumeLayout(false);
  78. this.PerformLayout();
  79. }
  80. #endregion
  81. private System.Windows.Forms.Button btnStart;
  82. private System.Windows.Forms.Button btnClose;
  83. private System.Windows.Forms.Label lblMessage;
  84. }
  85. }