diff options
| author | Alee14 <alee14498@gmail.com> | 2017-05-08 22:23:37 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2017-05-08 22:23:37 -0400 |
| commit | 97fbec19b3f85fc578742266d326c1d61cfa9401 (patch) | |
| tree | efad5ab8d7fd0cac322dce4d7cd8584eae052308 /AleeBrowser/Form1.Designer.cs | |
| parent | 1afa1110bc63b13a64b00066a3c2cc71b8a35c7f (diff) | |
| download | AleeBrowser-WinForms-97fbec19b3f85fc578742266d326c1d61cfa9401.tar.gz AleeBrowser-WinForms-97fbec19b3f85fc578742266d326c1d61cfa9401.tar.bz2 AleeBrowser-WinForms-97fbec19b3f85fc578742266d326c1d61cfa9401.zip | |
Adding cool stuff and a cool feature too :wink:
Diffstat (limited to 'AleeBrowser/Form1.Designer.cs')
| -rw-r--r-- | AleeBrowser/Form1.Designer.cs | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/AleeBrowser/Form1.Designer.cs b/AleeBrowser/Form1.Designer.cs index 06ea940..360413e 100644 --- a/AleeBrowser/Form1.Designer.cs +++ b/AleeBrowser/Form1.Designer.cs @@ -38,6 +38,7 @@ this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); + this.button2 = new System.Windows.Forms.Button(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // @@ -68,9 +69,9 @@ this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(819, 512); this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(87, 13); + this.label2.Size = new System.Drawing.Size(93, 13); this.label2.TabIndex = 5; - this.label2.Text = "Alpha 0.2 Build 5"; + this.label2.Text = "Alpha 0.2 Build 13"; // // button4 // @@ -105,11 +106,13 @@ this.webBrowser1.Name = "webBrowser1"; this.webBrowser1.Size = new System.Drawing.Size(934, 459); this.webBrowser1.TabIndex = 9; + this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted); + this.webBrowser1.ProgressChanged += new System.Windows.Forms.WebBrowserProgressChangedEventHandler(this.webBrowser1_ProgressChanged); // // button1 // this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.button1.Location = new System.Drawing.Point(103, 512); + this.button1.Location = new System.Drawing.Point(194, 512); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(71, 31); this.button1.TabIndex = 10; @@ -132,18 +135,31 @@ // this.toolStripProgressBar1.Name = "toolStripProgressBar1"; this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16); + this.toolStripProgressBar1.Click += new System.EventHandler(this.toolStripProgressBar1_Click); // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; - this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17); - this.toolStripStatusLabel1.Text = "toolStripStatusLabel1"; + this.toolStripStatusLabel1.Size = new System.Drawing.Size(82, 17); + this.toolStripStatusLabel1.Text = "Current Status"; + // + // button2 + // + this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.button2.Location = new System.Drawing.Point(103, 510); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(85, 31); + this.button2.TabIndex = 12; + this.button2.Text = "Victorify"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(974, 574); + this.Controls.Add(this.button2); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.button1); this.Controls.Add(this.webBrowser1); @@ -174,6 +190,7 @@ private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; + private System.Windows.Forms.Button button2; } } |
