123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- namespace FastReport.Forms
- {
- partial class OpenPageForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.lbPages = new System.Windows.Forms.ListBox();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.picPreview = new System.Windows.Forms.PictureBox();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.picPreview)).BeginInit();
- this.SuspendLayout();
- //
- // btnOk
- //
- this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnOk.Location = new System.Drawing.Point(530, 489);
- this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.Location = new System.Drawing.Point(611, 489);
- //
- // lbPages
- //
- this.lbPages.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.lbPages.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lbPages.FormattingEnabled = true;
- this.lbPages.Location = new System.Drawing.Point(0, 0);
- this.lbPages.Name = "lbPages";
- this.lbPages.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
- this.lbPages.Size = new System.Drawing.Size(244, 460);
- this.lbPages.TabIndex = 0;
- this.lbPages.SelectedIndexChanged += new System.EventHandler(this.lbPages_SelectedIndexChanged);
- //
- // splitContainer1
- //
- this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
- this.splitContainer1.Location = new System.Drawing.Point(12, 12);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Window;
- this.splitContainer1.Panel1.Controls.Add(this.lbPages);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.AutoScroll = true;
- this.splitContainer1.Panel2.BackColor = System.Drawing.Color.Red;
- this.splitContainer1.Panel2.Controls.Add(this.picPreview);
- this.splitContainer1.Size = new System.Drawing.Size(674, 460);
- this.splitContainer1.SplitterDistance = 244;
- this.splitContainer1.TabIndex = 5;
- //
- // picPreview
- //
- this.picPreview.BackColor = System.Drawing.SystemColors.ScrollBar;
- this.picPreview.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.picPreview.Dock = System.Windows.Forms.DockStyle.Fill;
- this.picPreview.Location = new System.Drawing.Point(0, 0);
- this.picPreview.Margin = new System.Windows.Forms.Padding(0);
- this.picPreview.Name = "picPreview";
- this.picPreview.Size = new System.Drawing.Size(426, 460);
- this.picPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
- this.picPreview.TabIndex = 0;
- this.picPreview.TabStop = false;
- //
- // OpenPageForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(698, 524);
- this.Controls.Add(this.splitContainer1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
- this.MaximizeBox = true;
- this.MinimizeBox = true;
- this.Name = "OpenPageForm";
- this.ShowIcon = false;
- this.Text = "OpenPageForm";
- this.Load += new System.EventHandler(this.OpenPageForm_Load);
- this.Controls.SetChildIndex(this.btnOk, 0);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.splitContainer1, 0);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.picPreview)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ListBox lbPages;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.PictureBox picPreview;
- }
- }
|