-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMainForm.Designer.cs
158 lines (156 loc) · 6.38 KB
/
MainForm.Designer.cs
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
* Created by SharpDevelop.
* User: ET
* Date: 01/12/2012
* Time: 11:57
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace AltNetDNSIntercept
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpAboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alternateNetWebSiteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.buttonStart = new System.Windows.Forms.Button();
this.buttonExit = new System.Windows.Forms.Button();
this.textBoxStatus = new System.Windows.Forms.TextBox();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(514, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItemClick);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.helpAboutToolStripMenuItem,
this.alternateNetWebSiteToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "Help";
//
// helpAboutToolStripMenuItem
//
this.helpAboutToolStripMenuItem.Name = "helpAboutToolStripMenuItem";
this.helpAboutToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.helpAboutToolStripMenuItem.Text = "Help about ...";
this.helpAboutToolStripMenuItem.Click += new System.EventHandler(this.HelpAboutToolStripMenuItemClick);
//
// alternateNetWebSiteToolStripMenuItem
//
this.alternateNetWebSiteToolStripMenuItem.Name = "alternateNetWebSiteToolStripMenuItem";
this.alternateNetWebSiteToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.alternateNetWebSiteToolStripMenuItem.Text = "Alternate Net web site";
this.alternateNetWebSiteToolStripMenuItem.Click += new System.EventHandler(this.AlternateNetWebSiteToolStripMenuItemClick);
//
// buttonStart
//
this.buttonStart.Location = new System.Drawing.Point(12, 27);
this.buttonStart.Name = "buttonStart";
this.buttonStart.Size = new System.Drawing.Size(75, 23);
this.buttonStart.TabIndex = 1;
this.buttonStart.Text = "Start";
this.buttonStart.UseVisualStyleBackColor = true;
this.buttonStart.Click += new System.EventHandler(this.ButtonStartClick);
//
// buttonExit
//
this.buttonExit.Location = new System.Drawing.Point(423, 27);
this.buttonExit.Name = "buttonExit";
this.buttonExit.Size = new System.Drawing.Size(75, 23);
this.buttonExit.TabIndex = 2;
this.buttonExit.Text = "Exit";
this.buttonExit.UseVisualStyleBackColor = true;
this.buttonExit.Click += new System.EventHandler(this.ButtonExitClick);
//
// textBoxStatus
//
this.textBoxStatus.Location = new System.Drawing.Point(12, 56);
this.textBoxStatus.Multiline = true;
this.textBoxStatus.Name = "textBoxStatus";
this.textBoxStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxStatus.Size = new System.Drawing.Size(486, 281);
this.textBoxStatus.TabIndex = 3;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(514, 349);
this.Controls.Add(this.textBoxStatus);
this.Controls.Add(this.buttonExit);
this.Controls.Add(this.buttonStart);
this.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = ".altnet DNS Lookup Intercept";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.TextBox textBoxStatus;
private System.Windows.Forms.Button buttonExit;
private System.Windows.Forms.Button buttonStart;
private System.Windows.Forms.ToolStripMenuItem alternateNetWebSiteToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpAboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.MenuStrip menuStrip1;
}
}