1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- namespace FastReport.Forms
- {
- partial class ProgressForm
- {
- /// <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.lblProgress = new System.Windows.Forms.Label();
- this.btnCancel = new System.Windows.Forms.Button();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // lblProgress
- //
- this.lblProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.lblProgress.Location = new System.Drawing.Point(13, 20);
- this.lblProgress.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblProgress.Name = "lblProgress";
- this.lblProgress.Size = new System.Drawing.Size(293, 34);
- this.lblProgress.TabIndex = 0;
- this.lblProgress.Text = "label1";
- this.lblProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // btnCancel
- //
- this.btnCancel.Location = new System.Drawing.Point(121, 74);
- this.btnCancel.Margin = new System.Windows.Forms.Padding(4);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 2;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.btnCancel);
- this.panel1.Controls.Add(this.lblProgress);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(319, 110);
- this.panel1.TabIndex = 3;
- this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
- //
- // ProgressForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.BackColor = System.Drawing.SystemColors.Window;
- this.ClientSize = new System.Drawing.Size(319, 110);
- this.Controls.Add(this.panel1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Margin = new System.Windows.Forms.Padding(6);
- this.Name = "ProgressForm";
- this.Text = "ProgressForm";
- this.TopMost = true;
- this.Shown += new System.EventHandler(this.ProgressForm_Shown);
- this.panel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label lblProgress;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Panel panel1;
- }
- }
|