mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
105 lines
5.1 KiB
C#
105 lines
5.1 KiB
C#
namespace TweetDck.Updates {
|
|
partial class FormUpdateDownload {
|
|
/// <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() {
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormUpdateDownload));
|
|
this.progressDownload = new System.Windows.Forms.ProgressBar();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.labelDescription = new System.Windows.Forms.Label();
|
|
this.labelStatus = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressDownload
|
|
//
|
|
this.progressDownload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.progressDownload.Location = new System.Drawing.Point(12, 32);
|
|
this.progressDownload.MarqueeAnimationSpeed = 40;
|
|
this.progressDownload.Maximum = 1000;
|
|
this.progressDownload.Name = "progressDownload";
|
|
this.progressDownload.Size = new System.Drawing.Size(361, 23);
|
|
this.progressDownload.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
this.progressDownload.TabIndex = 0;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.AutoSize = true;
|
|
this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
this.btnCancel.Location = new System.Drawing.Point(317, 61);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
|
|
this.btnCancel.Size = new System.Drawing.Size(56, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// labelDescription
|
|
//
|
|
this.labelDescription.AutoSize = true;
|
|
this.labelDescription.Location = new System.Drawing.Point(9, 13);
|
|
this.labelDescription.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
|
|
this.labelDescription.Name = "labelDescription";
|
|
this.labelDescription.Size = new System.Drawing.Size(0, 13);
|
|
this.labelDescription.TabIndex = 2;
|
|
//
|
|
// labelStatus
|
|
//
|
|
this.labelStatus.AutoSize = true;
|
|
this.labelStatus.Location = new System.Drawing.Point(9, 62);
|
|
this.labelStatus.Name = "labelStatus";
|
|
this.labelStatus.Size = new System.Drawing.Size(0, 13);
|
|
this.labelStatus.TabIndex = 3;
|
|
//
|
|
// FormUpdateDownload
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(385, 96);
|
|
this.Controls.Add(this.labelStatus);
|
|
this.Controls.Add(this.labelDescription);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.progressDownload);
|
|
this.DoubleBuffered = true;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "FormUpdateDownload";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormUpdateDownload_FormClosing);
|
|
this.Shown += new System.EventHandler(this.FormUpdateDownload_Shown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ProgressBar progressDownload;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Label labelDescription;
|
|
private System.Windows.Forms.Label labelStatus;
|
|
}
|
|
} |