ProgressForm.Designer.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.SuspendLayout();
  31. //
  32. // lblProgress
  33. //
  34. this.lblProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  35. | System.Windows.Forms.AnchorStyles.Right)));
  36. this.lblProgress.Location = new System.Drawing.Point(12, 30);
  37. this.lblProgress.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  38. this.lblProgress.Name = "lblProgress";
  39. this.lblProgress.Size = new System.Drawing.Size(378, 34);
  40. this.lblProgress.TabIndex = 0;
  41. this.lblProgress.Text = "label1";
  42. this.lblProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  43. //
  44. // btnCancel
  45. //
  46. this.btnCancel.Location = new System.Drawing.Point(144, 84);
  47. this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  48. this.btnCancel.Name = "btnCancel";
  49. this.btnCancel.Size = new System.Drawing.Size(112, 34);
  50. this.btnCancel.TabIndex = 2;
  51. this.btnCancel.Text = "Cancel";
  52. this.btnCancel.UseVisualStyleBackColor = true;
  53. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  54. //
  55. // ProgressForm
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  59. this.BackColor = System.Drawing.SystemColors.Window;
  60. this.ClientSize = new System.Drawing.Size(402, 136);
  61. this.Controls.Add(this.btnCancel);
  62. this.Controls.Add(this.lblProgress);
  63. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  64. this.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
  65. this.Name = "ProgressForm";
  66. this.Text = "ProgressForm";
  67. this.TopMost = true;
  68. this.Shown += new System.EventHandler(this.ProgressForm_Shown);
  69. this.Paint += new System.Windows.Forms.PaintEventHandler(this.ProgressForm_Paint);
  70. this.ResumeLayout(false);
  71. }
  72. #endregion
  73. private System.Windows.Forms.Label lblProgress;
  74. private System.Windows.Forms.Button btnCancel;
  75. }
  76. }