namespace ytdlp_gui { partial class Download { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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; } }