namespace ReadFromExcel1 { 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() { this.buttonReadExcel = new System.Windows.Forms.Button(); this.labelValues = new System.Windows.Forms.Label(); this.SuspendLayout(); // // buttonReadExcel // this.buttonReadExcel.Location = new System.Drawing.Point(12, 134); this.buttonReadExcel.Name = "buttonReadExcel"; this.buttonReadExcel.Size = new System.Drawing.Size(518, 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 - EPPlus Library"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button buttonReadExcel; private System.Windows.Forms.Label labelValues; } }