xenadmin/XenAdmin/Dialogs/ImportStorageLinkVolumeDialog.Designer.cs
Mihaela Stoica bd36a85bff CP-4816: Initial commit to git repo
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2013-06-24 12:41:48 +01:00

161 lines
7.1 KiB
C#

using XenAdmin.Controls;
namespace XenAdmin.Dialogs
{
partial class ImportStorageLinkVolumeDialog
{
/// <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(ImportStorageLinkVolumeDialog));
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.treeView = new XenAdmin.Controls.VirtualTreeView();
this.listView = new XenAdmin.Controls.ListViewEx();
this.columnHeaderStorageVolume = new System.Windows.Forms.ColumnHeader();
this.columnHeaderCapacity = new System.Windows.Forms.ColumnHeader();
this.label5 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.searchTextBox = new XenAdmin.Controls.SearchTextBox();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
resources.ApplyResources(this.splitContainer1, "splitContainer1");
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.treeView);
resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
this.splitContainer1.Panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel1_Paint);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.listView);
this.splitContainer1.Panel2.Controls.Add(this.label5);
resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
//
// treeView
//
resources.ApplyResources(this.treeView, "treeView");
this.treeView.CheckBoxes = true;
this.treeView.HScrollPos = 0;
this.treeView.Name = "treeView";
//
// listView
//
resources.ApplyResources(this.listView, "listView");
this.listView.CheckBoxes = true;
this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeaderStorageVolume,
this.columnHeaderCapacity});
this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listView.Name = "listView";
this.listView.ShowItemToolTips = true;
this.listView.UseCompatibleStateImageBehavior = false;
this.listView.View = System.Windows.Forms.View.Details;
//
// columnHeaderStorageVolume
//
resources.ApplyResources(this.columnHeaderStorageVolume, "columnHeaderStorageVolume");
//
// columnHeaderCapacity
//
resources.ApplyResources(this.columnHeaderCapacity, "columnHeaderCapacity");
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// searchTextBox
//
resources.ApplyResources(this.searchTextBox, "searchTextBox");
this.searchTextBox.Name = "searchTextBox";
this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
//
// ImportStorageLinkVolumeDialog
//
this.AcceptButton = this.btnOK;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.btnCancel;
this.Controls.Add(this.searchTextBox);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
this.Name = "ImportStorageLinkVolumeDialog";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private XenAdmin.Controls.ListViewEx listView;
private System.Windows.Forms.ColumnHeader columnHeaderStorageVolume;
private System.Windows.Forms.ColumnHeader columnHeaderCapacity;
private VirtualTreeView treeView;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private SearchTextBox searchTextBox;
}
}