PreviewForm.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Windows.Forms;
  3. namespace FastReport.Forms
  4. {
  5. partial class PreviewForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.Preview = new FastReport.Preview.PreviewControl();
  31. this.SuspendLayout();
  32. //
  33. // Preview
  34. //
  35. this.Preview.BackColor = System.Drawing.SystemColors.AppWorkspace;
  36. this.Preview.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.Preview.Font = new System.Drawing.Font("Tahoma", 8F);
  38. this.Preview.Location = new System.Drawing.Point(0, 0);
  39. this.Preview.Name = "Preview";
  40. this.Preview.Size = new System.Drawing.Size(418, 316);
  41. this.Preview.TabIndex = 0;
  42. //
  43. // PreviewForm
  44. //
  45. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  46. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  47. this.ClientSize = new System.Drawing.Size(418, 316);
  48. this.Controls.Add(this.Preview);
  49. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  50. this.KeyPreview = true;
  51. this.MaximizeBox = true;
  52. this.MinimizeBox = true;
  53. this.Name = "PreviewForm";
  54. this.ShowInTaskbar = false;
  55. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  56. this.Text = "PreviewForm";
  57. this.Shown += new System.EventHandler(this.PreviewForm_Shown);
  58. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PreviewForm_FormClosing);
  59. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PreviewForm_KeyDown);
  60. this.ResumeLayout(false);
  61. }
  62. #endregion
  63. public FastReport.Preview.PreviewControl Preview;
  64. }
  65. }