1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace CommonFroms.G2D
- {
- partial class G2DProgressDialog
- {
- /// <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()
- {
- this.components = new System.ComponentModel.Container();
- this.progressBar1 = new System.Windows.Forms.ProgressBar();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.btnClose = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // progressBar1
- //
- this.progressBar1.Location = new System.Drawing.Point(12, 12);
- this.progressBar1.Name = "progressBar1";
- this.progressBar1.Size = new System.Drawing.Size(454, 23);
- this.progressBar1.TabIndex = 0;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(12, 41);
- this.textBox1.Name = "textBox1";
- this.textBox1.ReadOnly = true;
- this.textBox1.Size = new System.Drawing.Size(454, 21);
- this.textBox1.TabIndex = 1;
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // btnClose
- //
- this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClose.Location = new System.Drawing.Point(392, 65);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(74, 25);
- this.btnClose.TabIndex = 2;
- this.btnClose.Text = "Close";
- this.btnClose.UseVisualStyleBackColor = true;
- this.btnClose.Visible = false;
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // G2DProgressDialog
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(478, 102);
- this.ControlBox = false;
- this.Controls.Add(this.btnClose);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.progressBar1);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "G2DProgressDialog";
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "G2DProgressDialog";
- this.TopMost = true;
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.G2DProgressDialog_FormClosing);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ProgressBar progressBar1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.Button btnClose;
- }
- }
|