93 lines
4.2 KiB
C#
93 lines
4.2 KiB
C#
namespace CSV20.Excel
|
|
{
|
|
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.buttonSpeichern = new System.Windows.Forms.Button();
|
|
this.dataGridViewExcel = new System.Windows.Forms.DataGridView();
|
|
this.openFileDialogExcel = new System.Windows.Forms.OpenFileDialog();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewExcel)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSpeichern
|
|
//
|
|
this.buttonSpeichern.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.buttonSpeichern.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.buttonSpeichern.Location = new System.Drawing.Point(0, 428);
|
|
this.buttonSpeichern.Name = "buttonSpeichern";
|
|
this.buttonSpeichern.Size = new System.Drawing.Size(782, 25);
|
|
this.buttonSpeichern.TabIndex = 0;
|
|
this.buttonSpeichern.Text = "Änderungen speichern";
|
|
this.buttonSpeichern.UseVisualStyleBackColor = true;
|
|
this.buttonSpeichern.Click += new System.EventHandler(this.buttonSpeichern_Click);
|
|
//
|
|
// dataGridViewExcel
|
|
//
|
|
this.dataGridViewExcel.AllowUserToAddRows = false;
|
|
this.dataGridViewExcel.AllowUserToDeleteRows = false;
|
|
this.dataGridViewExcel.AllowUserToResizeRows = false;
|
|
this.dataGridViewExcel.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewExcel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dataGridViewExcel.Location = new System.Drawing.Point(0, 0);
|
|
this.dataGridViewExcel.Name = "dataGridViewExcel";
|
|
this.dataGridViewExcel.RowTemplate.Height = 24;
|
|
this.dataGridViewExcel.Size = new System.Drawing.Size(782, 428);
|
|
this.dataGridViewExcel.TabIndex = 1;
|
|
//
|
|
// openFileDialogExcel
|
|
//
|
|
this.openFileDialogExcel.DefaultExt = "xlsx";
|
|
this.openFileDialogExcel.Filter = "Excel 2003 (*.xls)|*.xls|Excel 2007 (*.xlsx)|*.xlsx";
|
|
this.openFileDialogExcel.FilterIndex = 2;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(782, 453);
|
|
this.Controls.Add(this.dataGridViewExcel);
|
|
this.Controls.Add(this.buttonSpeichern);
|
|
this.Name = "Form1";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Excel Datenblatt";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewExcel)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonSpeichern;
|
|
private System.Windows.Forms.DataGridView dataGridViewExcel;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialogExcel;
|
|
}
|
|
}
|
|
|