| [1389] | 1 | namespace Eraser |
|---|
| 2 | { |
|---|
| 3 | partial class BlackBoxUploadForm |
|---|
| 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 | { |
|---|
| [1656] | 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BlackBoxUploadForm)); |
|---|
| 32 | this.ButtonsBevel = new Trustbridge.Windows.Controls.BevelLine(); |
|---|
| 33 | this.ButtonsPnl = new System.Windows.Forms.Panel(); |
|---|
| 34 | this.CancelBtn = new System.Windows.Forms.Button(); |
|---|
| 35 | this.TitleLbl = new System.Windows.Forms.Label(); |
|---|
| 36 | this.ProgressPb = new System.Windows.Forms.ProgressBar(); |
|---|
| 37 | this.UploadWorker = new System.ComponentModel.BackgroundWorker(); |
|---|
| 38 | this.ProgressLbl = new System.Windows.Forms.Label(); |
|---|
| 39 | this.ButtonsPnl.SuspendLayout(); |
|---|
| 40 | this.SuspendLayout(); |
|---|
| 41 | // |
|---|
| 42 | // ButtonsBevel |
|---|
| 43 | // |
|---|
| 44 | this.ButtonsBevel.AccessibleDescription = null; |
|---|
| 45 | this.ButtonsBevel.AccessibleName = null; |
|---|
| 46 | resources.ApplyResources(this.ButtonsBevel, "ButtonsBevel"); |
|---|
| 47 | this.ButtonsBevel.Angle = 90; |
|---|
| 48 | this.ButtonsBevel.BackgroundImage = null; |
|---|
| 49 | this.ButtonsBevel.Font = null; |
|---|
| 50 | this.ButtonsBevel.Name = "ButtonsBevel"; |
|---|
| 51 | // |
|---|
| 52 | // ButtonsPnl |
|---|
| 53 | // |
|---|
| 54 | this.ButtonsPnl.AccessibleDescription = null; |
|---|
| 55 | this.ButtonsPnl.AccessibleName = null; |
|---|
| 56 | resources.ApplyResources(this.ButtonsPnl, "ButtonsPnl"); |
|---|
| 57 | this.ButtonsPnl.BackColor = System.Drawing.SystemColors.Control; |
|---|
| 58 | this.ButtonsPnl.BackgroundImage = null; |
|---|
| 59 | this.ButtonsPnl.Controls.Add(this.ButtonsBevel); |
|---|
| 60 | this.ButtonsPnl.Controls.Add(this.CancelBtn); |
|---|
| 61 | this.ButtonsPnl.Font = null; |
|---|
| 62 | this.ButtonsPnl.Name = "ButtonsPnl"; |
|---|
| 63 | // |
|---|
| 64 | // CancelBtn |
|---|
| 65 | // |
|---|
| 66 | this.CancelBtn.AccessibleDescription = null; |
|---|
| 67 | this.CancelBtn.AccessibleName = null; |
|---|
| 68 | resources.ApplyResources(this.CancelBtn, "CancelBtn"); |
|---|
| 69 | this.CancelBtn.BackgroundImage = null; |
|---|
| 70 | this.CancelBtn.Font = null; |
|---|
| 71 | this.CancelBtn.Name = "CancelBtn"; |
|---|
| 72 | this.CancelBtn.UseVisualStyleBackColor = true; |
|---|
| 73 | this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click); |
|---|
| 74 | // |
|---|
| 75 | // TitleLbl |
|---|
| 76 | // |
|---|
| 77 | this.TitleLbl.AccessibleDescription = null; |
|---|
| 78 | this.TitleLbl.AccessibleName = null; |
|---|
| 79 | resources.ApplyResources(this.TitleLbl, "TitleLbl"); |
|---|
| 80 | this.TitleLbl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(153))))); |
|---|
| 81 | this.TitleLbl.Name = "TitleLbl"; |
|---|
| 82 | // |
|---|
| 83 | // ProgressPb |
|---|
| 84 | // |
|---|
| 85 | this.ProgressPb.AccessibleDescription = null; |
|---|
| 86 | this.ProgressPb.AccessibleName = null; |
|---|
| 87 | resources.ApplyResources(this.ProgressPb, "ProgressPb"); |
|---|
| 88 | this.ProgressPb.BackgroundImage = null; |
|---|
| 89 | this.ProgressPb.Font = null; |
|---|
| 90 | this.ProgressPb.Name = "ProgressPb"; |
|---|
| 91 | // |
|---|
| 92 | // UploadWorker |
|---|
| 93 | // |
|---|
| 94 | this.UploadWorker.WorkerReportsProgress = true; |
|---|
| 95 | this.UploadWorker.WorkerSupportsCancellation = true; |
|---|
| 96 | this.UploadWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.UploadWorker_DoWork); |
|---|
| 97 | this.UploadWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.UploadWorker_RunWorkerCompleted); |
|---|
| 98 | this.UploadWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.UploadWorker_ProgressChanged); |
|---|
| 99 | // |
|---|
| 100 | // ProgressLbl |
|---|
| 101 | // |
|---|
| 102 | this.ProgressLbl.AccessibleDescription = null; |
|---|
| 103 | this.ProgressLbl.AccessibleName = null; |
|---|
| 104 | resources.ApplyResources(this.ProgressLbl, "ProgressLbl"); |
|---|
| 105 | this.ProgressLbl.Font = null; |
|---|
| 106 | this.ProgressLbl.Name = "ProgressLbl"; |
|---|
| 107 | // |
|---|
| 108 | // BlackBoxUploadForm |
|---|
| 109 | // |
|---|
| 110 | this.AccessibleDescription = null; |
|---|
| 111 | this.AccessibleName = null; |
|---|
| 112 | resources.ApplyResources(this, "$this"); |
|---|
| 113 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; |
|---|
| 114 | this.BackColor = System.Drawing.SystemColors.Window; |
|---|
| 115 | this.BackgroundImage = null; |
|---|
| 116 | this.Controls.Add(this.ProgressLbl); |
|---|
| 117 | this.Controls.Add(this.ProgressPb); |
|---|
| 118 | this.Controls.Add(this.TitleLbl); |
|---|
| 119 | this.Controls.Add(this.ButtonsPnl); |
|---|
| 120 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
|---|
| 121 | this.MaximizeBox = false; |
|---|
| 122 | this.Name = "BlackBoxUploadForm"; |
|---|
| 123 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BlackBoxUploadForm_FormClosing); |
|---|
| 124 | this.ButtonsPnl.ResumeLayout(false); |
|---|
| 125 | this.ResumeLayout(false); |
|---|
| 126 | this.PerformLayout(); |
|---|
| [1389] | 127 | |
|---|
| 128 | } |
|---|
| 129 | |
|---|
| 130 | #endregion |
|---|
| 131 | |
|---|
| 132 | private Trustbridge.Windows.Controls.BevelLine ButtonsBevel; |
|---|
| 133 | private System.Windows.Forms.Panel ButtonsPnl; |
|---|
| 134 | private System.Windows.Forms.Button CancelBtn; |
|---|
| 135 | private System.Windows.Forms.Label TitleLbl; |
|---|
| [1392] | 136 | private System.Windows.Forms.ProgressBar ProgressPb; |
|---|
| 137 | private System.ComponentModel.BackgroundWorker UploadWorker; |
|---|
| 138 | private System.Windows.Forms.Label ProgressLbl; |
|---|
| [1389] | 139 | } |
|---|
| 140 | } |
|---|