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>
86 lines
3.4 KiB
C#
86 lines
3.4 KiB
C#
namespace XenAdmin.Commands
|
|
{
|
|
partial class CommandEditorControl
|
|
{
|
|
/// <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(CommandEditorControl));
|
|
this.listView = new System.Windows.Forms.ListView();
|
|
this.chIcon = new System.Windows.Forms.ColumnHeader();
|
|
this.chText = new System.Windows.Forms.ColumnHeader();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// listView
|
|
//
|
|
this.listView.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.chIcon,
|
|
this.chText});
|
|
resources.ApplyResources(this.listView, "listView");
|
|
this.listView.FullRowSelect = true;
|
|
this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
|
this.listView.Name = "listView";
|
|
this.listView.SmallImageList = this.imageList;
|
|
this.listView.UseCompatibleStateImageBehavior = false;
|
|
this.listView.View = System.Windows.Forms.View.Details;
|
|
this.listView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
|
|
//
|
|
// chIcon
|
|
//
|
|
resources.ApplyResources(this.chIcon, "chIcon");
|
|
//
|
|
// chText
|
|
//
|
|
resources.ApplyResources(this.chText, "chText");
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
|
resources.ApplyResources(this.imageList, "imageList");
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
//
|
|
// CommandEditorControl
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.listView);
|
|
this.Name = "CommandEditorControl";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listView;
|
|
private System.Windows.Forms.ColumnHeader chIcon;
|
|
private System.Windows.Forms.ColumnHeader chText;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
}
|
|
}
|