0

我有以下问题。我在我的应用程序中创建辅助磁贴,并用名称和徽标为它们打上烙印。与我固定的其他应用程序相比,徽标似乎非常小。我创建了徽章徽标和所有带有 targetsize 且没有边框的徽标。谁能告诉我哪张图片恰好用于品牌标志?

磁贴是这样创建的:

string tileId = "MySecondaryAppTile"
string displayName = "MyApp";
string tileActivationArguments = "MyApp activated from Secondary tile";

Uri square71x71Logo = new Uri("ms-appx:///Assets/Square71x71Logo.png");
Uri square150x150Logo = new Uri("ms-appx:///Assets/Square150x150Logo.png");
Uri wide310x150Logo = new Uri("ms-appx:///Assets/Wide310x150Logo.png");
Uri square310x310Logo = new Uri("ms-

TileSize newTileDesiredSize = TileSize.Wide310x150;

SecondaryTile secondaryTile = new SecondaryTile(tileId,
                                                displayName,
                                                tileActivationArguments,
                                                square150x150Logo,
                                                newTileDesiredSize);

 if (!(Windows.Foundation.Metadata.ApiInformation.IsTypePresent(("Windows.Phone.UI.Input.HardwareButtons"))))
 {
      secondaryTile.VisualElements.Wide310x150Logo = wide310x150Logo;
      secondaryTile.VisualElements.ShowNameOnWide310x150Logo = true;
      secondaryTile.VisualElements.Square310x310Logo = square310x310Logo;
      secondaryTile.VisualElements.ShowNameOnSquare310x310Logo = true;
 }

 secondaryTile.VisualElements.ShowNameOnSquare150x150Logo = true;

 secondaryTile.RoamingEnabled = false;

 Windows.Foundation.Rect rect = FloorPage.GetElementRect((FrameworkElement)sender);
Windows.UI.Popups.Placement placement = Windows.UI.Popups.Placement.Below;
bool isPinned = await secondaryTile.RequestCreateForSelectionAsync(rect, placement);

像这样的 Tile 通知:

TileContent tileContent = new TileContent()
{
   Visual = new TileVisual()
   {
        **Branding = TileBranding.NameAndLogo**,

        TileMedium = new TileBinding()
        {
             Content = CreateTileBindingContent()
        },

        TileWide = new TileBinding()
        {
             Content = CreateTileBindingContent()
        },

        TileLarge = new TileBinding()
        {
            Content = CreateTileBindingContent()
        }
    }
};
TileNotification notification = new TileNotification(tileContent.GetXml());
TileUpdateManager.CreateTileUpdaterForSecondaryTile(tileId).Update(notification);

坦率地说,我的意思是以下徽标:

瓷砖品牌名称和徽标

4

1 回答 1

1

It will use Square44x44Logo as Branding logo. So make sure your assert file looks right(e.g. the transparent part of your logo should be as less as possible).

于 2015-12-30T03:04:50.420 回答