Files
ytdlp-gui/Download.Designer.cs

86 lines
3.2 KiB
C#
Raw Normal View History

2025-05-20 02:11:57 +02:00
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.lblStatus = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// lblStatus
//
this.lblStatus.AutoSize = true;
this.lblStatus.Location = new System.Drawing.Point(13, 13);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(139, 25);
this.lblStatus.TabIndex = 0;
this.lblStatus.Text = "Connecting...";
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Abort;
this.btnCancel.Location = new System.Drawing.Point(625, 41);
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);
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(18, 41);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(601, 40);
this.progressBar.TabIndex = 8;
//
// Download
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(747, 102);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.lblStatus);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "Download";
this.Text = "Download";
this.Load += new System.EventHandler(this.Download_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ProgressBar progressBar;
}
}