mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
113 lines
5.1 KiB
C#
113 lines
5.1 KiB
C#
namespace XenAdmin.Wizards.NewSRWizard_Pages
|
|
{
|
|
partial class NewSrWizardNamePage
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewSrWizardNamePage));
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.labelwizard = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.textBoxDescription = new System.Windows.Forms.TextBox();
|
|
this.labelDescription = new System.Windows.Forms.Label();
|
|
this.checkBoxAutoDescription = new System.Windows.Forms.CheckBox();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.labelwizard, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.textBoxName, 1, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.textBoxDescription, 1, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelDescription, 0, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.checkBoxAutoDescription, 1, 3);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// labelwizard
|
|
//
|
|
resources.ApplyResources(this.labelwizard, "labelwizard");
|
|
this.tableLayoutPanel1.SetColumnSpan(this.labelwizard, 2);
|
|
this.labelwizard.Name = "labelwizard";
|
|
//
|
|
// label2
|
|
//
|
|
resources.ApplyResources(this.label2, "label2");
|
|
this.label2.Name = "label2";
|
|
//
|
|
// textBoxName
|
|
//
|
|
resources.ApplyResources(this.textBoxName, "textBoxName");
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.TextChanged += new System.EventHandler(this.textBoxName_TextChanged);
|
|
//
|
|
// textBoxDescription
|
|
//
|
|
resources.ApplyResources(this.textBoxDescription, "textBoxDescription");
|
|
this.textBoxDescription.Name = "textBoxDescription";
|
|
//
|
|
// labelDescription
|
|
//
|
|
resources.ApplyResources(this.labelDescription, "labelDescription");
|
|
this.labelDescription.Name = "labelDescription";
|
|
//
|
|
// checkBoxAutoDescription
|
|
//
|
|
resources.ApplyResources(this.checkBoxAutoDescription, "checkBoxAutoDescription");
|
|
this.checkBoxAutoDescription.Checked = true;
|
|
this.checkBoxAutoDescription.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.tableLayoutPanel1.SetColumnSpan(this.checkBoxAutoDescription, 2);
|
|
this.checkBoxAutoDescription.Name = "checkBoxAutoDescription";
|
|
this.checkBoxAutoDescription.UseVisualStyleBackColor = true;
|
|
this.checkBoxAutoDescription.CheckedChanged += new System.EventHandler(this.checkBoxAutoDescription_CheckedChanged);
|
|
//
|
|
// NewSrWizardNamePage
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "NewSrWizardNamePage";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label labelwizard;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox textBoxName;
|
|
private System.Windows.Forms.Label labelDescription;
|
|
private System.Windows.Forms.TextBox textBoxDescription;
|
|
private System.Windows.Forms.CheckBox checkBoxAutoDescription;
|
|
}
|
|
}
|