88 lines
3.3 KiB
C#
88 lines
3.3 KiB
C#
|
|
namespace PuppeteerSharpTest
|
|
{
|
|
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.rtbWatcher = new System.Windows.Forms.RichTextBox();
|
|
this.btnScrape = new System.Windows.Forms.Button();
|
|
this.txtNettoUmsatz = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// rtbWatcher
|
|
//
|
|
this.rtbWatcher.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.rtbWatcher.Location = new System.Drawing.Point(12, 12);
|
|
this.rtbWatcher.Name = "rtbWatcher";
|
|
this.rtbWatcher.Size = new System.Drawing.Size(776, 494);
|
|
this.rtbWatcher.TabIndex = 0;
|
|
this.rtbWatcher.Text = "";
|
|
//
|
|
// btnScrape
|
|
//
|
|
this.btnScrape.Location = new System.Drawing.Point(377, 507);
|
|
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);
|
|
//
|
|
// txtNettoUmsatz
|
|
//
|
|
this.txtNettoUmsatz.Location = new System.Drawing.Point(84, 513);
|
|
this.txtNettoUmsatz.Name = "txtNettoUmsatz";
|
|
this.txtNettoUmsatz.Size = new System.Drawing.Size(100, 23);
|
|
this.txtNettoUmsatz.TabIndex = 2;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 534);
|
|
this.Controls.Add(this.txtNettoUmsatz);
|
|
this.Controls.Add(this.btnScrape);
|
|
this.Controls.Add(this.rtbWatcher);
|
|
this.Name = "Form1";
|
|
this.Text = "Puppeteer";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox rtbWatcher;
|
|
private System.Windows.Forms.Button btnScrape;
|
|
private System.Windows.Forms.TextBox txtNettoUmsatz;
|
|
}
|
|
}
|
|
|