101 lines
4.0 KiB
C#
101 lines
4.0 KiB
C#
namespace future_crawler
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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()
|
|
{
|
|
this.btSearchCode = new System.Windows.Forms.Button();
|
|
this.lbFutCode = new System.Windows.Forms.Label();
|
|
this.btCrawlingFuture = new System.Windows.Forms.Button();
|
|
this.btCrawlingOption = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// btSearchCode
|
|
//
|
|
this.btSearchCode.Location = new System.Drawing.Point(12, 12);
|
|
this.btSearchCode.Name = "btSearchCode";
|
|
this.btSearchCode.Size = new System.Drawing.Size(106, 23);
|
|
this.btSearchCode.TabIndex = 0;
|
|
this.btSearchCode.Text = "Search Code";
|
|
this.btSearchCode.UseVisualStyleBackColor = true;
|
|
this.btSearchCode.Click += new System.EventHandler(this.btSearchCode_Click);
|
|
//
|
|
// lbFutCode
|
|
//
|
|
this.lbFutCode.AutoSize = true;
|
|
this.lbFutCode.Location = new System.Drawing.Point(151, 17);
|
|
this.lbFutCode.Name = "lbFutCode";
|
|
this.lbFutCode.Size = new System.Drawing.Size(56, 12);
|
|
this.lbFutCode.TabIndex = 1;
|
|
this.lbFutCode.Text = "unknown";
|
|
//
|
|
// btCrawlingFuture
|
|
//
|
|
this.btCrawlingFuture.Location = new System.Drawing.Point(12, 104);
|
|
this.btCrawlingFuture.Name = "btCrawlingFuture";
|
|
this.btCrawlingFuture.Size = new System.Drawing.Size(160, 100);
|
|
this.btCrawlingFuture.TabIndex = 2;
|
|
this.btCrawlingFuture.Text = "Future Crawling";
|
|
this.btCrawlingFuture.UseVisualStyleBackColor = true;
|
|
this.btCrawlingFuture.Click += new System.EventHandler(this.btCrawling_Click);
|
|
//
|
|
// btCrawlingOption
|
|
//
|
|
this.btCrawlingOption.Location = new System.Drawing.Point(231, 104);
|
|
this.btCrawlingOption.Name = "btCrawlingOption";
|
|
this.btCrawlingOption.Size = new System.Drawing.Size(143, 100);
|
|
this.btCrawlingOption.TabIndex = 3;
|
|
this.btCrawlingOption.Text = "Option Crawling";
|
|
this.btCrawlingOption.UseVisualStyleBackColor = true;
|
|
this.btCrawlingOption.Click += new System.EventHandler(this.btCrawlingOption_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(386, 405);
|
|
this.Controls.Add(this.btCrawlingOption);
|
|
this.Controls.Add(this.btCrawlingFuture);
|
|
this.Controls.Add(this.lbFutCode);
|
|
this.Controls.Add(this.btSearchCode);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btSearchCode;
|
|
private System.Windows.Forms.Label lbFutCode;
|
|
private System.Windows.Forms.Button btCrawlingFuture;
|
|
private System.Windows.Forms.Button btCrawlingOption;
|
|
}
|
|
}
|
|
|