74 lines
2.5 KiB
C#
74 lines
2.5 KiB
C#
|
|
namespace OceanNetWorks
|
|
{
|
|
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.scraperBox = new System.Windows.Forms.RichTextBox();
|
|
this.btnScrape = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// scraperBox
|
|
//
|
|
this.scraperBox.Location = new System.Drawing.Point(12, 12);
|
|
this.scraperBox.Name = "scraperBox";
|
|
this.scraperBox.Size = new System.Drawing.Size(768, 680);
|
|
this.scraperBox.TabIndex = 0;
|
|
this.scraperBox.Text = "";
|
|
//
|
|
// btnScrape
|
|
//
|
|
this.btnScrape.Location = new System.Drawing.Point(364, 711);
|
|
this.btnScrape.Name = "btnScrape";
|
|
this.btnScrape.Size = new System.Drawing.Size(75, 23);
|
|
this.btnScrape.TabIndex = 1;
|
|
this.btnScrape.Text = "Start";
|
|
this.btnScrape.UseVisualStyleBackColor = true;
|
|
this.btnScrape.Click += new System.EventHandler(this.btnScrape_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(792, 758);
|
|
this.Controls.Add(this.btnScrape);
|
|
this.Controls.Add(this.scraperBox);
|
|
this.Name = "Form1";
|
|
this.Text = "WebScraper";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox scraperBox;
|
|
private System.Windows.Forms.Button btnScrape;
|
|
}
|
|
}
|
|
|