namespace PdfiumViewer.Demo
{
partial class ExportBitmapsForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this._dpiXTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this._dpiYTextBox = new System.Windows.Forms.TextBox();
this._acceptButton = new System.Windows.Forms.Button();
this._cancelButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(78, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Horizontal DPI:";
//
// _dpiXTextBox
//
this._dpiXTextBox.Location = new System.Drawing.Point(106, 12);
this._dpiXTextBox.Name = "_dpiXTextBox";
this._dpiXTextBox.Size = new System.Drawing.Size(240, 20);
this._dpiXTextBox.TabIndex = 1;
this._dpiXTextBox.Text = "96";
this._dpiXTextBox.TextChanged += new System.EventHandler(this._dpiX_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 41);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(66, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Vertical DPI:";
//
// _dpiYTextBox
//
this._dpiYTextBox.Location = new System.Drawing.Point(106, 38);
this._dpiYTextBox.Name = "_dpiYTextBox";
this._dpiYTextBox.Size = new System.Drawing.Size(240, 20);
this._dpiYTextBox.TabIndex = 3;
this._dpiYTextBox.Text = "96";
this._dpiYTextBox.TextChanged += new System.EventHandler(this._dpiY_TextChanged);
//
// _acceptButton
//
this._acceptButton.Location = new System.Drawing.Point(190, 64);
this._acceptButton.Name = "_acceptButton";
this._acceptButton.Size = new System.Drawing.Size(75, 23);
this._acceptButton.TabIndex = 4;
this._acceptButton.Text = "OK";
this._acceptButton.UseVisualStyleBackColor = true;
this._acceptButton.Click += new System.EventHandler(this._acceptButton_Click);
//
// _cancelButton
//
this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this._cancelButton.Location = new System.Drawing.Point(271, 64);
this._cancelButton.Name = "_cancelButton";
this._cancelButton.Size = new System.Drawing.Size(75, 23);
this._cancelButton.TabIndex = 5;
this._cancelButton.Text = "Cancel";
this._cancelButton.UseVisualStyleBackColor = true;
//
// ExportBitmapsForm
//
this.AcceptButton = this._acceptButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this._cancelButton;
this.ClientSize = new System.Drawing.Size(358, 99);
this.Controls.Add(this._cancelButton);
this.Controls.Add(this._acceptButton);
this.Controls.Add(this._dpiYTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this._dpiXTextBox);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExportBitmapsForm";
this.ShowInTaskbar = false;
this.Text = "Export bitmaps";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox _dpiXTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox _dpiYTextBox;
private System.Windows.Forms.Button _acceptButton;
private System.Windows.Forms.Button _cancelButton;
}
}