-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
139 lines (132 loc) · 6.78 KB
/
MainForm.Designer.cs
File metadata and controls
139 lines (132 loc) · 6.78 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
namespace EmbeddedBrowser
{
partial class MainForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.ButtonGithub = new System.Windows.Forms.ToolStripButton();
this.ButtonGoogle = new System.Windows.Forms.ToolStripButton();
this.ButtonLinkedIn = new System.Windows.Forms.ToolStripButton();
this.ButtonFacebook = new System.Windows.Forms.ToolStripButton();
this.geckoWebBrowser = new Gecko.GeckoWebBrowser();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ButtonGoogle,
this.ButtonFacebook,
this.ButtonLinkedIn,
this.ButtonGithub});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(845, 39);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// ButtonGithub
//
this.ButtonGithub.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.ButtonGithub.Image = ((System.Drawing.Image)(resources.GetObject("ButtonGithub.Image")));
this.ButtonGithub.ImageTransparentColor = System.Drawing.Color.Magenta;
this.ButtonGithub.Name = "ButtonGithub";
this.ButtonGithub.Size = new System.Drawing.Size(36, 36);
this.ButtonGithub.Text = "toolStripButton1";
this.ButtonGithub.ToolTipText = "Github";
this.ButtonGithub.Click += new System.EventHandler(this.ButtonGithub_Click);
//
// ButtonGoogle
//
this.ButtonGoogle.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.ButtonGoogle.Image = ((System.Drawing.Image)(resources.GetObject("ButtonGoogle.Image")));
this.ButtonGoogle.ImageTransparentColor = System.Drawing.Color.Magenta;
this.ButtonGoogle.Name = "ButtonGoogle";
this.ButtonGoogle.Size = new System.Drawing.Size(36, 36);
this.ButtonGoogle.Text = "toolStripButton2";
this.ButtonGoogle.ToolTipText = "Google";
this.ButtonGoogle.Click += new System.EventHandler(this.ButtonGoogle_Click);
//
// ButtonLinkedIn
//
this.ButtonLinkedIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.ButtonLinkedIn.Image = ((System.Drawing.Image)(resources.GetObject("ButtonLinkedIn.Image")));
this.ButtonLinkedIn.ImageTransparentColor = System.Drawing.Color.Magenta;
this.ButtonLinkedIn.Name = "ButtonLinkedIn";
this.ButtonLinkedIn.Size = new System.Drawing.Size(36, 36);
this.ButtonLinkedIn.Text = "toolStripButton3";
this.ButtonLinkedIn.ToolTipText = "LinkedIn";
this.ButtonLinkedIn.Click += new System.EventHandler(this.ButtonLinkedIn_Click);
//
// ButtonFacebook
//
this.ButtonFacebook.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.ButtonFacebook.Image = ((System.Drawing.Image)(resources.GetObject("ButtonFacebook.Image")));
this.ButtonFacebook.ImageTransparentColor = System.Drawing.Color.Magenta;
this.ButtonFacebook.Name = "ButtonFacebook";
this.ButtonFacebook.Size = new System.Drawing.Size(36, 36);
this.ButtonFacebook.Text = "toolStripButton4";
this.ButtonFacebook.ToolTipText = "Facebook";
this.ButtonFacebook.Click += new System.EventHandler(this.ButtonFacebook_Click);
//
// geckoWebBrowser
//
this.geckoWebBrowser.ConsoleMessageEventReceivesConsoleLogCalls = true;
this.geckoWebBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
this.geckoWebBrowser.FrameEventsPropagateToMainWindow = false;
this.geckoWebBrowser.Location = new System.Drawing.Point(0, 39);
this.geckoWebBrowser.Name = "geckoWebBrowser";
this.geckoWebBrowser.Size = new System.Drawing.Size(845, 538);
this.geckoWebBrowser.TabIndex = 1;
this.geckoWebBrowser.UseHttpActivityObserver = false;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(845, 577);
this.Controls.Add(this.geckoWebBrowser);
this.Controls.Add(this.toolStrip1);
this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "MainForm";
this.Text = "Embedded Firefox Browser";
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton ButtonGoogle;
private System.Windows.Forms.ToolStripButton ButtonFacebook;
private System.Windows.Forms.ToolStripButton ButtonLinkedIn;
private System.Windows.Forms.ToolStripButton ButtonGithub;
private Gecko.GeckoWebBrowser geckoWebBrowser;
}
}