Initial replacement of old repository.

This commit is contained in:
Simon Martens
2021-09-15 13:31:10 +02:00
commit 3125edf027
222 changed files with 582725 additions and 0 deletions

123
DocAcrobat/Form1.Designer.cs generated Normal file
View File

@@ -0,0 +1,123 @@
namespace DocAcrobat
{
partial class Form1
{
/// <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.PathBox = new System.Windows.Forms.TextBox();
this.ConvertButton = new System.Windows.Forms.Button();
this.OpenButton = new System.Windows.Forms.Button();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// PathBox
//
this.PathBox.Enabled = false;
this.PathBox.Location = new System.Drawing.Point(12, 12);
this.PathBox.Name = "PathBox";
this.PathBox.Size = new System.Drawing.Size(988, 26);
this.PathBox.TabIndex = 0;
//
// ConvertButton
//
this.ConvertButton.Location = new System.Drawing.Point(1134, 9);
this.ConvertButton.Name = "ConvertButton";
this.ConvertButton.Size = new System.Drawing.Size(139, 32);
this.ConvertButton.TabIndex = 2;
this.ConvertButton.Text = "Konvertieren";
this.ConvertButton.UseVisualStyleBackColor = true;
this.ConvertButton.Click += new System.EventHandler(this.ConvertButton_Click);
//
// OpenButton
//
this.OpenButton.Location = new System.Drawing.Point(1027, 9);
this.OpenButton.Name = "OpenButton";
this.OpenButton.Size = new System.Drawing.Size(101, 32);
this.OpenButton.TabIndex = 3;
this.OpenButton.Text = "Öffnen";
this.OpenButton.UseVisualStyleBackColor = true;
this.OpenButton.Click += new System.EventHandler(this.OpenButton_Click);
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.StatusLabel});
this.statusStrip1.Location = new System.Drawing.Point(0, 74);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1285, 32);
this.statusStrip1.SizingGrip = false;
this.statusStrip1.TabIndex = 5;
this.statusStrip1.Text = "statusStrip1";
//
// StatusLabel
//
this.StatusLabel.Name = "StatusLabel";
this.StatusLabel.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
this.StatusLabel.Size = new System.Drawing.Size(530, 25);
this.StatusLabel.Text = "Bereit. Dateien mit gleichem Namen werden mglw. überschrieben.";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1285, 106);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.OpenButton);
this.Controls.Add(this.ConvertButton);
this.Controls.Add(this.PathBox);
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(1307, 162);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(1307, 162);
this.Name = "Form1";
this.ShowIcon = false;
this.Text = "DocAcrobat";
this.Load += new System.EventHandler(this.Form1_Load);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox PathBox;
private System.Windows.Forms.Button ConvertButton;
private System.Windows.Forms.Button OpenButton;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.ComponentModel.BackgroundWorker backgroundWorker;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel StatusLabel;
}
}