Multipurpose utility for managing Games for Windows - LIVE installs and content. (Mirrored from https://github.com/InvoxiPlayGames/GfWLUtility)
at master 4.2 kB view raw
1namespace GfWLUtility 2{ 3 partial class DownloadForm 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.progressBar1 = new System.Windows.Forms.ProgressBar(); 32 this.statusLabel = new System.Windows.Forms.Label(); 33 this.currentDownloadURL = new System.Windows.Forms.Label(); 34 this.cancelButton = new System.Windows.Forms.Button(); 35 this.SuspendLayout(); 36 // 37 // progressBar1 38 // 39 this.progressBar1.Location = new System.Drawing.Point(12, 12); 40 this.progressBar1.MarqueeAnimationSpeed = 30; 41 this.progressBar1.Name = "progressBar1"; 42 this.progressBar1.Size = new System.Drawing.Size(460, 23); 43 this.progressBar1.TabIndex = 0; 44 // 45 // statusLabel 46 // 47 this.statusLabel.AutoSize = true; 48 this.statusLabel.Location = new System.Drawing.Point(12, 61); 49 this.statusLabel.Name = "statusLabel"; 50 this.statusLabel.Size = new System.Drawing.Size(107, 13); 51 this.statusLabel.TabIndex = 1; 52 this.statusLabel.Text = "Download progress..."; 53 // 54 // currentDownloadURL 55 // 56 this.currentDownloadURL.AutoSize = true; 57 this.currentDownloadURL.Location = new System.Drawing.Point(12, 38); 58 this.currentDownloadURL.Name = "currentDownloadURL"; 59 this.currentDownloadURL.Size = new System.Drawing.Size(407, 13); 60 this.currentDownloadURL.TabIndex = 2; 61 this.currentDownloadURL.Text = "https://downloadserver.example/downloads/titleupdate/tu00010000_00020000.cab"; 62 // 63 // cancelButton 64 // 65 this.cancelButton.Location = new System.Drawing.Point(397, 56); 66 this.cancelButton.Name = "cancelButton"; 67 this.cancelButton.Size = new System.Drawing.Size(75, 23); 68 this.cancelButton.TabIndex = 3; 69 this.cancelButton.Text = "Cancel"; 70 this.cancelButton.UseVisualStyleBackColor = true; 71 this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); 72 // 73 // DownloadForm 74 // 75 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 76 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 77 this.ClientSize = new System.Drawing.Size(484, 88); 78 this.Controls.Add(this.cancelButton); 79 this.Controls.Add(this.currentDownloadURL); 80 this.Controls.Add(this.statusLabel); 81 this.Controls.Add(this.progressBar1); 82 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 83 this.MaximizeBox = false; 84 this.MinimizeBox = false; 85 this.Name = "DownloadForm"; 86 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 87 this.Text = "Downloading..."; 88 this.ResumeLayout(false); 89 this.PerformLayout(); 90 91 } 92 93 #endregion 94 95 private System.Windows.Forms.ProgressBar progressBar1; 96 private System.Windows.Forms.Label statusLabel; 97 private System.Windows.Forms.Label currentDownloadURL; 98 private System.Windows.Forms.Button cancelButton; 99 } 100}