namespace Test_MultilanguageUserControl
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.groupBoxLanguage = new System.Windows.Forms.GroupBox();
this.radioButtonEnglish = new System.Windows.Forms.RadioButton();
this.radioButtonGerman = new System.Windows.Forms.RadioButton();
this.userControl11 = new MyControl.UserControl1();
this.groupBoxLanguage.SuspendLayout();
this.SuspendLayout();
//
// groupBoxLanguage
//
this.groupBoxLanguage.Controls.Add(this.radioButtonEnglish);
this.groupBoxLanguage.Controls.Add(this.radioButtonGerman);
resources.ApplyResources(this.groupBoxLanguage, "groupBoxLanguage");
this.groupBoxLanguage.Name = "groupBoxLanguage";
this.groupBoxLanguage.TabStop = false;
//
// radioButtonEnglish
//
resources.ApplyResources(this.radioButtonEnglish, "radioButtonEnglish");
this.radioButtonEnglish.Name = "radioButtonEnglish";
this.radioButtonEnglish.UseVisualStyleBackColor = true;
this.radioButtonEnglish.CheckedChanged += new System.EventHandler(this.radioButtonEnglish_CheckedChanged);
//
// radioButtonGerman
//
resources.ApplyResources(this.radioButtonGerman, "radioButtonGerman");
this.radioButtonGerman.Checked = true;
this.radioButtonGerman.Name = "radioButtonGerman";
this.radioButtonGerman.TabStop = true;
this.radioButtonGerman.UseVisualStyleBackColor = true;
this.radioButtonGerman.CheckedChanged += new System.EventHandler(this.radioButtonGerman_CheckedChanged);
//
// userControl11
//
resources.ApplyResources(this.userControl11, "userControl11");
this.userControl11.Name = "userControl11";
//
// Form1
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.userControl11);
this.Controls.Add(this.groupBoxLanguage);
this.Name = "Form1";
this.groupBoxLanguage.ResumeLayout(false);
this.groupBoxLanguage.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBoxLanguage;
private System.Windows.Forms.RadioButton radioButtonEnglish;
private System.Windows.Forms.RadioButton radioButtonGerman;
private MyControl.UserControl1 userControl11;
}
}