TestWizard improvements
This commit is contained in:
parent
ab3a16bdc5
commit
9fed5148b6
@ -62,7 +62,8 @@ namespace TBF.UI.Procedures.TestWizard
|
|||||||
this.selectorValues = selectorValues;
|
this.selectorValues = selectorValues;
|
||||||
|
|
||||||
flowUnit = test.FlowUnit;
|
flowUnit = test.FlowUnit;
|
||||||
unitComboBox.Text = unit2ComboBox.Text = unit3ComboBox.Text = flowUnit.ToDescription();
|
unitComboBox.Text = unit2ComboBox.Text = unit3ComboBox.Text =
|
||||||
|
(flowUnit == Unit.None) ? Unit.m3ph.ToDescription() : flowUnit.ToDescription();
|
||||||
|
|
||||||
if (first) backButton.Visible = false;
|
if (first) backButton.Visible = false;
|
||||||
|
|
||||||
|
|||||||
@ -54,7 +54,7 @@ namespace TBF.UI.Procedures.TestWizard
|
|||||||
this.test = test;
|
this.test = test;
|
||||||
|
|
||||||
volumeUnit = test.VolumeUnit;
|
volumeUnit = test.VolumeUnit;
|
||||||
unitComboBox.Text = volumeUnit.ToDescription();
|
unitComboBox.Text = (volumeUnit == Unit.None) ? Unit.l.ToDescription() : volumeUnit.ToDescription();
|
||||||
|
|
||||||
if (first) backButton.Visible = false;
|
if (first) backButton.Visible = false;
|
||||||
if (last) nextButton.Text = Strings.FinishBtnText;
|
if (last) nextButton.Text = Strings.FinishBtnText;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user