mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
CP-25563: Added hotkeys,changed flowLayout and corrected label alignment
Signed-off-by: serenc <seren.corbett@citrix.com>
This commit is contained in:
parent
40ac7c9a2f
commit
00aa042bd7
@ -33,13 +33,13 @@
|
||||
this.labelTitle = new XenAdmin.Controls.Common.AutoHeightLabel();
|
||||
this.CheckBoxEnableClustering = new System.Windows.Forms.CheckBox();
|
||||
this.labelNetwork = new System.Windows.Forms.Label();
|
||||
this.flowLayoutInfo = new System.Windows.Forms.FlowLayoutPanel();
|
||||
this.pictureBoxInfo = new System.Windows.Forms.PictureBox();
|
||||
this.labelWarning = new System.Windows.Forms.Label();
|
||||
this.comboBoxNetwork = new XenAdmin.Controls.NetworkComboBox();
|
||||
this.tableLayoutInfo = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
this.flowLayoutInfo.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxInfo)).BeginInit();
|
||||
this.tableLayoutInfo.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
@ -48,8 +48,8 @@
|
||||
this.tableLayoutPanel1.Controls.Add(this.labelTitle, 0, 0);
|
||||
this.tableLayoutPanel1.Controls.Add(this.CheckBoxEnableClustering, 0, 1);
|
||||
this.tableLayoutPanel1.Controls.Add(this.labelNetwork, 0, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.flowLayoutInfo, 0, 3);
|
||||
this.tableLayoutPanel1.Controls.Add(this.comboBoxNetwork, 1, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.tableLayoutInfo, 0, 3);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
//
|
||||
// labelTitle
|
||||
@ -70,14 +70,6 @@
|
||||
resources.ApplyResources(this.labelNetwork, "labelNetwork");
|
||||
this.labelNetwork.Name = "labelNetwork";
|
||||
//
|
||||
// flowLayoutInfo
|
||||
//
|
||||
resources.ApplyResources(this.flowLayoutInfo, "flowLayoutInfo");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.flowLayoutInfo, 2);
|
||||
this.flowLayoutInfo.Controls.Add(this.pictureBoxInfo);
|
||||
this.flowLayoutInfo.Controls.Add(this.labelWarning);
|
||||
this.flowLayoutInfo.Name = "flowLayoutInfo";
|
||||
//
|
||||
// pictureBoxInfo
|
||||
//
|
||||
this.pictureBoxInfo.Image = global::XenAdmin.Properties.Resources._000_Info3_h32bit_16;
|
||||
@ -100,6 +92,14 @@
|
||||
resources.ApplyResources(this.comboBoxNetwork, "comboBoxNetwork");
|
||||
this.comboBoxNetwork.Name = "comboBoxNetwork";
|
||||
//
|
||||
// tableLayoutInfo
|
||||
//
|
||||
resources.ApplyResources(this.tableLayoutInfo, "tableLayoutInfo");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.tableLayoutInfo, 2);
|
||||
this.tableLayoutInfo.Controls.Add(this.pictureBoxInfo, 0, 0);
|
||||
this.tableLayoutInfo.Controls.Add(this.labelWarning, 1, 0);
|
||||
this.tableLayoutInfo.Name = "tableLayoutInfo";
|
||||
//
|
||||
// ClusteringEditPage
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
@ -108,9 +108,9 @@
|
||||
this.Name = "ClusteringEditPage";
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.tableLayoutPanel1.PerformLayout();
|
||||
this.flowLayoutInfo.ResumeLayout(false);
|
||||
this.flowLayoutInfo.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxInfo)).EndInit();
|
||||
this.tableLayoutInfo.ResumeLayout(false);
|
||||
this.tableLayoutInfo.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
@ -123,8 +123,8 @@
|
||||
private System.Windows.Forms.Label labelNetwork;
|
||||
private System.Windows.Forms.PictureBox pictureBoxInfo;
|
||||
private System.Windows.Forms.Label labelWarning;
|
||||
private System.Windows.Forms.FlowLayoutPanel flowLayoutInfo;
|
||||
private Controls.NetworkComboBox comboBoxNetwork;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutInfo;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -82,7 +82,7 @@ namespace XenAdmin.SettingsPanels
|
||||
{
|
||||
pool = Helpers.GetPoolOfOne(clone.Connection);
|
||||
var master = Helpers.GetMaster(clone.Connection);
|
||||
flowLayoutInfo.Visible = false;
|
||||
tableLayoutInfo.Visible = false;
|
||||
|
||||
clusteringEnabled = pool.Connection.Cache.Cluster_hosts.Any(cluster => cluster.host.opaque_ref == master.opaque_ref && cluster.enabled);
|
||||
var existingCluster = pool.Connection.Cache.Clusters.FirstOrDefault();
|
||||
@ -156,7 +156,7 @@ namespace XenAdmin.SettingsPanels
|
||||
private void DisableControls(string message)
|
||||
{
|
||||
comboBoxNetwork.Enabled = labelNetwork.Enabled = CheckBoxEnableClustering.Enabled = false;
|
||||
flowLayoutInfo.Visible = true;
|
||||
tableLayoutInfo.Visible = true;
|
||||
labelWarning.Text = message;
|
||||
}
|
||||
|
||||
|
@ -192,6 +192,9 @@
|
||||
<data name=">>CheckBoxEnableClustering.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="labelNetwork.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Left</value>
|
||||
</data>
|
||||
<data name="labelNetwork.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
@ -199,10 +202,10 @@
|
||||
<value>NoControl</value>
|
||||
</data>
|
||||
<data name="labelNetwork.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>22, 87</value>
|
||||
<value>22, 89</value>
|
||||
</data>
|
||||
<data name="labelNetwork.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>22, 5, 3, 0</value>
|
||||
<value>22, 0, 3, 0</value>
|
||||
</data>
|
||||
<data name="labelNetwork.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>50, 13</value>
|
||||
@ -225,9 +228,33 @@
|
||||
<data name=">>labelNetwork.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.AutoSize" type="System.Boolean, mscorlib">
|
||||
<data name="comboBoxNetwork.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>78, 85</value>
|
||||
</data>
|
||||
<data name="comboBoxNetwork.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>223, 21</value>
|
||||
</data>
|
||||
<data name="comboBoxNetwork.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Name" xml:space="preserve">
|
||||
<value>comboBoxNetwork</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Type" xml:space="preserve">
|
||||
<value>XenAdmin.Controls.NetworkComboBox, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Parent" xml:space="preserve">
|
||||
<value>tableLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="tableLayoutInfo.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name="tableLayoutInfo.ColumnCount" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>NoControl</value>
|
||||
</data>
|
||||
@ -253,7 +280,7 @@
|
||||
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Parent" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
@ -283,56 +310,38 @@
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>labelWarning.Parent" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>labelWarning.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>3, 119</value>
|
||||
<data name="tableLayoutInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>3, 112</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>3, 10, 3, 3</value>
|
||||
<data name="tableLayoutInfo.RowCount" type="System.Int32, mscorlib">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<data name="tableLayoutInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>25, 25</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<data name="tableLayoutInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>6</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Name" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
<data name=">>tableLayoutInfo.Name" xml:space="preserve">
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name=">>tableLayoutInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Parent" xml:space="preserve">
|
||||
<data name=">>tableLayoutInfo.Parent" xml:space="preserve">
|
||||
<value>tableLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="comboBoxNetwork.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>78, 85</value>
|
||||
</data>
|
||||
<data name="comboBoxNetwork.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>223, 21</value>
|
||||
</data>
|
||||
<data name="comboBoxNetwork.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Name" xml:space="preserve">
|
||||
<value>comboBoxNetwork</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Type" xml:space="preserve">
|
||||
<value>XenAdmin.Controls.NetworkComboBox, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.Parent" xml:space="preserve">
|
||||
<value>tableLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>comboBoxNetwork.ZOrder" xml:space="preserve">
|
||||
<data name=">>tableLayoutInfo.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="tableLayoutInfo.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms">
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="pictureBoxInfo" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="labelWarning" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,100" /></TableLayoutSettings></value>
|
||||
</data>
|
||||
<data name="tableLayoutPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
@ -361,7 +370,7 @@
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="tableLayoutPanel1.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms">
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="labelTitle" Row="0" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="CheckBoxEnableClustering" Row="1" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="labelNetwork" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="flowLayoutInfo" Row="3" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="comboBoxNetwork" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,Percent,100" /></TableLayoutSettings></value>
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="labelTitle" Row="0" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="CheckBoxEnableClustering" Row="1" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="labelNetwork" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="comboBoxNetwork" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tableLayoutInfo" Row="3" RowSpan="1" Column="0" ColumnSpan="2" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,Percent,100,Absolute,20" /></TableLayoutSettings></value>
|
||||
</data>
|
||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
|
@ -35,12 +35,12 @@
|
||||
this.labelGFS2 = new System.Windows.Forms.Label();
|
||||
this.radioButtonLvm = new System.Windows.Forms.RadioButton();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.labelWarning = new System.Windows.Forms.Label();
|
||||
this.pictureBoxInfo = new System.Windows.Forms.PictureBox();
|
||||
this.flowLayoutInfo = new System.Windows.Forms.FlowLayoutPanel();
|
||||
this.labelWarning = new System.Windows.Forms.Label();
|
||||
this.tableLayoutInfo = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxInfo)).BeginInit();
|
||||
this.flowLayoutInfo.SuspendLayout();
|
||||
this.tableLayoutInfo.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
@ -51,20 +51,18 @@
|
||||
this.tableLayoutPanel1.Controls.Add(this.labelGFS2, 0, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.radioButtonLvm, 0, 3);
|
||||
this.tableLayoutPanel1.Controls.Add(this.label3, 0, 4);
|
||||
this.tableLayoutPanel1.Controls.Add(this.flowLayoutInfo, 0, 5);
|
||||
this.tableLayoutPanel1.Controls.Add(this.tableLayoutInfo, 0, 5);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
resources.ApplyResources(this.label1, "label1");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.label1, 2);
|
||||
this.label1.Name = "label1";
|
||||
//
|
||||
// radioButtonGfs2
|
||||
//
|
||||
resources.ApplyResources(this.radioButtonGfs2, "radioButtonGfs2");
|
||||
this.radioButtonGfs2.Checked = true;
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.radioButtonGfs2, 2);
|
||||
this.radioButtonGfs2.Name = "radioButtonGfs2";
|
||||
this.radioButtonGfs2.TabStop = true;
|
||||
this.radioButtonGfs2.UseVisualStyleBackColor = true;
|
||||
@ -72,27 +70,19 @@
|
||||
// labelGFS2
|
||||
//
|
||||
resources.ApplyResources(this.labelGFS2, "labelGFS2");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.labelGFS2, 2);
|
||||
this.labelGFS2.Name = "labelGFS2";
|
||||
//
|
||||
// radioButtonLvm
|
||||
//
|
||||
resources.ApplyResources(this.radioButtonLvm, "radioButtonLvm");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.radioButtonLvm, 2);
|
||||
this.radioButtonLvm.Name = "radioButtonLvm";
|
||||
this.radioButtonLvm.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
resources.ApplyResources(this.label3, "label3");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.label3, 2);
|
||||
this.label3.Name = "label3";
|
||||
//
|
||||
// labelWarning
|
||||
//
|
||||
resources.ApplyResources(this.labelWarning, "labelWarning");
|
||||
this.labelWarning.Name = "labelWarning";
|
||||
//
|
||||
// pictureBoxInfo
|
||||
//
|
||||
this.pictureBoxInfo.Image = global::XenAdmin.Properties.Resources._000_Info3_h32bit_16;
|
||||
@ -100,13 +90,17 @@
|
||||
this.pictureBoxInfo.Name = "pictureBoxInfo";
|
||||
this.pictureBoxInfo.TabStop = false;
|
||||
//
|
||||
// flowLayoutInfo
|
||||
// labelWarning
|
||||
//
|
||||
resources.ApplyResources(this.flowLayoutInfo, "flowLayoutInfo");
|
||||
this.tableLayoutPanel1.SetColumnSpan(this.flowLayoutInfo, 2);
|
||||
this.flowLayoutInfo.Controls.Add(this.pictureBoxInfo);
|
||||
this.flowLayoutInfo.Controls.Add(this.labelWarning);
|
||||
this.flowLayoutInfo.Name = "flowLayoutInfo";
|
||||
resources.ApplyResources(this.labelWarning, "labelWarning");
|
||||
this.labelWarning.Name = "labelWarning";
|
||||
//
|
||||
// tableLayoutInfo
|
||||
//
|
||||
resources.ApplyResources(this.tableLayoutInfo, "tableLayoutInfo");
|
||||
this.tableLayoutInfo.Controls.Add(this.labelWarning, 1, 0);
|
||||
this.tableLayoutInfo.Controls.Add(this.pictureBoxInfo, 0, 0);
|
||||
this.tableLayoutInfo.Name = "tableLayoutInfo";
|
||||
//
|
||||
// ChooseSrProvisioningPage
|
||||
//
|
||||
@ -117,8 +111,8 @@
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.tableLayoutPanel1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxInfo)).EndInit();
|
||||
this.flowLayoutInfo.ResumeLayout(false);
|
||||
this.flowLayoutInfo.PerformLayout();
|
||||
this.tableLayoutInfo.ResumeLayout(false);
|
||||
this.tableLayoutInfo.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
@ -133,6 +127,6 @@
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.PictureBox pictureBoxInfo;
|
||||
private System.Windows.Forms.Label labelWarning;
|
||||
private System.Windows.Forms.FlowLayoutPanel flowLayoutInfo;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutInfo;
|
||||
}
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ namespace XenAdmin.Wizards.NewSRWizard_Pages
|
||||
var gfs2Allowed = !Helpers.FeatureForbidden(Connection, Host.RestrictGfs2) && Connection.Cache.Cluster_hosts.Any(cluster => cluster.host.opaque_ref == master.opaque_ref && cluster.enabled);
|
||||
|
||||
radioButtonGfs2.Enabled = labelGFS2.Enabled = gfs2Allowed;
|
||||
flowLayoutInfo.Visible = radioButtonLvm.Checked = !gfs2Allowed;
|
||||
tableLayoutInfo.Visible = radioButtonLvm.Checked = !gfs2Allowed;
|
||||
labelWarning.Text = Helpers.FeatureForbidden(Connection, Host.RestrictGfs2)
|
||||
? Messages.GFS2_INCORRECT_POOL_LICENSE
|
||||
: Messages.GFS2_REQUIRES_CLUSTERING_ENABLED;
|
||||
|
@ -119,7 +119,7 @@
|
||||
</resheader>
|
||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="tableLayoutPanel1.ColumnCount" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="label1.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
@ -175,7 +175,7 @@
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="radioButtonGfs2.Text" xml:space="preserve">
|
||||
<value>Thin provisioning (GFS2)</value>
|
||||
<value>&Thin provisioning (GFS2)</value>
|
||||
</data>
|
||||
<data name=">>radioButtonGfs2.Name" xml:space="preserve">
|
||||
<value>radioButtonGfs2</value>
|
||||
@ -241,7 +241,7 @@
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="radioButtonLvm.Text" xml:space="preserve">
|
||||
<value>Full provisioning (LVM)</value>
|
||||
<value>&Full provisioning (LVM)</value>
|
||||
</data>
|
||||
<data name=">>radioButtonLvm.Name" xml:space="preserve">
|
||||
<value>radioButtonLvm</value>
|
||||
@ -288,32 +288,11 @@
|
||||
<data name=">>label3.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.AutoSize" type="System.Boolean, mscorlib">
|
||||
<data name="tableLayoutInfo.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>3, 15</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>3, 15, 3, 3</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>19, 20</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Name" xml:space="preserve">
|
||||
<value>pictureBoxInfo</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Parent" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
<data name="tableLayoutInfo.ColumnCount" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="labelWarning.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
@ -340,32 +319,62 @@
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>labelWarning.Parent" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>labelWarning.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>3, 15</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>3, 15, 3, 3</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>19, 20</value>
|
||||
</data>
|
||||
<data name="pictureBoxInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Name" xml:space="preserve">
|
||||
<value>pictureBoxInfo</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.Parent" xml:space="preserve">
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>pictureBoxInfo.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<data name="tableLayoutInfo.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>3, 129</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<data name="tableLayoutInfo.RowCount" type="System.Int32, mscorlib">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="tableLayoutInfo.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>28, 38</value>
|
||||
</data>
|
||||
<data name="flowLayoutInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<data name="tableLayoutInfo.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>7</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Name" xml:space="preserve">
|
||||
<value>flowLayoutInfo</value>
|
||||
<data name=">>tableLayoutInfo.Name" xml:space="preserve">
|
||||
<value>tableLayoutInfo</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name=">>tableLayoutInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.Parent" xml:space="preserve">
|
||||
<data name=">>tableLayoutInfo.Parent" xml:space="preserve">
|
||||
<value>tableLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutInfo.ZOrder" xml:space="preserve">
|
||||
<data name=">>tableLayoutInfo.ZOrder" xml:space="preserve">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name="tableLayoutInfo.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms">
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="labelWarning" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pictureBoxInfo" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,100" /></TableLayoutSettings></value>
|
||||
</data>
|
||||
<data name="tableLayoutPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
@ -397,7 +406,7 @@
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="tableLayoutPanel1.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms">
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="radioButtonGfs2" Row="1" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="labelGFS2" Row="2" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="radioButtonLvm" Row="3" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="label3" Row="4" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="flowLayoutInfo" Row="5" RowSpan="1" Column="0" ColumnSpan="2" /></Controls><Columns Styles="AutoSize,0,Percent,100" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,Percent,100,Absolute,20" /></TableLayoutSettings></value>
|
||||
<value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="radioButtonGfs2" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="labelGFS2" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="radioButtonLvm" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label3" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tableLayoutInfo" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,Absolute,20" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,Percent,100" /></TableLayoutSettings></value>
|
||||
</data>
|
||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
|
Loading…
Reference in New Issue
Block a user