mirror of
https://github.com/NaiboWang/EasySpider.git
synced 2025-04-20 04:39:57 +08:00
107 lines
4.5 KiB
C#
107 lines
4.5 KiB
C#
namespace ServiceWrapper
|
|
{
|
|
partial class Start
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Start));
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.State = new System.Windows.Forms.Label();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(60, 66);
|
|
this.button1.Margin = new System.Windows.Forms.Padding(4);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(196, 75);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.Text = "包装/修改/查看服务";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(15, 29);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(88, 16);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "程序状态:";
|
|
//
|
|
// State
|
|
//
|
|
this.State.AutoSize = true;
|
|
this.State.Location = new System.Drawing.Point(102, 29);
|
|
this.State.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.State.Name = "State";
|
|
this.State.Size = new System.Drawing.Size(200, 16);
|
|
this.State.TabIndex = 3;
|
|
this.State.Text = "请点击相应操作按钮使用。";
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(60, 163);
|
|
this.button2.Margin = new System.Windows.Forms.Padding(4);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(196, 75);
|
|
this.button2.TabIndex = 4;
|
|
this.button2.Text = "查看/调用/删除服务";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// Start
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(340, 260);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.State);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.button1);
|
|
this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(4);
|
|
this.MaximizeBox = false;
|
|
this.Name = "Start";
|
|
this.Text = "面向Web资源的服务封装系统";
|
|
this.Load += new System.EventHandler(this.Start_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label State;
|
|
private System.Windows.Forms.Button button2;
|
|
}
|
|
} |