mirror of
https://github.com/NaiboWang/EasySpider.git
synced 2025-04-21 02:25:10 +08:00
84 lines
3.0 KiB
C#
84 lines
3.0 KiB
C#
namespace ServiceWrapper
|
||
{
|
||
partial class Flow
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.components = new System.ComponentModel.Container();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Flow));
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||
this.timer2 = new System.Windows.Forms.Timer(this.components);
|
||
this.SuspendLayout();
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||
| System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.panel1.AutoSize = true;
|
||
this.panel1.Location = new System.Drawing.Point(2, 3);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(923, 676);
|
||
this.panel1.TabIndex = 0;
|
||
//
|
||
// timer1
|
||
//
|
||
this.timer1.Interval = 500;
|
||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick_1);
|
||
//
|
||
// timer2
|
||
//
|
||
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
|
||
//
|
||
// Flow
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(931, 713);
|
||
this.Controls.Add(this.panel1);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.Name = "Flow";
|
||
this.Text = "服务包装手动版";
|
||
this.Load += new System.EventHandler(this.Flow_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
|
||
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Panel panel1;
|
||
private System.Windows.Forms.Timer timer1;
|
||
private System.Windows.Forms.Timer timer2;
|
||
}
|
||
}
|
||
|