97 lines
3.8 KiB
C#
97 lines
3.8 KiB
C#
namespace Test_Mehrsprachigkeit
|
|
{
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.buttonMessage = new System.Windows.Forms.Button();
|
|
this.labelText = new System.Windows.Forms.Label();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonGerman = new System.Windows.Forms.Button();
|
|
this.buttonEnglish = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonMessage
|
|
//
|
|
resources.ApplyResources(this.buttonMessage, "buttonMessage");
|
|
this.buttonMessage.Name = "buttonMessage";
|
|
this.buttonMessage.UseVisualStyleBackColor = true;
|
|
this.buttonMessage.Click += new System.EventHandler(this.buttonMessage_Click);
|
|
//
|
|
// labelText
|
|
//
|
|
resources.ApplyResources(this.labelText, "labelText");
|
|
this.labelText.Name = "labelText";
|
|
//
|
|
// buttonCancel
|
|
//
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// buttonGerman
|
|
//
|
|
resources.ApplyResources(this.buttonGerman, "buttonGerman");
|
|
this.buttonGerman.Name = "buttonGerman";
|
|
this.buttonGerman.UseVisualStyleBackColor = true;
|
|
this.buttonGerman.Click += new System.EventHandler(this.buttonGerman_Click);
|
|
//
|
|
// buttonEnglish
|
|
//
|
|
resources.ApplyResources(this.buttonEnglish, "buttonEnglish");
|
|
this.buttonEnglish.Name = "buttonEnglish";
|
|
this.buttonEnglish.UseVisualStyleBackColor = true;
|
|
this.buttonEnglish.Click += new System.EventHandler(this.buttonEnglish_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonEnglish);
|
|
this.Controls.Add(this.buttonGerman);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.labelText);
|
|
this.Controls.Add(this.buttonMessage);
|
|
this.Name = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonMessage;
|
|
private System.Windows.Forms.Label labelText;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button buttonGerman;
|
|
private System.Windows.Forms.Button buttonEnglish;
|
|
}
|
|
}
|
|
|