-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
115 lines (110 loc) · 3.9 KB
/
MainForm.Designer.cs
File metadata and controls
115 lines (110 loc) · 3.9 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
namespace VRCLogParser
{
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()
{
button1 = new Button();
listBox1 = new ListBox();
button2 = new Button();
textBox1 = new TextBox();
button3 = new Button();
SuspendLayout();
//
// button1
//
button1.Anchor = AnchorStyles.Top | AnchorStyles.Right;
button1.Location = new Point(635, 12);
button1.Name = "button1";
button1.Size = new Size(153, 23);
button1.TabIndex = 0;
button1.Text = "Refresh";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// listBox1
//
listBox1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
listBox1.FormattingEnabled = true;
listBox1.HorizontalScrollbar = true;
listBox1.ItemHeight = 15;
listBox1.Location = new Point(12, 42);
listBox1.Name = "listBox1";
listBox1.Size = new Size(617, 394);
listBox1.TabIndex = 1;
//
// button2
//
button2.Anchor = AnchorStyles.Top | AnchorStyles.Right;
button2.Location = new Point(635, 41);
button2.Name = "button2";
button2.Size = new Size(153, 23);
button2.TabIndex = 2;
button2.Text = "Copy URL";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// textBox1
//
textBox1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBox1.Location = new Point(12, 12);
textBox1.Name = "textBox1";
textBox1.Size = new Size(617, 23);
textBox1.TabIndex = 3;
textBox1.Text = "[Video Playback] Attempting";
//
// button3
//
button3.Anchor = AnchorStyles.Top | AnchorStyles.Right;
button3.Location = new Point(635, 70);
button3.Name = "button3";
button3.Size = new Size(153, 23);
button3.TabIndex = 4;
button3.Text = "Open Explorer";
button3.UseVisualStyleBackColor = true;
button3.Click += button3_Click;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(button3);
Controls.Add(textBox1);
Controls.Add(button2);
Controls.Add(listBox1);
Controls.Add(button1);
Name = "MainForm";
Text = "VRCLogParser";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private ListBox listBox1;
private Button button2;
private TextBox textBox1;
private Button button3;
}
}