UWP application icon

I am new to Xamarin and I am creating a UWP application. I wanted to know where I can install the app icon icon from. I went through the articles and the stack overflow question, which looks similar, but it is still not clear.

So my question is exactly where I have to change my image for the logo. only 24x24 as shown in the image below. Then what logo others logo, etc.?

Should I change all images for a logo with all dimensions?

enter image description here

AppxMainfest.Xaml

<?xml version="1.0" encoding="utf-8"?> <Package ...> ... <Properties> <DisplayName>StockDispatchApp.UWP</DisplayName> <PublisherDisplayName>pci207</PublisherDisplayName> <Logo>Assets\StoreLogo.png</Logo> </Properties> <Dependencies> <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10586.0" /> </Dependencies> <Resources> <Resource Language="EN-US" /> </Resources> <Applications> <Application Id="App" Executable="StockDispatchApp.UWP.exe" EntryPoint="StockDispatchApp.UWP.App"> <uap:VisualElements DisplayName="StockDispatchApp.UWP" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="StockDispatchApp.UWP" BackgroundColor="transparent"> <uap:LockScreen Notification="" BadgeLogo="Assets\96x96.png" /> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"></uap:DefaultTile> <uap:SplashScreen Image="Assets\SplashScreen.png" /> </uap:VisualElements> </Application> </Applications> <Capabilities> <Capability Name="internetClient" /> </Capabilities> ... 

+5
source share
1 answer

The MSDN documentation contains a clear description of where each image is used. Below you can see the tables of the Table of asset sizes , which contain all sizes and their use.

As for the Square 44x44 logo, the first five images in the first line are used for different scales in the application list.

Target images are used for application icons in different places around the system. In their unplanned form, they should have a transparent background. You can provide only the sizes recommended by the form, but you can also provide more sizes (see the documentation for the full table).

+2
source

All Articles