mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 23:10:16 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
152 lines
7.0 KiB
C#
152 lines
7.0 KiB
C#
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class NewTagDialog
|
|
{
|
|
/// <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()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewTagDialog));
|
|
this.NewTagLabel = new System.Windows.Forms.Label();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.addButton = new System.Windows.Forms.Button();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
this.tagsListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader = new System.Windows.Forms.ColumnHeader();
|
|
this.stateImageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.renameButton = new System.Windows.Forms.Button();
|
|
this.deleteButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// NewTagLabel
|
|
//
|
|
resources.ApplyResources(this.NewTagLabel, "NewTagLabel");
|
|
this.NewTagLabel.Name = "NewTagLabel";
|
|
//
|
|
// textBox1
|
|
//
|
|
resources.ApplyResources(this.textBox1, "textBox1");
|
|
this.textBox1.MinimumSize = new System.Drawing.Size(168, 23);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
|
|
//
|
|
// addButton
|
|
//
|
|
resources.ApplyResources(this.addButton, "addButton");
|
|
this.addButton.Name = "addButton";
|
|
this.addButton.UseVisualStyleBackColor = true;
|
|
this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
resources.ApplyResources(this.cancelButton, "cancelButton");
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.CancelButton_Click);
|
|
//
|
|
// okButton
|
|
//
|
|
resources.ApplyResources(this.okButton, "okButton");
|
|
this.okButton.Name = "okButton";
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
this.okButton.Click += new System.EventHandler(this.saveButton_Click);
|
|
//
|
|
// tagsListView
|
|
//
|
|
this.tagsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader});
|
|
resources.ApplyResources(this.tagsListView, "tagsListView");
|
|
this.tagsListView.Name = "tagsListView";
|
|
this.tagsListView.StateImageList = this.stateImageList;
|
|
this.tagsListView.UseCompatibleStateImageBehavior = false;
|
|
this.tagsListView.View = System.Windows.Forms.View.Details;
|
|
this.tagsListView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tagsListView_MouseClick);
|
|
this.tagsListView.SelectedIndexChanged += new System.EventHandler(this.tagsListView_SelectedIndexChanged);
|
|
this.tagsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tagsListView_KeyDown);
|
|
//
|
|
// columnHeader
|
|
//
|
|
resources.ApplyResources(this.columnHeader, "columnHeader");
|
|
//
|
|
// stateImageList
|
|
//
|
|
this.stateImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
|
resources.ApplyResources(this.stateImageList, "stateImageList");
|
|
this.stateImageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
//
|
|
// renameButton
|
|
//
|
|
resources.ApplyResources(this.renameButton, "renameButton");
|
|
this.renameButton.Name = "renameButton";
|
|
this.renameButton.UseVisualStyleBackColor = true;
|
|
this.renameButton.Click += new System.EventHandler(this.renameButton_Click);
|
|
//
|
|
// deleteButton
|
|
//
|
|
resources.ApplyResources(this.deleteButton, "deleteButton");
|
|
this.deleteButton.Name = "deleteButton";
|
|
this.deleteButton.UseVisualStyleBackColor = true;
|
|
this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
|
|
//
|
|
// NewTagDialog
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.cancelButton;
|
|
this.Controls.Add(this.tagsListView);
|
|
this.Controls.Add(this.deleteButton);
|
|
this.Controls.Add(this.renameButton);
|
|
this.Controls.Add(this.okButton);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.addButton);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.NewTagLabel);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "NewTagDialog";
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.Activated += new System.EventHandler(this.NewTagDialog_Activated);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label NewTagLabel;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Button addButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.Button okButton;
|
|
private System.Windows.Forms.ListView tagsListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader;
|
|
private System.Windows.Forms.Button renameButton;
|
|
private System.Windows.Forms.Button deleteButton;
|
|
private System.Windows.Forms.ImageList stateImageList;
|
|
}
|
|
}
|