diff options
author | Bob Arnson <bob@firegiant.com> | 2022-08-18 16:39:30 -0400 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-08-18 17:45:23 -0400 |
commit | 4a53029a94f706de48c6750481377f808724fe47 (patch) | |
tree | 9f9c5ce18539784d36e50772521d6c51646382fe /src | |
parent | 50cd3800d23e10df1c9ad322736b24206344a0ff (diff) | |
download | wix-4a53029a94f706de48c6750481377f808724fe47.tar.gz wix-4a53029a94f706de48c6750481377f808724fe47.tar.bz2 wix-4a53029a94f706de48c6750481377f808724fe47.zip |
Use conditional text rather than controls.
Diffstat (limited to 'src')
-rw-r--r-- | src/ext/Bal/wixstdba/Resources/HyperlinkLargeTheme.xml | 6 | ||||
-rw-r--r-- | src/ext/Bal/wixstdba/Resources/HyperlinkSidebarTheme.xml | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ext/Bal/wixstdba/Resources/HyperlinkLargeTheme.xml b/src/ext/Bal/wixstdba/Resources/HyperlinkLargeTheme.xml index beb75cca..c018249f 100644 --- a/src/ext/Bal/wixstdba/Resources/HyperlinkLargeTheme.xml +++ b/src/ext/Bal/wixstdba/Resources/HyperlinkLargeTheme.xml | |||
@@ -22,8 +22,10 @@ | |||
22 | </Page> | 22 | </Page> |
23 | <Page Name="Install"> | 23 | <Page Name="Install"> |
24 | <Label X="11" Y="80" Width="-11" Height="30" FontId="2" DisablePrefix="yes">#(loc.InstallHeader)</Label> | 24 | <Label X="11" Y="80" Width="-11" Height="30" FontId="2" DisablePrefix="yes">#(loc.InstallHeader)</Label> |
25 | <Label X="11" Y="121" Width="-11" Height="-129" FontId="3" VisibleCondition="WixStdBASuppressOptionsUI" DisablePrefix="yes">#(loc.InstallMessage)</Label> | 25 | <Label X="11" Y="121" Width="-11" Height="-129" FontId="3" DisablePrefix="yes"> |
26 | <Label X="11" Y="121" Width="-11" Height="-129" FontId="3" VisibleCondition="NOT WixStdBASuppressOptionsUI" DisablePrefix="yes">#(loc.InstallMessageOptions)</Label> | 26 | <Text Condition="WixStdBASuppressOptionsUI">#(loc.InstallMessage)</Text> |
27 | <Text Condition="NOT WixStdBASuppressOptionsUI">#(loc.InstallMessageOptions)</Text> | ||
28 | </Label> | ||
27 | <Hypertext Name="EulaHyperlink" X="11" Y="-107" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext> | 29 | <Hypertext Name="EulaHyperlink" X="11" Y="-107" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext> |
28 | <Label Name="InstallVersion" X="11" Y="-73" Width="246" Height="17" FontId="3" DisablePrefix="yes" VisibleCondition="WixStdBAShowVersion">#(loc.InstallVersion)</Label> | 30 | <Label Name="InstallVersion" X="11" Y="-73" Width="246" Height="17" FontId="3" DisablePrefix="yes" VisibleCondition="WixStdBAShowVersion">#(loc.InstallVersion)</Label> |
29 | <Checkbox Name="EulaAcceptCheckbox" X="-11" Y="-41" Width="260" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox> | 31 | <Checkbox Name="EulaAcceptCheckbox" X="-11" Y="-41" Width="260" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox> |
diff --git a/src/ext/Bal/wixstdba/Resources/HyperlinkSidebarTheme.xml b/src/ext/Bal/wixstdba/Resources/HyperlinkSidebarTheme.xml index 3365a292..3630b5b9 100644 --- a/src/ext/Bal/wixstdba/Resources/HyperlinkSidebarTheme.xml +++ b/src/ext/Bal/wixstdba/Resources/HyperlinkSidebarTheme.xml | |||
@@ -23,8 +23,10 @@ | |||
23 | <Label X="185" Y="11" Width="-11" Height="32" FontId="1" DisablePrefix="yes">#(loc.Title)</Label> | 23 | <Label X="185" Y="11" Width="-11" Height="32" FontId="1" DisablePrefix="yes">#(loc.Title)</Label> |
24 | <ImageControl X="11" Y="11" Width="165" Height="400" ImageFile="logoside.png"/> | 24 | <ImageControl X="11" Y="11" Width="165" Height="400" ImageFile="logoside.png"/> |
25 | <Label X="185" Y="50" Width="-11" Height="32" FontId="2" DisablePrefix="yes">#(loc.InstallHeader)</Label> | 25 | <Label X="185" Y="50" Width="-11" Height="32" FontId="2" DisablePrefix="yes">#(loc.InstallHeader)</Label> |
26 | <Label X="185" Y="91" Width="-11" Height="64" FontId="3" VisibleCondition="WixStdBASuppressOptionsUI" DisablePrefix="yes">#(loc.InstallMessage)</Label> | 26 | <Label X="185" Y="91" Width="-11" Height="64" FontId="3" DisablePrefix="yes"> |
27 | <Label X="185" Y="91" Width="-11" Height="64" FontId="3" VisibleCondition="NOT WixStdBASuppressOptionsUI" DisablePrefix="yes">#(loc.InstallMessageOptions)</Label> | 27 | <Text Condition="WixStdBASuppressOptionsUI">#(loc.InstallMessage)</Text> |
28 | <Text Condition="NOT WixStdBASuppressOptionsUI">#(loc.InstallMessageOptions)</Text> | ||
29 | </Label> | ||
28 | <Hypertext Name="EulaHyperlink" X="185" Y="-111" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext> | 30 | <Hypertext Name="EulaHyperlink" X="185" Y="-111" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext> |
29 | <Label Name="InstallVersion" X="185" Y="-81" Width="-11" Height="17" FontId="3" DisablePrefix="yes" VisibleCondition="WixStdBAShowVersion">#(loc.InstallVersion)</Label> | 31 | <Label Name="InstallVersion" X="185" Y="-81" Width="-11" Height="17" FontId="3" DisablePrefix="yes" VisibleCondition="WixStdBAShowVersion">#(loc.InstallVersion)</Label> |
30 | <Checkbox Name="EulaAcceptCheckbox" X="185" Y="-51" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox> | 32 | <Checkbox Name="EulaAcceptCheckbox" X="185" Y="-51" Width="-11" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">#(loc.InstallAcceptCheckbox)</Checkbox> |