001.
namespace
dotnetfiddle
002.
{
003.
partial
class
frmHtmlAgilityPack
004.
{
005.
/// <summary>
006.
/// Required designer variable.
007.
/// </summary>
008.
private
System.ComponentModel.IContainer components =
null
;
009.
010.
/// <summary>
011.
/// Clean up any resources being used.
012.
/// </summary>
013.
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
014.
protected
override
void
Dispose(
bool
disposing)
015.
{
016.
if
(disposing && (components !=
null
))
017.
{
018.
components.Dispose();
019.
}
020.
base
.Dispose(disposing);
021.
}
022.
023.
#region Windows Form Designer generated code
024.
025.
/// <summary>
026.
/// Required method for Designer support - do not modify
027.
/// the contents of this method with the code editor.
028.
/// </summary>
029.
private
void
InitializeComponent()
030.
{
031.
this
.richTextBox1 =
new
System.Windows.Forms.RichTextBox();
032.
this
.panel1 =
new
System.Windows.Forms.Panel();
033.
this
.button1 =
new
System.Windows.Forms.Button();
034.
this
.textBox1 =
new
System.Windows.Forms.TextBox();
035.
this
.panel1.SuspendLayout();
036.
this
.SuspendLayout();
037.
038.
039.
040.
this
.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
041.
this
.richTextBox1.Location =
new
System.Drawing.Point(0, 62);
042.
this
.richTextBox1.Margin =
new
System.Windows.Forms.Padding(4, 4, 4, 4);
043.
this
.richTextBox1.Name =
"richTextBox1"
;
044.
this
.richTextBox1.Size =
new
System.Drawing.Size(687, 242);
045.
this
.richTextBox1.TabIndex = 0;
046.
this
.richTextBox1.Text =
""
;
047.
048.
049.
050.
this
.panel1.Controls.Add(
this
.button1);
051.
this
.panel1.Controls.Add(
this
.textBox1);
052.
this
.panel1.Dock = System.Windows.Forms.DockStyle.Top;
053.
this
.panel1.Location =
new
System.Drawing.Point(0, 0);
054.
this
.panel1.Margin =
new
System.Windows.Forms.Padding(4, 4, 4, 4);
055.
this
.panel1.Name =
"panel1"
;
056.
this
.panel1.Size =
new
System.Drawing.Size(687, 62);
057.
this
.panel1.TabIndex = 1;
058.
059.
060.
061.
this
.button1.Location =
new
System.Drawing.Point(451, 16);
062.
this
.button1.Margin =
new
System.Windows.Forms.Padding(4, 4, 4, 4);
063.
this
.button1.Name =
"button1"
;
064.
this
.button1.Size =
new
System.Drawing.Size(100, 28);
065.
this
.button1.TabIndex = 1;
066.
this
.button1.Text =
"Run"
;
067.
this
.button1.UseVisualStyleBackColor =
true
;
068.
this
.button1.Click +=
new
System.EventHandler(
this
.button1_Click);
069.
070.
071.
072.
this
.textBox1.Location =
new
System.Drawing.Point(17, 16);
073.
this
.textBox1.Margin =
new
System.Windows.Forms.Padding(4, 4, 4, 4);
074.
this
.textBox1.Name =
"textBox1"
;
075.
this
.textBox1.Size =
new
System.Drawing.Size(407, 22);
076.
this
.textBox1.TabIndex = 0;
077.
078.
079.
080.
this
.AutoScaleDimensions =
new
System.Drawing.SizeF(8F, 16F);
081.
this
.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
082.
this
.ClientSize =
new
System.Drawing.Size(687, 304);
083.
this
.Controls.Add(
this
.richTextBox1);
084.
this
.Controls.Add(
this
.panel1);
085.
this
.Margin =
new
System.Windows.Forms.Padding(4, 4, 4, 4);
086.
this
.Name =
"frmHtmlAgilityPack"
;
087.
this
.Text =
"frmHtmlAgilityPack"
;
088.
this
.Load +=
new
System.EventHandler(
this
.frmHtmlAgilityPack_Load);
089.
this
.panel1.ResumeLayout(
false
);
090.
this
.panel1.PerformLayout();
091.
this
.ResumeLayout(
false
);
092.
093.
}
094.
095.
#endregion
096.
private
System.Windows.Forms.Panel panel1;
097.
public
System.Windows.Forms.RichTextBox richTextBox1;
098.
public
System.Windows.Forms.Button button1;
099.
public
System.Windows.Forms.TextBox textBox1;
100.
}
101.
}