| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- namespace BulkPrinting
- {
- partial class ProgressDialog
- {
- /// <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(ProgressDialog));
- this.pbrProgress = new System.Windows.Forms.ProgressBar();
- this.lblProgressText = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // pbrProgress
- //
- this.pbrProgress.Location = new System.Drawing.Point(12, 79);
- this.pbrProgress.Name = "pbrProgress";
- this.pbrProgress.Size = new System.Drawing.Size(260, 23);
- this.pbrProgress.TabIndex = 0;
- //
- // lblProgressText
- //
- this.lblProgressText.BackColor = System.Drawing.Color.Transparent;
- this.lblProgressText.ForeColor = System.Drawing.Color.White;
- this.lblProgressText.Location = new System.Drawing.Point(12, 13);
- this.lblProgressText.Name = "lblProgressText";
- this.lblProgressText.Size = new System.Drawing.Size(260, 63);
- this.lblProgressText.TabIndex = 1;
- this.lblProgressText.Text = "label1";
- this.lblProgressText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // ProgressDialog
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(7)))), ((int)(((byte)(63)))), ((int)(((byte)(145)))));
- this.ClientSize = new System.Drawing.Size(284, 116);
- this.ControlBox = false;
- this.Controls.Add(this.lblProgressText);
- this.Controls.Add(this.pbrProgress);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "ProgressDialog";
- this.Text = "Please Wait";
- this.Load += new System.EventHandler(this.ProgressDialog_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ProgressBar pbrProgress;
- private System.Windows.Forms.Label lblProgressText;
- }
- }
|