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>
182 lines
9.3 KiB
C#
182 lines
9.3 KiB
C#
namespace XenAdmin.Wizards.NewVMWizard
|
|
{
|
|
partial class Page_Storage
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Page_Storage));
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.DisksRadioButton = new System.Windows.Forms.RadioButton();
|
|
this.DisklessVMRadioButton = new System.Windows.Forms.RadioButton();
|
|
this.AddButton = new System.Windows.Forms.Button();
|
|
this.PropertiesButton = new System.Windows.Forms.Button();
|
|
this.DeleteButton = new System.Windows.Forms.Button();
|
|
this.DisksGridView = new XenAdmin.Controls.DataGridViewEx.DataGridViewEx();
|
|
this.ImageColumn = new System.Windows.Forms.DataGridViewImageColumn();
|
|
this.SrColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SizeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SharedColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.CloneCheckBox = new System.Windows.Forms.CheckBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.DisksGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// DisksRadioButton
|
|
//
|
|
resources.ApplyResources(this.DisksRadioButton, "DisksRadioButton");
|
|
this.DisksRadioButton.Name = "DisksRadioButton";
|
|
this.DisksRadioButton.TabStop = true;
|
|
this.DisksRadioButton.UseVisualStyleBackColor = true;
|
|
this.DisksRadioButton.CheckedChanged += new System.EventHandler(this.DisksRadioButton_CheckedChanged);
|
|
//
|
|
// DisklessVMRadioButton
|
|
//
|
|
resources.ApplyResources(this.DisklessVMRadioButton, "DisklessVMRadioButton");
|
|
this.DisklessVMRadioButton.Name = "DisklessVMRadioButton";
|
|
this.DisklessVMRadioButton.TabStop = true;
|
|
this.DisklessVMRadioButton.UseVisualStyleBackColor = true;
|
|
this.DisklessVMRadioButton.CheckedChanged += new System.EventHandler(this.DisklessVMRadioButton_CheckedChanged);
|
|
//
|
|
// AddButton
|
|
//
|
|
resources.ApplyResources(this.AddButton, "AddButton");
|
|
this.AddButton.Name = "AddButton";
|
|
this.AddButton.UseVisualStyleBackColor = true;
|
|
this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
|
|
//
|
|
// PropertiesButton
|
|
//
|
|
resources.ApplyResources(this.PropertiesButton, "PropertiesButton");
|
|
this.PropertiesButton.Name = "PropertiesButton";
|
|
this.PropertiesButton.UseVisualStyleBackColor = true;
|
|
this.PropertiesButton.Click += new System.EventHandler(this.PropertiesButton_Click);
|
|
//
|
|
// DeleteButton
|
|
//
|
|
resources.ApplyResources(this.DeleteButton, "DeleteButton");
|
|
this.DeleteButton.Name = "DeleteButton";
|
|
this.DeleteButton.UseVisualStyleBackColor = true;
|
|
this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
|
|
//
|
|
// DisksGridView
|
|
//
|
|
resources.ApplyResources(this.DisksGridView, "DisksGridView");
|
|
this.DisksGridView.BackgroundColor = System.Drawing.SystemColors.Window;
|
|
this.DisksGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
|
|
this.DisksGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.DisksGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ImageColumn,
|
|
this.SrColumn,
|
|
this.SizeColumn,
|
|
this.SharedColumn});
|
|
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
|
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
|
|
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
|
|
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Control;
|
|
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
|
|
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
|
this.DisksGridView.DefaultCellStyle = dataGridViewCellStyle1;
|
|
this.DisksGridView.Name = "DisksGridView";
|
|
this.DisksGridView.SelectionChanged += new System.EventHandler(this.DisksGridView_SelectionChanged);
|
|
//
|
|
// ImageColumn
|
|
//
|
|
this.ImageColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
|
this.ImageColumn.HeaderText = global::XenAdmin.Messages.SOLUTION_UNKNOWN;
|
|
this.ImageColumn.Name = "ImageColumn";
|
|
this.ImageColumn.ReadOnly = true;
|
|
resources.ApplyResources(this.ImageColumn, "ImageColumn");
|
|
//
|
|
// SrColumn
|
|
//
|
|
this.SrColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
resources.ApplyResources(this.SrColumn, "SrColumn");
|
|
this.SrColumn.Name = "SrColumn";
|
|
this.SrColumn.ReadOnly = true;
|
|
//
|
|
// SizeColumn
|
|
//
|
|
this.SizeColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
|
resources.ApplyResources(this.SizeColumn, "SizeColumn");
|
|
this.SizeColumn.Name = "SizeColumn";
|
|
this.SizeColumn.ReadOnly = true;
|
|
//
|
|
// SharedColumn
|
|
//
|
|
this.SharedColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
|
resources.ApplyResources(this.SharedColumn, "SharedColumn");
|
|
this.SharedColumn.Name = "SharedColumn";
|
|
this.SharedColumn.ReadOnly = true;
|
|
//
|
|
// CloneCheckBox
|
|
//
|
|
resources.ApplyResources(this.CloneCheckBox, "CloneCheckBox");
|
|
this.CloneCheckBox.Name = "CloneCheckBox";
|
|
this.CloneCheckBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// Page_Storage
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.CloneCheckBox);
|
|
this.Controls.Add(this.DisksGridView);
|
|
this.Controls.Add(this.DeleteButton);
|
|
this.Controls.Add(this.PropertiesButton);
|
|
this.Controls.Add(this.AddButton);
|
|
this.Controls.Add(this.DisklessVMRadioButton);
|
|
this.Controls.Add(this.DisksRadioButton);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "Page_Storage";
|
|
((System.ComponentModel.ISupportInitialize)(this.DisksGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.RadioButton DisksRadioButton;
|
|
private System.Windows.Forms.RadioButton DisklessVMRadioButton;
|
|
private System.Windows.Forms.Button AddButton;
|
|
private System.Windows.Forms.Button PropertiesButton;
|
|
private System.Windows.Forms.Button DeleteButton;
|
|
private XenAdmin.Controls.DataGridViewEx.DataGridViewEx DisksGridView;
|
|
private System.Windows.Forms.DataGridViewImageColumn ImageColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SrColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SizeColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SharedColumn;
|
|
private System.Windows.Forms.CheckBox CloneCheckBox;
|
|
}
|
|
}
|