Start.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. namespace ServiceWrapper
  2. {
  3. partial class Start
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Start));
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.State = new System.Windows.Forms.Label();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(60, 66);
  38. this.button1.Margin = new System.Windows.Forms.Padding(4);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(196, 75);
  41. this.button1.TabIndex = 1;
  42. this.button1.Text = "包装/修改/查看服务";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // label1
  47. //
  48. this.label1.AutoSize = true;
  49. this.label1.Location = new System.Drawing.Point(15, 29);
  50. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  51. this.label1.Name = "label1";
  52. this.label1.Size = new System.Drawing.Size(88, 16);
  53. this.label1.TabIndex = 2;
  54. this.label1.Text = "程序状态:";
  55. //
  56. // State
  57. //
  58. this.State.AutoSize = true;
  59. this.State.Location = new System.Drawing.Point(102, 29);
  60. this.State.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  61. this.State.Name = "State";
  62. this.State.Size = new System.Drawing.Size(200, 16);
  63. this.State.TabIndex = 3;
  64. this.State.Text = "请点击相应操作按钮使用。";
  65. //
  66. // button2
  67. //
  68. this.button2.Location = new System.Drawing.Point(60, 163);
  69. this.button2.Margin = new System.Windows.Forms.Padding(4);
  70. this.button2.Name = "button2";
  71. this.button2.Size = new System.Drawing.Size(196, 75);
  72. this.button2.TabIndex = 4;
  73. this.button2.Text = "查看/调用/删除服务";
  74. this.button2.UseVisualStyleBackColor = true;
  75. this.button2.Click += new System.EventHandler(this.button2_Click);
  76. //
  77. // Start
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81. this.ClientSize = new System.Drawing.Size(340, 260);
  82. this.Controls.Add(this.button2);
  83. this.Controls.Add(this.State);
  84. this.Controls.Add(this.label1);
  85. this.Controls.Add(this.button1);
  86. this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  87. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  88. this.Margin = new System.Windows.Forms.Padding(4);
  89. this.MaximizeBox = false;
  90. this.Name = "Start";
  91. this.Text = "面向Web资源的服务封装系统";
  92. this.Load += new System.EventHandler(this.Start_Load);
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.Button button1;
  98. private System.Windows.Forms.Label label1;
  99. private System.Windows.Forms.Label State;
  100. private System.Windows.Forms.Button button2;
  101. }
  102. }