-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
123 lines (116 loc) · 5.73 KB
/
Form1.Designer.cs
File metadata and controls
123 lines (116 loc) · 5.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
namespace FindText.WinForms
{
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.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.browserView = new DotNetBrowser.WinForms.BrowserView();
this.textBox = new System.Windows.Forms.TextBox();
this.findButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 4;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel.Controls.Add(this.browserView, 0, 0);
this.tableLayoutPanel.Controls.Add(this.textBox, 0, 1);
this.tableLayoutPanel.Controls.Add(this.findButton, 1, 1);
this.tableLayoutPanel.Controls.Add(this.clearButton, 2, 1);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 2;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel.Size = new System.Drawing.Size(1017, 522);
this.tableLayoutPanel.TabIndex = 0;
//
// browserView
//
this.tableLayoutPanel.SetColumnSpan(this.browserView, 4);
this.browserView.Dock = System.Windows.Forms.DockStyle.Fill;
this.browserView.Location = new System.Drawing.Point(3, 3);
this.browserView.Name = "browserView";
this.browserView.Size = new System.Drawing.Size(1011, 476);
this.browserView.TabIndex = 0;
//
// textBox
//
this.textBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBox.Location = new System.Drawing.Point(3, 485);
this.textBox.Name = "textBox";
this.textBox.Size = new System.Drawing.Size(811, 22);
this.textBox.TabIndex = 1;
//
// findButton
//
this.findButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.findButton.Location = new System.Drawing.Point(820, 485);
this.findButton.Name = "findButton";
this.findButton.Size = new System.Drawing.Size(94, 34);
this.findButton.TabIndex = 2;
this.findButton.Text = "Find";
this.findButton.UseVisualStyleBackColor = true;
this.findButton.Click += new System.EventHandler(this.findButton_Click);
//
// clearButton
//
this.clearButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.clearButton.Location = new System.Drawing.Point(920, 485);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(94, 34);
this.clearButton.TabIndex = 3;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1017, 522);
this.Controls.Add(this.tableLayoutPanel);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
private DotNetBrowser.WinForms.BrowserView browserView;
private System.Windows.Forms.TextBox textBox;
private System.Windows.Forms.Button findButton;
private System.Windows.Forms.Button clearButton;
}
}