V1
This commit is contained in:
206
MainForm.Designer.cs
generated
Normal file
206
MainForm.Designer.cs
generated
Normal file
@@ -0,0 +1,206 @@
|
||||
namespace Marro.VRChatYouTubeWorkaround
|
||||
{
|
||||
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()
|
||||
{
|
||||
txtInputUrl = new TextBox();
|
||||
btnGo = new Button();
|
||||
grpInputUrl = new GroupBox();
|
||||
btnPasteAndGo = new Button();
|
||||
txtLog = new TextBox();
|
||||
grpStatus = new GroupBox();
|
||||
btnCancel = new Button();
|
||||
lblStatus = new Label();
|
||||
prgProgress = new ProgressBar();
|
||||
grpResult = new GroupBox();
|
||||
txtResultUrl = new TextBox();
|
||||
btnCopy = new Button();
|
||||
grpInputUrl.SuspendLayout();
|
||||
grpStatus.SuspendLayout();
|
||||
grpResult.SuspendLayout();
|
||||
SuspendLayout();
|
||||
//
|
||||
// txtInputUrl
|
||||
//
|
||||
txtInputUrl.Location = new Point(6, 51);
|
||||
txtInputUrl.Name = "txtInputUrl";
|
||||
txtInputUrl.Size = new Size(683, 23);
|
||||
txtInputUrl.TabIndex = 2;
|
||||
//
|
||||
// btnGo
|
||||
//
|
||||
btnGo.Location = new Point(695, 51);
|
||||
btnGo.Name = "btnGo";
|
||||
btnGo.Size = new Size(75, 23);
|
||||
btnGo.TabIndex = 3;
|
||||
btnGo.TabStop = false;
|
||||
btnGo.Text = "Go!";
|
||||
btnGo.UseVisualStyleBackColor = true;
|
||||
btnGo.Click += btnGo_Click;
|
||||
//
|
||||
// grpInputUrl
|
||||
//
|
||||
grpInputUrl.Controls.Add(btnPasteAndGo);
|
||||
grpInputUrl.Controls.Add(txtInputUrl);
|
||||
grpInputUrl.Controls.Add(btnGo);
|
||||
grpInputUrl.Location = new Point(12, 12);
|
||||
grpInputUrl.Name = "grpInputUrl";
|
||||
grpInputUrl.Size = new Size(776, 81);
|
||||
grpInputUrl.TabIndex = 4;
|
||||
grpInputUrl.TabStop = false;
|
||||
grpInputUrl.Text = "Input URL";
|
||||
//
|
||||
// btnPasteAndGo
|
||||
//
|
||||
btnPasteAndGo.BackColor = Color.Chartreuse;
|
||||
btnPasteAndGo.ForeColor = SystemColors.ControlText;
|
||||
btnPasteAndGo.Location = new Point(6, 22);
|
||||
btnPasteAndGo.Name = "btnPasteAndGo";
|
||||
btnPasteAndGo.Size = new Size(764, 23);
|
||||
btnPasteAndGo.TabIndex = 1;
|
||||
btnPasteAndGo.Text = "Paste and Go!";
|
||||
btnPasteAndGo.UseVisualStyleBackColor = false;
|
||||
btnPasteAndGo.Click += btnPasteAndGo_Click;
|
||||
//
|
||||
// txtLog
|
||||
//
|
||||
txtLog.Location = new Point(12, 259);
|
||||
txtLog.Multiline = true;
|
||||
txtLog.Name = "txtLog";
|
||||
txtLog.ReadOnly = true;
|
||||
txtLog.ScrollBars = ScrollBars.Both;
|
||||
txtLog.Size = new Size(776, 172);
|
||||
txtLog.TabIndex = 0;
|
||||
txtLog.TabStop = false;
|
||||
txtLog.WordWrap = false;
|
||||
//
|
||||
// grpStatus
|
||||
//
|
||||
grpStatus.Controls.Add(btnCancel);
|
||||
grpStatus.Controls.Add(lblStatus);
|
||||
grpStatus.Controls.Add(prgProgress);
|
||||
grpStatus.Location = new Point(12, 99);
|
||||
grpStatus.Name = "grpStatus";
|
||||
grpStatus.Size = new Size(776, 97);
|
||||
grpStatus.TabIndex = 6;
|
||||
grpStatus.TabStop = false;
|
||||
grpStatus.Text = "Status";
|
||||
//
|
||||
// btnCancel
|
||||
//
|
||||
btnCancel.Enabled = false;
|
||||
btnCancel.Location = new Point(6, 66);
|
||||
btnCancel.Name = "btnCancel";
|
||||
btnCancel.Size = new Size(764, 23);
|
||||
btnCancel.TabIndex = 4;
|
||||
btnCancel.Text = "Cancel";
|
||||
btnCancel.UseVisualStyleBackColor = true;
|
||||
btnCancel.Click += btnCancel_Click;
|
||||
//
|
||||
// lblStatus
|
||||
//
|
||||
lblStatus.AutoSize = true;
|
||||
lblStatus.Location = new Point(6, 19);
|
||||
lblStatus.Name = "lblStatus";
|
||||
lblStatus.Size = new Size(39, 15);
|
||||
lblStatus.TabIndex = 6;
|
||||
lblStatus.Text = "Ready";
|
||||
//
|
||||
// prgProgress
|
||||
//
|
||||
prgProgress.Location = new Point(6, 37);
|
||||
prgProgress.Name = "prgProgress";
|
||||
prgProgress.Size = new Size(764, 23);
|
||||
prgProgress.TabIndex = 0;
|
||||
//
|
||||
// grpResult
|
||||
//
|
||||
grpResult.Controls.Add(txtResultUrl);
|
||||
grpResult.Controls.Add(btnCopy);
|
||||
grpResult.Location = new Point(12, 202);
|
||||
grpResult.Name = "grpResult";
|
||||
grpResult.Size = new Size(776, 51);
|
||||
grpResult.TabIndex = 5;
|
||||
grpResult.TabStop = false;
|
||||
grpResult.Text = "Result";
|
||||
//
|
||||
// txtResultUrl
|
||||
//
|
||||
txtResultUrl.Location = new Point(6, 19);
|
||||
txtResultUrl.Name = "txtResultUrl";
|
||||
txtResultUrl.ReadOnly = true;
|
||||
txtResultUrl.Size = new Size(683, 23);
|
||||
txtResultUrl.TabIndex = 5;
|
||||
//
|
||||
// btnCopy
|
||||
//
|
||||
btnCopy.Location = new Point(695, 19);
|
||||
btnCopy.Name = "btnCopy";
|
||||
btnCopy.Size = new Size(75, 23);
|
||||
btnCopy.TabIndex = 1;
|
||||
btnCopy.Text = "Copy";
|
||||
btnCopy.UseVisualStyleBackColor = true;
|
||||
btnCopy.Click += btnCopy_Click;
|
||||
//
|
||||
// MainForm
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(800, 443);
|
||||
Controls.Add(grpResult);
|
||||
Controls.Add(grpInputUrl);
|
||||
Controls.Add(grpStatus);
|
||||
Controls.Add(txtLog);
|
||||
Name = "MainForm";
|
||||
Text = "VRChat-YouTube-Workaround";
|
||||
grpInputUrl.ResumeLayout(false);
|
||||
grpInputUrl.PerformLayout();
|
||||
grpStatus.ResumeLayout(false);
|
||||
grpStatus.PerformLayout();
|
||||
grpResult.ResumeLayout(false);
|
||||
grpResult.PerformLayout();
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private TextBox txtInputUrl;
|
||||
private Button btnGo;
|
||||
private GroupBox grpInputUrl;
|
||||
private TextBox txtLog;
|
||||
private GroupBox grpStatus;
|
||||
private ProgressBar prgProgress;
|
||||
private GroupBox grpResult;
|
||||
private TextBox txtResultUrl;
|
||||
private Button btnCopy;
|
||||
private Button btnPasteAndGo;
|
||||
private Label lblStatus;
|
||||
private Button btnCancel;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user