1 |
namespace RomCheater.Docking |
2 |
{ |
3 |
partial class FloatingWebBrowser |
4 |
{ |
5 |
/// <summary> |
6 |
/// Required designer variable. |
7 |
/// </summary> |
8 |
private System.ComponentModel.IContainer components = null; |
9 |
|
10 |
/// <summary> |
11 |
/// Clean up any resources being used. |
12 |
/// </summary> |
13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
protected override void Dispose(bool disposing) |
15 |
{ |
16 |
if (disposing && (components != null)) |
17 |
{ |
18 |
components.Dispose(); |
19 |
} |
20 |
base.Dispose(disposing); |
21 |
} |
22 |
|
23 |
#region Windows Form Designer generated code |
24 |
|
25 |
/// <summary> |
26 |
/// Required method for Designer support - do not modify |
27 |
/// the contents of this method with the code editor. |
28 |
/// </summary> |
29 |
private void InitializeComponent() |
30 |
{ |
31 |
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); |
32 |
this.lblWebAddress = new System.Windows.Forms.Label(); |
33 |
this.txtWebAddress = new System.Windows.Forms.TextBox(); |
34 |
this.btnGo = new System.Windows.Forms.Button(); |
35 |
this.webBrowser = new System.Windows.Forms.WebBrowser(); |
36 |
this.tableLayoutPanel1.SuspendLayout(); |
37 |
this.SuspendLayout(); |
38 |
// |
39 |
// tableLayoutPanel1 |
40 |
// |
41 |
this.tableLayoutPanel1.AutoSize = true; |
42 |
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
43 |
this.tableLayoutPanel1.ColumnCount = 3; |
44 |
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
45 |
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
46 |
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); |
47 |
this.tableLayoutPanel1.Controls.Add(this.lblWebAddress, 0, 0); |
48 |
this.tableLayoutPanel1.Controls.Add(this.txtWebAddress, 1, 0); |
49 |
this.tableLayoutPanel1.Controls.Add(this.btnGo, 2, 0); |
50 |
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top; |
51 |
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); |
52 |
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7); |
53 |
this.tableLayoutPanel1.Name = "tableLayoutPanel1"; |
54 |
this.tableLayoutPanel1.RowCount = 1; |
55 |
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
56 |
this.tableLayoutPanel1.Size = new System.Drawing.Size(1137, 50); |
57 |
this.tableLayoutPanel1.TabIndex = 0; |
58 |
// |
59 |
// lblWebAddress |
60 |
// |
61 |
this.lblWebAddress.AutoSize = true; |
62 |
this.lblWebAddress.Dock = System.Windows.Forms.DockStyle.Fill; |
63 |
this.lblWebAddress.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
64 |
this.lblWebAddress.Location = new System.Drawing.Point(10, 10); |
65 |
this.lblWebAddress.Margin = new System.Windows.Forms.Padding(10); |
66 |
this.lblWebAddress.Name = "lblWebAddress"; |
67 |
this.lblWebAddress.Size = new System.Drawing.Size(205, 30); |
68 |
this.lblWebAddress.TabIndex = 0; |
69 |
this.lblWebAddress.Text = "Web Address:"; |
70 |
// |
71 |
// txtWebAddress |
72 |
// |
73 |
this.txtWebAddress.Dock = System.Windows.Forms.DockStyle.Fill; |
74 |
this.txtWebAddress.Location = new System.Drawing.Point(230, 5); |
75 |
this.txtWebAddress.Margin = new System.Windows.Forms.Padding(5); |
76 |
this.txtWebAddress.Name = "txtWebAddress"; |
77 |
this.txtWebAddress.Size = new System.Drawing.Size(821, 38); |
78 |
this.txtWebAddress.TabIndex = 1; |
79 |
// |
80 |
// btnGo |
81 |
// |
82 |
this.btnGo.AutoSize = true; |
83 |
this.btnGo.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
84 |
this.btnGo.Dock = System.Windows.Forms.DockStyle.Fill; |
85 |
this.btnGo.Location = new System.Drawing.Point(1061, 5); |
86 |
this.btnGo.Margin = new System.Windows.Forms.Padding(5); |
87 |
this.btnGo.Name = "btnGo"; |
88 |
this.btnGo.Size = new System.Drawing.Size(71, 40); |
89 |
this.btnGo.TabIndex = 2; |
90 |
this.btnGo.Text = "Go!"; |
91 |
this.btnGo.UseVisualStyleBackColor = true; |
92 |
this.btnGo.Click += new System.EventHandler(this.btnGo_Click); |
93 |
// |
94 |
// webBrowser |
95 |
// |
96 |
this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill; |
97 |
this.webBrowser.Location = new System.Drawing.Point(0, 50); |
98 |
this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); |
99 |
this.webBrowser.Name = "webBrowser"; |
100 |
this.webBrowser.Size = new System.Drawing.Size(1137, 442); |
101 |
this.webBrowser.TabIndex = 1; |
102 |
// |
103 |
// FloatingWebBrowser |
104 |
// |
105 |
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 30F); |
106 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
107 |
this.ClientSize = new System.Drawing.Size(1137, 492); |
108 |
this.Controls.Add(this.webBrowser); |
109 |
this.Controls.Add(this.tableLayoutPanel1); |
110 |
this.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
111 |
this.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7); |
112 |
this.Name = "FloatingWebBrowser"; |
113 |
this.Text = "Web Browser"; |
114 |
this.tableLayoutPanel1.ResumeLayout(false); |
115 |
this.tableLayoutPanel1.PerformLayout(); |
116 |
this.ResumeLayout(false); |
117 |
this.PerformLayout(); |
118 |
|
119 |
} |
120 |
|
121 |
#endregion |
122 |
|
123 |
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; |
124 |
private System.Windows.Forms.Label lblWebAddress; |
125 |
private System.Windows.Forms.TextBox txtWebAddress; |
126 |
private System.Windows.Forms.Button btnGo; |
127 |
private System.Windows.Forms.WebBrowser webBrowser; |
128 |
} |
129 |
} |