ShareX/HelpersLib/Printer/PrintTextForm.Designer.cs
2013-11-03 12:53:49 +02:00

101 lines
4.2 KiB
C#

namespace HelpersLib
{
partial class PrintTextForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#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.btnCancel = new System.Windows.Forms.Button();
this.btnPrint = new System.Windows.Forms.Button();
this.btnShowPreview = new System.Windows.Forms.Button();
this.btnChangeFont = new System.Windows.Forms.Button();
this.lblFont = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(168, 64);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnPrint
//
this.btnPrint.Location = new System.Drawing.Point(8, 64);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(75, 23);
this.btnPrint.TabIndex = 10;
this.btnPrint.Text = "Print...";
this.btnPrint.UseVisualStyleBackColor = true;
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
//
// btnShowPreview
//
this.btnShowPreview.Location = new System.Drawing.Point(88, 64);
this.btnShowPreview.Name = "btnShowPreview";
this.btnShowPreview.Size = new System.Drawing.Size(75, 23);
this.btnShowPreview.TabIndex = 9;
this.btnShowPreview.Text = "Preview...";
this.btnShowPreview.UseVisualStyleBackColor = true;
this.btnShowPreview.Click += new System.EventHandler(this.btnShowPreview_Click);
//
// btnChangeFont
//
this.btnChangeFont.Location = new System.Drawing.Point(8, 32);
this.btnChangeFont.Name = "btnChangeFont";
this.btnChangeFont.Size = new System.Drawing.Size(152, 23);
this.btnChangeFont.TabIndex = 12;
this.btnChangeFont.Text = "Change font...";
this.btnChangeFont.UseVisualStyleBackColor = true;
this.btnChangeFont.Click += new System.EventHandler(this.btnChangeFont_Click);
//
// lblFont
//
this.lblFont.AutoSize = true;
this.lblFont.Location = new System.Drawing.Point(8, 8);
this.lblFont.Name = "lblFont";
this.lblFont.Size = new System.Drawing.Size(31, 13);
this.lblFont.TabIndex = 13;
this.lblFont.Text = "Font:";
//
// PrintTextForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(251, 96);
this.Controls.Add(this.lblFont);
this.Controls.Add(this.btnChangeFont);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnPrint);
this.Controls.Add(this.btnShowPreview);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "PrintTextForm";
this.Text = "Print options";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnPrint;
private System.Windows.Forms.Button btnShowPreview;
private System.Windows.Forms.Button btnChangeFont;
private System.Windows.Forms.Label lblFont;
}
}