xenadmin/XenAdmin/Dialogs/NewCustomFieldDialog.Designer.cs

116 lines
4.7 KiB
C#
Raw Normal View History

namespace XenAdmin.Dialogs
{
partial class NewCustomFieldDialog
{
/// <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 Windows Form 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(NewCustomFieldDialog));
this.btnCancel = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.NameTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.TypeComboBox = new System.Windows.Forms.ComboBox();
this.DuplicateWarning = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// okButton
//
resources.ApplyResources(this.okButton, "okButton");
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Name = "okButton";
this.okButton.UseVisualStyleBackColor = true;
//
// NameTextBox
//
resources.ApplyResources(this.NameTextBox, "NameTextBox");
this.NameTextBox.Name = "NameTextBox";
this.NameTextBox.TextChanged += new System.EventHandler(this.NameTextBox_TextChanged);
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// TypeComboBox
//
resources.ApplyResources(this.TypeComboBox, "TypeComboBox");
this.TypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.TypeComboBox.FormattingEnabled = true;
this.TypeComboBox.Items.AddRange(new object[] {
resources.GetString("TypeComboBox.Items"),
resources.GetString("TypeComboBox.Items1")});
this.TypeComboBox.Name = "TypeComboBox";
//
// DuplicateWarning
//
resources.ApplyResources(this.DuplicateWarning, "DuplicateWarning");
this.DuplicateWarning.ForeColor = System.Drawing.Color.Red;
this.DuplicateWarning.Name = "DuplicateWarning";
//
// NewCustomFieldDialog
//
this.AcceptButton = this.okButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.btnCancel;
this.Controls.Add(this.DuplicateWarning);
this.Controls.Add(this.TypeComboBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.NameTextBox);
this.Controls.Add(this.okButton);
this.Name = "NewCustomFieldDialog";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.TextBox NameTextBox;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox TypeComboBox;
private System.Windows.Forms.Label DuplicateWarning;
}
}