-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.Designer.cs
More file actions
69 lines (65 loc) · 2.86 KB
/
Form2.Designer.cs
File metadata and controls
69 lines (65 loc) · 2.86 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
using System.Drawing;
using System.Windows.Forms;
namespace GTU_Tables_Windows
{
partial class Form2
{
private System.ComponentModel.IContainer components = null;
private WebBrowser webBrowser;
private Panel loadingPanel;
private ProgressBar loadingIndicator;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
this.webBrowser = new System.Windows.Forms.WebBrowser();
this.loadingPanel = new System.Windows.Forms.Panel();
this.loadingIndicator = new System.Windows.Forms.ProgressBar();
this.loadingPanel.SuspendLayout();
this.SuspendLayout();
//
// webBrowser
//
this.webBrowser.Location = new System.Drawing.Point(0, 0);
this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
this.webBrowser.Name = "webBrowser";
this.webBrowser.Size = new System.Drawing.Size(800, 450);
this.webBrowser.TabIndex = 0;
//
// loadingPanel
//
this.loadingPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.loadingPanel.Controls.Add(this.loadingIndicator);
this.loadingPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.loadingPanel.Location = new System.Drawing.Point(0, 0);
this.loadingPanel.Name = "loadingPanel";
this.loadingPanel.Size = new System.Drawing.Size(800, 450);
this.loadingPanel.TabIndex = 1;
this.loadingPanel.Visible = false;
//
// loadingIndicator
//
this.loadingIndicator.Location = new System.Drawing.Point(0, 0);
this.loadingIndicator.MarqueeAnimationSpeed = 30;
this.loadingIndicator.Name = "loadingIndicator";
this.loadingIndicator.Size = new System.Drawing.Size(200, 30);
this.loadingIndicator.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
this.loadingIndicator.TabIndex = 0;
//
// Form2
//
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.webBrowser);
this.Controls.Add(this.loadingPanel);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form2";
this.loadingPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
}
}