-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form1.Designer.cs
139 lines (134 loc) · 5.28 KB
/
Form1.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
namespace DiscordWV
{
partial class Discord
{
/// <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()
{
webView21 = new Microsoft.Web.WebView2.WinForms.WebView2();
trackBar1 = new TrackBar();
button1 = new Button();
textBox1 = new TextBox();
pictureBox1 = new PictureBox();
((System.ComponentModel.ISupportInitialize)webView21).BeginInit();
((System.ComponentModel.ISupportInitialize)trackBar1).BeginInit();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// webView21
//
webView21.AllowExternalDrop = true;
webView21.BackColor = Color.Black;
webView21.CreationProperties = null;
webView21.DefaultBackgroundColor = Color.DimGray;
webView21.Dock = DockStyle.Fill;
webView21.ForeColor = SystemColors.ButtonHighlight;
webView21.ImeMode = ImeMode.NoControl;
webView21.Location = new Point(0, 0);
webView21.Name = "webView21";
webView21.Size = new Size(800, 450);
webView21.Source = new Uri("https://discord.com/channels/", UriKind.Absolute);
webView21.TabIndex = 0;
webView21.ZoomFactor = 1D;
webView21.Click += webView21_Click;
//
// trackBar1
//
trackBar1.AccessibleName = "trackBar1";
trackBar1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
trackBar1.BackColor = Color.White;
trackBar1.LargeChange = 10;
trackBar1.Location = new Point(649, 426);
trackBar1.Margin = new Padding(0);
trackBar1.Maximum = 100;
trackBar1.Minimum = 10;
trackBar1.Name = "trackBar1";
trackBar1.RightToLeft = RightToLeft.No;
trackBar1.RightToLeftLayout = true;
trackBar1.Size = new Size(151, 45);
trackBar1.TabIndex = 1;
trackBar1.TickStyle = TickStyle.None;
trackBar1.Value = 80;
trackBar1.Scroll += trackBar1_Scroll;
//
// button1
//
button1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
button1.Location = new Point(147, 426);
button1.Name = "button1";
button1.Size = new Size(30, 23);
button1.TabIndex = 2;
button1.Text = "Go";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// textBox1
//
textBox1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
textBox1.Location = new Point(0, 426);
textBox1.Name = "textBox1";
textBox1.Size = new Size(150, 23);
textBox1.TabIndex = 3;
textBox1.TextChanged += textBox1_TextChanged;
//
// pictureBox1
//
pictureBox1.BackColor = SystemColors.ButtonHighlight;
pictureBox1.Location = new Point(0, 426);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(800, 50);
pictureBox1.TabIndex = 4;
pictureBox1.TabStop = false;
//
// Discord
//
AllowDrop = true;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
AutoSizeMode = AutoSizeMode.GrowAndShrink;
BackgroundImageLayout = ImageLayout.None;
ClientSize = new Size(800, 450);
Controls.Add(textBox1);
Controls.Add(button1);
Controls.Add(trackBar1);
Controls.Add(webView21);
Controls.Add(pictureBox1);
Name = "Discord";
ShowIcon = false;
ShowInTaskbar = false;
SizeGripStyle = SizeGripStyle.Show;
Text = "Transparent Site";
((System.ComponentModel.ISupportInitialize)webView21).EndInit();
((System.ComponentModel.ISupportInitialize)trackBar1).EndInit();
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Microsoft.Web.WebView2.WinForms.WebView2 webView21;
private TrackBar trackBar1;
private Button button1;
private TextBox textBox1;
private PictureBox pictureBox1;
}
}