PIAPS_CW/WinFormsApp/FormPreviewPDF.Designer.cs

101 lines
3.5 KiB
C#

namespace WinFormsApp
{
partial class FormPreviewPDF
{
/// <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()
{
panel1 = new Panel();
buttonCancel = new Button();
buttonPrint = new Button();
pictureBox = new PictureBox();
panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
SuspendLayout();
//
// panel1
//
panel1.Controls.Add(buttonCancel);
panel1.Controls.Add(buttonPrint);
panel1.Dock = DockStyle.Bottom;
panel1.Location = new Point(0, 540);
panel1.Name = "panel1";
panel1.Size = new Size(478, 36);
panel1.TabIndex = 1;
//
// buttonCancel
//
buttonCancel.Dock = DockStyle.Right;
buttonCancel.Location = new Point(262, 0);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(108, 36);
buttonCancel.TabIndex = 1;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonPrint
//
buttonPrint.Dock = DockStyle.Right;
buttonPrint.Location = new Point(370, 0);
buttonPrint.Name = "buttonPrint";
buttonPrint.Size = new Size(108, 36);
buttonPrint.TabIndex = 0;
buttonPrint.Text = "Распечатать";
buttonPrint.UseVisualStyleBackColor = true;
buttonPrint.Click += buttonPrint_Click;
//
// pictureBox
//
pictureBox.Dock = DockStyle.Fill;
pictureBox.Location = new Point(0, 0);
pictureBox.Name = "pictureBox";
pictureBox.Size = new Size(478, 540);
pictureBox.TabIndex = 2;
pictureBox.TabStop = false;
//
// FormPreviewPDF
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(478, 576);
Controls.Add(pictureBox);
Controls.Add(panel1);
Name = "FormPreviewPDF";
Text = "FormPreviewPDF";
Load += FormPreviewPDF_Load;
panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
ResumeLayout(false);
}
#endregion
private Panel panel1;
private Button buttonCancel;
private Button buttonPrint;
private PictureBox pictureBox;
}
}