mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
121 lines
5.6 KiB
C#
121 lines
5.6 KiB
C#
using XenAdmin.Controls;
|
|
namespace XenAdmin.Wizards.HAWizard_Pages
|
|
{
|
|
partial class ChooseSR
|
|
{
|
|
/// <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(ChooseSR));
|
|
this.dataGridViewExSRs = new XenAdmin.Controls.DataGridViewEx.DataGridViewEx();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.autoHeightLabel1 = new XenAdmin.Controls.Common.AutoHeightLabel();
|
|
this.colImage = new System.Windows.Forms.DataGridViewImageColumn();
|
|
this.colSR = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.colComment = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewExSRs)).BeginInit();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridViewExSRs
|
|
//
|
|
this.dataGridViewExSRs.BackgroundColor = System.Drawing.SystemColors.Window;
|
|
this.dataGridViewExSRs.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
|
|
this.dataGridViewExSRs.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
|
|
this.dataGridViewExSRs.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.colImage,
|
|
this.colSR,
|
|
this.colDescription,
|
|
this.colComment});
|
|
resources.ApplyResources(this.dataGridViewExSRs, "dataGridViewExSRs");
|
|
this.dataGridViewExSRs.Name = "dataGridViewExSRs";
|
|
this.dataGridViewExSRs.Paint += new System.Windows.Forms.PaintEventHandler(this.dataGridViewExSRs_Paint);
|
|
this.dataGridViewExSRs.SelectionChanged += new System.EventHandler(this.dataGridViewExSRs_SelectionChanged);
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.autoHeightLabel1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.dataGridViewExSRs, 0, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// autoHeightLabel1
|
|
//
|
|
resources.ApplyResources(this.autoHeightLabel1, "autoHeightLabel1");
|
|
this.autoHeightLabel1.Name = "autoHeightLabel1";
|
|
//
|
|
// colImage
|
|
//
|
|
this.colImage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
|
|
resources.ApplyResources(this.colImage, "colImage");
|
|
this.colImage.Name = "colImage";
|
|
this.colImage.ReadOnly = true;
|
|
this.colImage.Resizable = System.Windows.Forms.DataGridViewTriState.False;
|
|
//
|
|
// colSR
|
|
//
|
|
resources.ApplyResources(this.colSR, "colSR");
|
|
this.colSR.Name = "colSR";
|
|
this.colSR.ReadOnly = true;
|
|
//
|
|
// colDescription
|
|
//
|
|
resources.ApplyResources(this.colDescription, "colDescription");
|
|
this.colDescription.Name = "colDescription";
|
|
this.colDescription.ReadOnly = true;
|
|
//
|
|
// colComment
|
|
//
|
|
resources.ApplyResources(this.colComment, "colComment");
|
|
this.colComment.Name = "colComment";
|
|
this.colComment.ReadOnly = true;
|
|
//
|
|
// ChooseSR
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "ChooseSR";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewExSRs)).EndInit();
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private XenAdmin.Controls.DataGridViewEx.DataGridViewEx dataGridViewExSRs;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private XenAdmin.Controls.Common.AutoHeightLabel autoHeightLabel1;
|
|
private System.Windows.Forms.DataGridViewImageColumn colImage;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn colSR;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn colDescription;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn colComment;
|
|
}
|
|
}
|