108 lines
4.4 KiB
C#
108 lines
4.4 KiB
C#
namespace ytdlp_gui
|
|
{
|
|
partial class Download
|
|
{
|
|
/// <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()
|
|
{
|
|
this.lblDownload = new System.Windows.Forms.Label();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.pbDownload = new System.Windows.Forms.ProgressBar();
|
|
this.pbConvertion = new System.Windows.Forms.ProgressBar();
|
|
this.lblConvertion = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblDownload
|
|
//
|
|
this.lblDownload.AutoSize = true;
|
|
this.lblDownload.Location = new System.Drawing.Point(13, 13);
|
|
this.lblDownload.Name = "lblDownload";
|
|
this.lblDownload.Size = new System.Drawing.Size(139, 25);
|
|
this.lblDownload.TabIndex = 0;
|
|
this.lblDownload.Text = "Connecting...";
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Abort;
|
|
this.btnCancel.Location = new System.Drawing.Point(899, 127);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(110, 40);
|
|
this.btnCancel.TabIndex = 7;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// pbDownload
|
|
//
|
|
this.pbDownload.Location = new System.Drawing.Point(18, 41);
|
|
this.pbDownload.Name = "pbDownload";
|
|
this.pbDownload.Size = new System.Drawing.Size(875, 40);
|
|
this.pbDownload.TabIndex = 8;
|
|
//
|
|
// pbConvertion
|
|
//
|
|
this.pbConvertion.Location = new System.Drawing.Point(18, 127);
|
|
this.pbConvertion.Name = "pbConvertion";
|
|
this.pbConvertion.Size = new System.Drawing.Size(875, 40);
|
|
this.pbConvertion.TabIndex = 10;
|
|
//
|
|
// lblConvertion
|
|
//
|
|
this.lblConvertion.AutoSize = true;
|
|
this.lblConvertion.Location = new System.Drawing.Point(13, 99);
|
|
this.lblConvertion.Name = "lblConvertion";
|
|
this.lblConvertion.Size = new System.Drawing.Size(0, 25);
|
|
this.lblConvertion.TabIndex = 9;
|
|
//
|
|
// Download
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1021, 183);
|
|
this.Controls.Add(this.pbConvertion);
|
|
this.Controls.Add(this.lblConvertion);
|
|
this.Controls.Add(this.pbDownload);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.lblDownload);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "Download";
|
|
this.Text = "Downloading";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Download_FormClosing);
|
|
this.Load += new System.EventHandler(this.Download_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblDownload;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.ProgressBar pbDownload;
|
|
private System.Windows.Forms.ProgressBar pbConvertion;
|
|
private System.Windows.Forms.Label lblConvertion;
|
|
}
|
|
} |