75 lines
2.7 KiB
C#
75 lines
2.7 KiB
C#
namespace ReadFromExcel
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Erforderliche Designervariable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Verwendete Ressourcen bereinigen.
|
|
/// </summary>
|
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Vom Windows Form-Designer generierter Code
|
|
|
|
/// <summary>
|
|
/// Erforderliche Methode für die Designerunterstützung.
|
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.buttonReadExcel = new System.Windows.Forms.Button();
|
|
this.labelValues = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonReadExcel
|
|
//
|
|
this.buttonReadExcel.Location = new System.Drawing.Point(13, 134);
|
|
this.buttonReadExcel.Name = "buttonReadExcel";
|
|
this.buttonReadExcel.Size = new System.Drawing.Size(517, 23);
|
|
this.buttonReadExcel.TabIndex = 0;
|
|
this.buttonReadExcel.Text = "Excel auslesen";
|
|
this.buttonReadExcel.UseVisualStyleBackColor = true;
|
|
this.buttonReadExcel.Click += new System.EventHandler(this.buttonReadExcel_Click);
|
|
//
|
|
// labelValues
|
|
//
|
|
this.labelValues.AutoSize = true;
|
|
this.labelValues.Location = new System.Drawing.Point(13, 13);
|
|
this.labelValues.Name = "labelValues";
|
|
this.labelValues.Size = new System.Drawing.Size(16, 13);
|
|
this.labelValues.TabIndex = 1;
|
|
this.labelValues.Text = "...";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(542, 169);
|
|
this.Controls.Add(this.labelValues);
|
|
this.Controls.Add(this.buttonReadExcel);
|
|
this.Name = "Form1";
|
|
this.Text = "Read from Excel - wie NX";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonReadExcel;
|
|
private System.Windows.Forms.Label labelValues;
|
|
}
|
|
}
|
|
|