Edit

uap:ShowOn

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:DefaultTile>
               └─ <uap:ShowNameOnTiles>
                  └─ <uap:ShowOn>

Syntax

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

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, 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.

Requirements

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

Remarks

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>