ProgressForm.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. namespace FastReport.Forms
  2. {
  3. partial class ProgressForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lblProgress = new System.Windows.Forms.Label();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.panel1.SuspendLayout();
  32. this.SuspendLayout();
  33. //
  34. // lblProgress
  35. //
  36. this.lblProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  37. | System.Windows.Forms.AnchorStyles.Right)));
  38. this.lblProgress.Location = new System.Drawing.Point(13, 20);
  39. this.lblProgress.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  40. this.lblProgress.Name = "lblProgress";
  41. this.lblProgress.Size = new System.Drawing.Size(293, 34);
  42. this.lblProgress.TabIndex = 0;
  43. this.lblProgress.Text = "label1";
  44. this.lblProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  45. //
  46. // btnCancel
  47. //
  48. this.btnCancel.Location = new System.Drawing.Point(121, 74);
  49. this.btnCancel.Margin = new System.Windows.Forms.Padding(4);
  50. this.btnCancel.Name = "btnCancel";
  51. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  52. this.btnCancel.TabIndex = 2;
  53. this.btnCancel.Text = "Cancel";
  54. this.btnCancel.UseVisualStyleBackColor = true;
  55. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  56. //
  57. // panel1
  58. //
  59. this.panel1.Controls.Add(this.btnCancel);
  60. this.panel1.Controls.Add(this.lblProgress);
  61. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  62. this.panel1.Location = new System.Drawing.Point(0, 0);
  63. this.panel1.Name = "panel1";
  64. this.panel1.Size = new System.Drawing.Size(319, 110);
  65. this.panel1.TabIndex = 3;
  66. this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
  67. //
  68. // ProgressForm
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  72. this.BackColor = System.Drawing.SystemColors.Window;
  73. this.ClientSize = new System.Drawing.Size(319, 110);
  74. this.Controls.Add(this.panel1);
  75. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  76. this.Margin = new System.Windows.Forms.Padding(6);
  77. this.Name = "ProgressForm";
  78. this.Text = "ProgressForm";
  79. this.TopMost = true;
  80. this.Shown += new System.EventHandler(this.ProgressForm_Shown);
  81. this.panel1.ResumeLayout(false);
  82. this.ResumeLayout(false);
  83. }
  84. #endregion
  85. private System.Windows.Forms.Label lblProgress;
  86. private System.Windows.Forms.Button btnCancel;
  87. private System.Windows.Forms.Panel panel1;
  88. }
  89. }