LoadAutoSaveForm.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. namespace FastReport.Forms
  2. {
  3. partial class LoadAutoSaveForm
  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.btnCancel = new System.Windows.Forms.Button();
  29. this.btnRestore = new System.Windows.Forms.Button();
  30. this.lblMessage = new System.Windows.Forms.Label();
  31. this.picture = new System.Windows.Forms.PictureBox();
  32. ((System.ComponentModel.ISupportInitialize)(this.picture)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // btnCancel
  36. //
  37. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  38. this.btnCancel.Location = new System.Drawing.Point(546, 148);
  39. this.btnCancel.Name = "btnCancel";
  40. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  41. this.btnCancel.TabIndex = 0;
  42. this.btnCancel.Text = "Cancel";
  43. this.btnCancel.UseVisualStyleBackColor = true;
  44. //
  45. // btnRestore
  46. //
  47. this.btnRestore.DialogResult = System.Windows.Forms.DialogResult.OK;
  48. this.btnRestore.Location = new System.Drawing.Point(423, 148);
  49. this.btnRestore.Name = "btnRestore";
  50. this.btnRestore.Size = new System.Drawing.Size(117, 23);
  51. this.btnRestore.TabIndex = 1;
  52. this.btnRestore.Text = "Restore";
  53. this.btnRestore.UseVisualStyleBackColor = true;
  54. //
  55. // lblMessage
  56. //
  57. this.lblMessage.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  58. this.lblMessage.Location = new System.Drawing.Point(167, 9);
  59. this.lblMessage.Name = "lblMessage";
  60. this.lblMessage.Size = new System.Drawing.Size(454, 136);
  61. this.lblMessage.TabIndex = 2;
  62. this.lblMessage.Text = "Do you want to restore file?";
  63. this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  64. //
  65. // picture
  66. //
  67. this.picture.Location = new System.Drawing.Point(33, 17);
  68. this.picture.Name = "picture";
  69. this.picture.Size = new System.Drawing.Size(128, 128);
  70. this.picture.TabIndex = 3;
  71. this.picture.TabStop = false;
  72. //
  73. // LoadAutoSaveForm
  74. //
  75. this.AcceptButton = this.btnRestore;
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  78. this.CancelButton = this.btnCancel;
  79. this.ClientSize = new System.Drawing.Size(633, 183);
  80. this.Controls.Add(this.picture);
  81. this.Controls.Add(this.lblMessage);
  82. this.Controls.Add(this.btnRestore);
  83. this.Controls.Add(this.btnCancel);
  84. this.Name = "LoadAutoSaveForm";
  85. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  86. this.Text = "LoadAutoSaveForm";
  87. ((System.ComponentModel.ISupportInitialize)(this.picture)).EndInit();
  88. this.ResumeLayout(false);
  89. }
  90. #endregion
  91. private System.Windows.Forms.Button btnCancel;
  92. private System.Windows.Forms.Button btnRestore;
  93. private System.Windows.Forms.Label lblMessage;
  94. private System.Windows.Forms.PictureBox picture;
  95. }
  96. }