260 lines
12 KiB
C#
260 lines
12 KiB
C#
namespace Test_ChangeOrder
|
|
{
|
|
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.tabControl = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.dataGridViewTab1 = new System.Windows.Forms.DataGridView();
|
|
this.Nummer = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Titel = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.dataGridViewTab2 = new System.Windows.Forms.DataGridView();
|
|
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.buttonUp = new System.Windows.Forms.Button();
|
|
this.buttonDown = new System.Windows.Forms.Button();
|
|
this.buttonToTab1 = new System.Windows.Forms.Button();
|
|
this.buttonToTab2 = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonReadData = new System.Windows.Forms.Button();
|
|
this.buttonAddTab = new System.Windows.Forms.Button();
|
|
this.buttonRemoveTab = new System.Windows.Forms.Button();
|
|
this.tabControl.SuspendLayout();
|
|
this.tabPage1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTab1)).BeginInit();
|
|
this.tabPage2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTab2)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// tabControl
|
|
//
|
|
this.tabControl.Controls.Add(this.tabPage1);
|
|
this.tabControl.Controls.Add(this.tabPage2);
|
|
this.tabControl.Location = new System.Drawing.Point(12, 41);
|
|
this.tabControl.Name = "tabControl";
|
|
this.tabControl.SelectedIndex = 0;
|
|
this.tabControl.Size = new System.Drawing.Size(695, 368);
|
|
this.tabControl.TabIndex = 0;
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.Controls.Add(this.dataGridViewTab1);
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage1.Size = new System.Drawing.Size(687, 342);
|
|
this.tabPage1.TabIndex = 0;
|
|
this.tabPage1.Text = "Tab 1";
|
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataGridViewTab1
|
|
//
|
|
this.dataGridViewTab1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewTab1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Nummer,
|
|
this.Titel});
|
|
this.dataGridViewTab1.Location = new System.Drawing.Point(6, 6);
|
|
this.dataGridViewTab1.Name = "dataGridViewTab1";
|
|
this.dataGridViewTab1.Size = new System.Drawing.Size(675, 330);
|
|
this.dataGridViewTab1.TabIndex = 0;
|
|
//
|
|
// Nummer
|
|
//
|
|
this.Nummer.HeaderText = "No.";
|
|
this.Nummer.Name = "Nummer";
|
|
this.Nummer.Width = 30;
|
|
//
|
|
// Titel
|
|
//
|
|
this.Titel.HeaderText = "Titel";
|
|
this.Titel.Name = "Titel";
|
|
this.Titel.Width = 580;
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.Controls.Add(this.dataGridViewTab2);
|
|
this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage2.Size = new System.Drawing.Size(687, 342);
|
|
this.tabPage2.TabIndex = 1;
|
|
this.tabPage2.Text = "Tab 2";
|
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataGridViewTab2
|
|
//
|
|
this.dataGridViewTab2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewTab2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.dataGridViewTextBoxColumn1,
|
|
this.dataGridViewTextBoxColumn2});
|
|
this.dataGridViewTab2.Location = new System.Drawing.Point(6, 6);
|
|
this.dataGridViewTab2.Name = "dataGridViewTab2";
|
|
this.dataGridViewTab2.Size = new System.Drawing.Size(675, 330);
|
|
this.dataGridViewTab2.TabIndex = 1;
|
|
//
|
|
// dataGridViewTextBoxColumn1
|
|
//
|
|
this.dataGridViewTextBoxColumn1.HeaderText = "No.";
|
|
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
|
|
this.dataGridViewTextBoxColumn1.Width = 30;
|
|
//
|
|
// dataGridViewTextBoxColumn2
|
|
//
|
|
this.dataGridViewTextBoxColumn2.HeaderText = "Titel";
|
|
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
|
|
this.dataGridViewTextBoxColumn2.Width = 580;
|
|
//
|
|
// buttonUp
|
|
//
|
|
this.buttonUp.Location = new System.Drawing.Point(713, 12);
|
|
this.buttonUp.Name = "buttonUp";
|
|
this.buttonUp.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonUp.TabIndex = 1;
|
|
this.buttonUp.Text = "Nach oben";
|
|
this.buttonUp.UseVisualStyleBackColor = true;
|
|
this.buttonUp.Click += new System.EventHandler(this.buttonUp_Click);
|
|
//
|
|
// buttonDown
|
|
//
|
|
this.buttonDown.Location = new System.Drawing.Point(713, 41);
|
|
this.buttonDown.Name = "buttonDown";
|
|
this.buttonDown.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDown.TabIndex = 2;
|
|
this.buttonDown.Text = "Nach unten";
|
|
this.buttonDown.UseVisualStyleBackColor = true;
|
|
this.buttonDown.Click += new System.EventHandler(this.buttonDown_Click);
|
|
//
|
|
// buttonToTab1
|
|
//
|
|
this.buttonToTab1.Location = new System.Drawing.Point(713, 70);
|
|
this.buttonToTab1.Name = "buttonToTab1";
|
|
this.buttonToTab1.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonToTab1.TabIndex = 3;
|
|
this.buttonToTab1.Text = "Auf Tab 1";
|
|
this.buttonToTab1.UseVisualStyleBackColor = true;
|
|
this.buttonToTab1.Click += new System.EventHandler(this.buttonToTab1_Click);
|
|
//
|
|
// buttonToTab2
|
|
//
|
|
this.buttonToTab2.Location = new System.Drawing.Point(713, 99);
|
|
this.buttonToTab2.Name = "buttonToTab2";
|
|
this.buttonToTab2.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonToTab2.TabIndex = 4;
|
|
this.buttonToTab2.Text = "Auf Tab 2";
|
|
this.buttonToTab2.UseVisualStyleBackColor = true;
|
|
this.buttonToTab2.Click += new System.EventHandler(this.buttonToTab2_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(713, 415);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 6;
|
|
this.buttonCancel.Text = "Abbrechen";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// buttonReadData
|
|
//
|
|
this.buttonReadData.Location = new System.Drawing.Point(12, 12);
|
|
this.buttonReadData.Name = "buttonReadData";
|
|
this.buttonReadData.Size = new System.Drawing.Size(695, 23);
|
|
this.buttonReadData.TabIndex = 7;
|
|
this.buttonReadData.Text = "Daten einlesen";
|
|
this.buttonReadData.UseVisualStyleBackColor = true;
|
|
this.buttonReadData.Click += new System.EventHandler(this.buttonReadData_Click);
|
|
//
|
|
// buttonAddTab
|
|
//
|
|
this.buttonAddTab.Location = new System.Drawing.Point(713, 347);
|
|
this.buttonAddTab.Name = "buttonAddTab";
|
|
this.buttonAddTab.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonAddTab.TabIndex = 9;
|
|
this.buttonAddTab.Text = "Tab dazu";
|
|
this.buttonAddTab.UseVisualStyleBackColor = true;
|
|
this.buttonAddTab.Click += new System.EventHandler(this.buttonAddTab_Click);
|
|
//
|
|
// buttonRemoveTab
|
|
//
|
|
this.buttonRemoveTab.Location = new System.Drawing.Point(713, 376);
|
|
this.buttonRemoveTab.Name = "buttonRemoveTab";
|
|
this.buttonRemoveTab.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonRemoveTab.TabIndex = 10;
|
|
this.buttonRemoveTab.Text = "Tab weg";
|
|
this.buttonRemoveTab.UseVisualStyleBackColor = true;
|
|
this.buttonRemoveTab.Click += new System.EventHandler(this.buttonRemoveTab_Click);
|
|
//
|
|
// 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.buttonRemoveTab);
|
|
this.Controls.Add(this.buttonAddTab);
|
|
this.Controls.Add(this.buttonReadData);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonToTab2);
|
|
this.Controls.Add(this.buttonToTab1);
|
|
this.Controls.Add(this.buttonDown);
|
|
this.Controls.Add(this.buttonUp);
|
|
this.Controls.Add(this.tabControl);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.tabControl.ResumeLayout(false);
|
|
this.tabPage1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTab1)).EndInit();
|
|
this.tabPage2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTab2)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TabControl tabControl;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.Button buttonUp;
|
|
private System.Windows.Forms.Button buttonDown;
|
|
private System.Windows.Forms.Button buttonToTab1;
|
|
private System.Windows.Forms.Button buttonToTab2;
|
|
private System.Windows.Forms.DataGridView dataGridViewTab1;
|
|
private System.Windows.Forms.DataGridView dataGridViewTab2;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button buttonReadData;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Nummer;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Titel;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
|
|
private System.Windows.Forms.Button buttonAddTab;
|
|
private System.Windows.Forms.Button buttonRemoveTab;
|
|
}
|
|
}
|
|
|