namespace Test_ReadFileLineByLine
{
partial class Form1
{
///
/// Erforderliche Designervariable.
///
private System.ComponentModel.IContainer components = null;
///
/// Verwendete Ressourcen bereinigen.
///
/// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
///
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.labelVorlage = new System.Windows.Forms.Label();
this.labelRead = new System.Windows.Forms.Label();
this.buttonReadFile = new System.Windows.Forms.Button();
this.groupBoxProgramInfo = new System.Windows.Forms.GroupBox();
this.labelProgramInfo = new System.Windows.Forms.Label();
this.groupBoxDLLInfo = new System.Windows.Forms.GroupBox();
this.labelDLLInfo = new System.Windows.Forms.Label();
this.groupBoxProgramInfo.SuspendLayout();
this.groupBoxDLLInfo.SuspendLayout();
this.SuspendLayout();
//
// labelVorlage
//
this.labelVorlage.AutoSize = true;
this.labelVorlage.Location = new System.Drawing.Point(13, 13);
this.labelVorlage.Name = "labelVorlage";
this.labelVorlage.Size = new System.Drawing.Size(368, 143);
this.labelVorlage.TabIndex = 0;
this.labelVorlage.Text = resources.GetString("labelVorlage.Text");
//
// labelRead
//
this.labelRead.AutoSize = true;
this.labelRead.Location = new System.Drawing.Point(388, 13);
this.labelRead.Name = "labelRead";
this.labelRead.Size = new System.Drawing.Size(144, 13);
this.labelRead.TabIndex = 1;
this.labelRead.Text = "So wird die Datei eingelesen:";
//
// buttonReadFile
//
this.buttonReadFile.Location = new System.Drawing.Point(12, 343);
this.buttonReadFile.Name = "buttonReadFile";
this.buttonReadFile.Size = new System.Drawing.Size(776, 23);
this.buttonReadFile.TabIndex = 2;
this.buttonReadFile.Text = "Datei Zeilenweise einlesen";
this.buttonReadFile.UseVisualStyleBackColor = true;
this.buttonReadFile.Click += new System.EventHandler(this.buttonReadFile_Click);
//
// groupBoxProgramInfo
//
this.groupBoxProgramInfo.Controls.Add(this.labelProgramInfo);
this.groupBoxProgramInfo.Location = new System.Drawing.Point(12, 372);
this.groupBoxProgramInfo.Name = "groupBoxProgramInfo";
this.groupBoxProgramInfo.Size = new System.Drawing.Size(385, 66);
this.groupBoxProgramInfo.TabIndex = 3;
this.groupBoxProgramInfo.TabStop = false;
this.groupBoxProgramInfo.Text = "Programm Information";
//
// labelProgramInfo
//
this.labelProgramInfo.AutoSize = true;
this.labelProgramInfo.Location = new System.Drawing.Point(7, 20);
this.labelProgramInfo.Name = "labelProgramInfo";
this.labelProgramInfo.Size = new System.Drawing.Size(16, 13);
this.labelProgramInfo.TabIndex = 0;
this.labelProgramInfo.Text = "...";
//
// groupBoxDLLInfo
//
this.groupBoxDLLInfo.Controls.Add(this.labelDLLInfo);
this.groupBoxDLLInfo.Location = new System.Drawing.Point(403, 372);
this.groupBoxDLLInfo.Name = "groupBoxDLLInfo";
this.groupBoxDLLInfo.Size = new System.Drawing.Size(385, 66);
this.groupBoxDLLInfo.TabIndex = 4;
this.groupBoxDLLInfo.TabStop = false;
this.groupBoxDLLInfo.Text = "DLL Information";
//
// labelDLLInfo
//
this.labelDLLInfo.AutoSize = true;
this.labelDLLInfo.Location = new System.Drawing.Point(7, 20);
this.labelDLLInfo.Name = "labelDLLInfo";
this.labelDLLInfo.Size = new System.Drawing.Size(16, 13);
this.labelDLLInfo.TabIndex = 0;
this.labelDLLInfo.Text = "...";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.groupBoxDLLInfo);
this.Controls.Add(this.groupBoxProgramInfo);
this.Controls.Add(this.buttonReadFile);
this.Controls.Add(this.labelRead);
this.Controls.Add(this.labelVorlage);
this.Name = "Form1";
this.Text = "Form1";
this.groupBoxProgramInfo.ResumeLayout(false);
this.groupBoxProgramInfo.PerformLayout();
this.groupBoxDLLInfo.ResumeLayout(false);
this.groupBoxDLLInfo.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelVorlage;
private System.Windows.Forms.Label labelRead;
private System.Windows.Forms.Button buttonReadFile;
private System.Windows.Forms.GroupBox groupBoxProgramInfo;
private System.Windows.Forms.GroupBox groupBoxDLLInfo;
private System.Windows.Forms.Label labelProgramInfo;
private System.Windows.Forms.Label labelDLLInfo;
}
}