SavingPageOptions.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class SavingPageOptions
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.cbAutoSave = new System.Windows.Forms.CheckBox();
  30. this.nudMinutes = new System.Windows.Forms.NumericUpDown();
  31. this.tc1.SuspendLayout();
  32. this.tab1.SuspendLayout();
  33. ((System.ComponentModel.ISupportInitialize)(this.nudMinutes)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // tab1
  37. //
  38. this.tab1.Controls.Add(this.nudMinutes);
  39. this.tab1.Controls.Add(this.cbAutoSave);
  40. //
  41. // cbAutoSave
  42. //
  43. this.cbAutoSave.AutoSize = true;
  44. this.cbAutoSave.Location = new System.Drawing.Point(16, 16);
  45. this.cbAutoSave.Name = "cbAutoSave";
  46. this.cbAutoSave.Size = new System.Drawing.Size(188, 17);
  47. this.cbAutoSave.TabIndex = 5;
  48. this.cbAutoSave.Text = "Enable auto save every (minutes)";
  49. this.cbAutoSave.UseVisualStyleBackColor = true;
  50. //
  51. // nudMinutes
  52. //
  53. this.nudMinutes.Location = new System.Drawing.Point(210, 14);
  54. this.nudMinutes.Minimum = new decimal(new int[] {
  55. 1,
  56. 0,
  57. 0,
  58. 0});
  59. this.nudMinutes.Name = "nudMinutes";
  60. this.nudMinutes.Size = new System.Drawing.Size(43, 21);
  61. this.nudMinutes.TabIndex = 6;
  62. this.nudMinutes.Value = new decimal(new int[] {
  63. 1,
  64. 0,
  65. 0,
  66. 0});
  67. //
  68. // SavingPageOptions
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  72. this.ClientSize = new System.Drawing.Size(405, 331);
  73. this.Name = "SavingPageOptions";
  74. this.tc1.ResumeLayout(false);
  75. this.tab1.ResumeLayout(false);
  76. this.tab1.PerformLayout();
  77. ((System.ComponentModel.ISupportInitialize)(this.nudMinutes)).EndInit();
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.NumericUpDown nudMinutes;
  83. private System.Windows.Forms.CheckBox cbAutoSave;
  84. }
  85. }