mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
105 lines
4.7 KiB
C#
105 lines
4.7 KiB
C#
namespace XenAdmin.Controls
|
|
{
|
|
partial class LunPerVdiPicker
|
|
{
|
|
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.dataGridView = new XenAdmin.Controls.DataGridViewEx.DataGridViewEx();
|
|
this.VdiColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.LunColumn = new XenAdmin.Controls.EnableableComboBoxColumn();
|
|
this.SrColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.ColumnCount = 1;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.Controls.Add(this.dataGridView, 0, 0);
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 1;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(546, 234);
|
|
this.tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
|
|
this.dataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.VdiColumn,
|
|
this.LunColumn,
|
|
this.SrColumn});
|
|
this.dataGridView.Location = new System.Drawing.Point(3, 3);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.Size = new System.Drawing.Size(540, 225);
|
|
this.dataGridView.TabIndex = 1;
|
|
//
|
|
// VdiColumn
|
|
//
|
|
this.VdiColumn.HeaderText = "VDI (Virtual Disk)";
|
|
this.VdiColumn.Name = "VdiColumn";
|
|
//
|
|
// LunColumn
|
|
//
|
|
this.LunColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.LunColumn.HeaderText = "LUN";
|
|
this.LunColumn.Name = "LunColumn";
|
|
//
|
|
// SrColumn
|
|
//
|
|
this.SrColumn.HeaderText = "SR";
|
|
this.SrColumn.Name = "SrColumn";
|
|
//
|
|
// LunPerVdiPicker
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "LunPerVdiPicker";
|
|
this.Size = new System.Drawing.Size(553, 242);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private XenAdmin.Controls.DataGridViewEx.DataGridViewEx dataGridView;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn VdiColumn;
|
|
private EnableableComboBoxColumn LunColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SrColumn;
|
|
}
|
|
}
|