OpenPageForm.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace FastReport.Forms
  2. {
  3. partial class OpenPageForm
  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.lbPages = new System.Windows.Forms.ListBox();
  29. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  30. this.picPreview = new System.Windows.Forms.PictureBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  32. this.splitContainer1.Panel1.SuspendLayout();
  33. this.splitContainer1.Panel2.SuspendLayout();
  34. this.splitContainer1.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.picPreview)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // btnOk
  39. //
  40. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  41. this.btnOk.Location = new System.Drawing.Point(530, 489);
  42. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  43. //
  44. // btnCancel
  45. //
  46. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  47. this.btnCancel.Location = new System.Drawing.Point(611, 489);
  48. //
  49. // lbPages
  50. //
  51. this.lbPages.BorderStyle = System.Windows.Forms.BorderStyle.None;
  52. this.lbPages.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.lbPages.FormattingEnabled = true;
  54. this.lbPages.Location = new System.Drawing.Point(0, 0);
  55. this.lbPages.Name = "lbPages";
  56. this.lbPages.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
  57. this.lbPages.Size = new System.Drawing.Size(244, 460);
  58. this.lbPages.TabIndex = 0;
  59. this.lbPages.SelectedIndexChanged += new System.EventHandler(this.lbPages_SelectedIndexChanged);
  60. //
  61. // splitContainer1
  62. //
  63. this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  64. | System.Windows.Forms.AnchorStyles.Left)
  65. | System.Windows.Forms.AnchorStyles.Right)));
  66. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  67. this.splitContainer1.Location = new System.Drawing.Point(12, 12);
  68. this.splitContainer1.Name = "splitContainer1";
  69. //
  70. // splitContainer1.Panel1
  71. //
  72. this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Window;
  73. this.splitContainer1.Panel1.Controls.Add(this.lbPages);
  74. //
  75. // splitContainer1.Panel2
  76. //
  77. this.splitContainer1.Panel2.AutoScroll = true;
  78. this.splitContainer1.Panel2.BackColor = System.Drawing.Color.Red;
  79. this.splitContainer1.Panel2.Controls.Add(this.picPreview);
  80. this.splitContainer1.Size = new System.Drawing.Size(674, 460);
  81. this.splitContainer1.SplitterDistance = 244;
  82. this.splitContainer1.TabIndex = 5;
  83. //
  84. // picPreview
  85. //
  86. this.picPreview.BackColor = System.Drawing.SystemColors.ScrollBar;
  87. this.picPreview.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  88. this.picPreview.Dock = System.Windows.Forms.DockStyle.Fill;
  89. this.picPreview.Location = new System.Drawing.Point(0, 0);
  90. this.picPreview.Margin = new System.Windows.Forms.Padding(0);
  91. this.picPreview.Name = "picPreview";
  92. this.picPreview.Size = new System.Drawing.Size(426, 460);
  93. this.picPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  94. this.picPreview.TabIndex = 0;
  95. this.picPreview.TabStop = false;
  96. //
  97. // OpenPageForm
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  101. this.ClientSize = new System.Drawing.Size(698, 524);
  102. this.Controls.Add(this.splitContainer1);
  103. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  104. this.MaximizeBox = true;
  105. this.MinimizeBox = true;
  106. this.Name = "OpenPageForm";
  107. this.ShowIcon = false;
  108. this.Text = "OpenPageForm";
  109. this.Load += new System.EventHandler(this.OpenPageForm_Load);
  110. this.Controls.SetChildIndex(this.btnOk, 0);
  111. this.Controls.SetChildIndex(this.btnCancel, 0);
  112. this.Controls.SetChildIndex(this.splitContainer1, 0);
  113. this.splitContainer1.Panel1.ResumeLayout(false);
  114. this.splitContainer1.Panel2.ResumeLayout(false);
  115. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  116. this.splitContainer1.ResumeLayout(false);
  117. ((System.ComponentModel.ISupportInitialize)(this.picPreview)).EndInit();
  118. this.ResumeLayout(false);
  119. }
  120. #endregion
  121. private System.Windows.Forms.ListBox lbPages;
  122. private System.Windows.Forms.SplitContainer splitContainer1;
  123. private System.Windows.Forms.PictureBox picPreview;
  124. }
  125. }