forked from python/pymanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMsixAppInstallerData.xml
More file actions
18 lines (18 loc) · 940 Bytes
/
MsixAppInstallerData.xml
File metadata and controls
18 lines (18 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<AppInstallerUX xmlns="http://schemas.microsoft.com/msix/appinstallerux"
Version="1.0.0">
<!-- Using the blue and grey from python.org - dark mode users always get black -->
<UX AccentColor="#3776AB" BackgroundColor="#FCFCFC">
<Icon HorizontalAlignment="right" Logo="_resources\setupx150.png" Size="medium" />
<Buttons Text="Python" IsSecondaryButtonAccent="false"/>
<HyperLinks TopMargin="1">
<!-- Undocumented limit of two links - choose wisely! -->
<HyperLink Text="Python website"
Url="https://www.python.org/"
HorizontalAlignment="left" />
<HyperLink Text="Get help with this installer"
Url="https://docs.python.org/dev/using/windows.html"
HorizontalAlignment="left" />
</HyperLinks>
</UX>
</AppInstallerUX>