mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-29 02:18:07 +01:00
Merge pull request #183 from xs-nanjing/CA-142045
CA-142045: Buttons are truncated on Workload Balancing Configuration for New Pool wizard.
This commit is contained in:
commit
290092d50b
@ -60,42 +60,6 @@ namespace XenAdmin.Dialogs.Wlb
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage,
|
||||
this.wlbOptimizationModePage,
|
||||
this.wlbAutomationPage,
|
||||
this.wlbThresholdsPage,
|
||||
this.wlbMetricWeightingPage,
|
||||
this.wlbHostExclusionPage,
|
||||
this.wlbAdvancedSettingsPage});
|
||||
resources.ApplyResources(this.verticalTabs, "verticalTabs");
|
||||
//
|
||||
@ -167,6 +131,7 @@ namespace XenAdmin.Dialogs.Wlb
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.Name = "WlbConfigurationDialog";
|
||||
this.SizeChanged += new System.EventHandler(this.WlbConfigurationDialog_SizeChanged);
|
||||
this.Controls.SetChildIndex(this.cancelButton, 0);
|
||||
this.Controls.SetChildIndex(this.okButton, 0);
|
||||
this.Controls.SetChildIndex(this.splitContainer, 0);
|
||||
|
@ -215,5 +215,15 @@ namespace XenAdmin.Dialogs.Wlb
|
||||
}
|
||||
}
|
||||
|
||||
private void WlbConfigurationDialog_SizeChanged(object sender, EventArgs e)
|
||||
{
|
||||
// When the size of configuration dialog is changed,
|
||||
// the SplitContainer panels should expand and contract correspondingly.
|
||||
// Originally the dialog height is 750, SplitContainer height is 674,
|
||||
// the difference is 76.
|
||||
// The SplitContainer height must track the change of the dialog height.
|
||||
splitContainer.Height = this.Height - 76;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -331,10 +331,10 @@
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="cancelButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
<value>Bottom, Right</value>
|
||||
</data>
|
||||
<data name="cancelButton.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>738, 725</value>
|
||||
<value>738, 682</value>
|
||||
</data>
|
||||
<data name=">>cancelButton.Name" xml:space="preserve">
|
||||
<value>cancelButton</value>
|
||||
@ -349,10 +349,10 @@
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="okButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Left</value>
|
||||
<value>Bottom, Right</value>
|
||||
</data>
|
||||
<data name="okButton.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>647, 725</value>
|
||||
<value>647, 682</value>
|
||||
</data>
|
||||
<data name=">>okButton.Name" xml:space="preserve">
|
||||
<value>okButton</value>
|
||||
@ -535,7 +535,7 @@
|
||||
<value>96, 96</value>
|
||||
</data>
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>834, 755</value>
|
||||
<value>834, 712</value>
|
||||
</data>
|
||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 8pt</value>
|
||||
|
Loading…
Reference in New Issue
Block a user