124 lines
4.1 KiB
C#
124 lines
4.1 KiB
C#
namespace MergePDFs
|
|
{
|
|
partial class frmMergePDFs
|
|
{
|
|
/// <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.tbFolder = new System.Windows.Forms.TextBox();
|
|
this.btnFolder = new System.Windows.Forms.Button();
|
|
this.btnMerge = new System.Windows.Forms.Button();
|
|
this.fbd = new System.Windows.Forms.FolderBrowserDialog();
|
|
this.sfd = new System.Windows.Forms.SaveFileDialog();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.tsslStatus = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tbFolder
|
|
//
|
|
this.tbFolder.Location = new System.Drawing.Point(140, 15);
|
|
this.tbFolder.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.tbFolder.Name = "tbFolder";
|
|
this.tbFolder.Size = new System.Drawing.Size(729, 22);
|
|
this.tbFolder.TabIndex = 0;
|
|
this.tbFolder.Text = "c:\\TEMP";
|
|
//
|
|
// btnFolder
|
|
//
|
|
this.btnFolder.Location = new System.Drawing.Point(16, 12);
|
|
this.btnFolder.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnFolder.Name = "btnFolder";
|
|
this.btnFolder.Size = new System.Drawing.Size(100, 28);
|
|
this.btnFolder.TabIndex = 1;
|
|
this.btnFolder.Text = "Folder";
|
|
this.btnFolder.UseVisualStyleBackColor = true;
|
|
this.btnFolder.Click += new System.EventHandler(this.btnFolder_Click);
|
|
//
|
|
// btnMerge
|
|
//
|
|
this.btnMerge.Location = new System.Drawing.Point(377, 50);
|
|
this.btnMerge.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.btnMerge.Name = "btnMerge";
|
|
this.btnMerge.Size = new System.Drawing.Size(116, 28);
|
|
this.btnMerge.TabIndex = 2;
|
|
this.btnMerge.Text = "Merge";
|
|
this.btnMerge.UseVisualStyleBackColor = true;
|
|
this.btnMerge.Click += new System.EventHandler(this.btnMerge_Click);
|
|
//
|
|
// sfd
|
|
//
|
|
this.sfd.FileName = "merge.pdf";
|
|
this.sfd.Filter = "pdf Files|*.pdf";
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.tsslStatus});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 89);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(887, 25);
|
|
this.statusStrip1.TabIndex = 3;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// tsslStatus
|
|
//
|
|
this.tsslStatus.Name = "tsslStatus";
|
|
this.tsslStatus.Size = new System.Drawing.Size(50, 20);
|
|
this.tsslStatus.Text = "Ready";
|
|
//
|
|
// frmMergePDFs
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(887, 114);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.btnMerge);
|
|
this.Controls.Add(this.btnFolder);
|
|
this.Controls.Add(this.tbFolder);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.Name = "frmMergePDFs";
|
|
this.Text = "MergePDFs";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tbFolder;
|
|
private System.Windows.Forms.Button btnFolder;
|
|
private System.Windows.Forms.Button btnMerge;
|
|
private System.Windows.Forms.FolderBrowserDialog fbd;
|
|
private System.Windows.Forms.SaveFileDialog sfd;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel tsslStatus;
|
|
}
|
|
}
|
|
|