Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 2.59 KB

File metadata and controls

74 lines (50 loc) · 2.59 KB
description Search.Product title ms.assetid keywords ms.topic ms.date
Describes whether Windows overlays the app’s name on top of the tile image that is shown on the Start screen (in Package/Applications).
eADQiWindows 10XVcnh
uap:ShowOn (Windows 10)
ef9ad3df-5179-4dee-bf54-4f5de545b1ed
windows 10, uwp, schema, package manifest
reference
04/05/2017

uap:ShowOn (Windows 10)

Describes whether Windows overlays the app’s name on top of the tile image that is shown on the Start screen.

Element hierarchy

<Package>

    <Applications>

         <Application>

              <uap:VisualElements>

                   <uap:DefaultTitle>

                        <uap:ShowNameOnTiles>

                             <uap:ShowOn>

Syntax

<uap:ShowOn
    Tile = 'A string that can have one of the following values: "square150x150Logo", "wide310x150Logo", or "square310x310Logo".' />

Attributes and elements

Attributes

Attribute Description Data type Required Default value
Tile The size of the tile. A string that can have one of the following values: square150x150Logo, wide310x150Logo, or square310x310Logo. Yes

Child elements

None.

Parent elements

Parent element Description
uap:ShowNameOnTiles Describes whether Windows overlays the app’s name on top of the tile images that are shown on the Start screen.

Examples

This example shows how to use the ShowNameOnTiles and ShowOn elements:

<uap:ShowNameOnTiles>
    <uap:ShowOn
        Tile="square150x150Logo"/> <!-- Show app name on the 150x150 tile -->
    <uap:ShowOn
        Tile="wide310x150Logo"/> <!-- …and also on the 310x150 tile -->
</uap:ShowNameOnTiles>

Requirements

Item Value
Namespace http://schemas.microsoft.com/appx/manifest/uap/windows10
Minimum OS Version Windows 10 version 1511 (Build 10586)