UWP中的应用程序图标

Nee*_*ati 6 icons xamarin xamarin.forms uwp

我是Xamarin的新手,我正在创建UWP应用程序.我想知道从哪里可以设置应用程序图标图像.我已经看过关于堆栈溢出的文章和问题看起来很相似,但它仍然不清楚..

所以我的问题正是我应该改变我的图像的标志.只有24x24,如下图所示.那么其他徽章徽标等是什么?

我是否应该更改所有尺寸的徽标图像?

在此输入图像描述

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>
    ...
Run Code Online (Sandbox Code Playgroud)

Mar*_*und 3

MSDN文档提供了每个图像的使用位置的清晰描述。在底部,您可以看到资产大小表,其中包含所有维度及其用法。

至于 Square 44x44 徽标,第一行的前五张图像用于应用程序列表中的不同比例。

目标图像用于系统中不同位置的应用程序图标。在未电镀的形式下,它们应该具有透明的背景。您可以仅提供表单推荐的尺寸,但也可以提供更多尺寸(请参阅完整表格的文档)。