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
|
namespace PortEngine.QuantumAPI.Sites
{
partial class QuantumISP
{
/// <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 Component 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.lblQuantumISPTitle = new System.Windows.Forms.Label();
this.lblQuantumISPSubtitle = new System.Windows.Forms.Label();
this.lblYourPlan = new System.Windows.Forms.Label();
this.btnUnsub = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblQuantumISPTitle
//
this.lblQuantumISPTitle.AutoSize = true;
this.lblQuantumISPTitle.Font = new System.Drawing.Font("Consolas", 24F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblQuantumISPTitle.ForeColor = System.Drawing.Color.OliveDrab;
this.lblQuantumISPTitle.Location = new System.Drawing.Point(20, 21);
this.lblQuantumISPTitle.Name = "lblQuantumISPTitle";
this.lblQuantumISPTitle.Size = new System.Drawing.Size(359, 37);
this.lblQuantumISPTitle.TabIndex = 0;
this.lblQuantumISPTitle.Text = "Quantum Connections";
//
// lblQuantumISPSubtitle
//
this.lblQuantumISPSubtitle.AutoSize = true;
this.lblQuantumISPSubtitle.Font = new System.Drawing.Font("Lucida Console", 14F);
this.lblQuantumISPSubtitle.Location = new System.Drawing.Point(373, 35);
this.lblQuantumISPSubtitle.Name = "lblQuantumISPSubtitle";
this.lblQuantumISPSubtitle.Size = new System.Drawing.Size(350, 19);
this.lblQuantumISPSubtitle.TabIndex = 1;
this.lblQuantumISPSubtitle.Text = "Cheap access to the QuantumNet!";
//
// lblYourPlan
//
this.lblYourPlan.AutoSize = true;
this.lblYourPlan.Font = new System.Drawing.Font("Candara", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblYourPlan.Location = new System.Drawing.Point(27, 89);
this.lblYourPlan.Name = "lblYourPlan";
this.lblYourPlan.Size = new System.Drawing.Size(161, 23);
this.lblYourPlan.TabIndex = 2;
this.lblYourPlan.Text = "YOUR PLAN: Mega";
//
// btnUnsub
//
this.btnUnsub.Location = new System.Drawing.Point(31, 144);
this.btnUnsub.Name = "btnUnsub";
this.btnUnsub.Size = new System.Drawing.Size(75, 23);
this.btnUnsub.TabIndex = 3;
this.btnUnsub.Text = "Unsubscribe";
this.btnUnsub.UseVisualStyleBackColor = true;
//
// QuantumISP
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnUnsub);
this.Controls.Add(this.lblYourPlan);
this.Controls.Add(this.lblQuantumISPSubtitle);
this.Controls.Add(this.lblQuantumISPTitle);
this.Name = "QuantumISP";
this.Size = new System.Drawing.Size(842, 452);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblQuantumISPTitle;
private System.Windows.Forms.Label lblQuantumISPSubtitle;
private System.Windows.Forms.Label lblYourPlan;
private System.Windows.Forms.Button btnUnsub;
}
}
|