我有以下问题。我在我的应用程序中创建二次瓷砖,并用名称和徽标给它们打上品牌。与其他应用程序相比,我认为这个标志似乎非常小。我创建了徽章标志和所有目标大小没有边框的标识。谁能告诉我品牌标识到底是用哪一幅画做的?
瓷砖的创建方式如下:
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);
要成为shure,我指的是以下徽标:
发布于 2015-12-30 03:04:50
它将使用Square44x44Logo
作为品牌标识。因此,确保您的断言文件看起来正确(例如,您的标志的透明部分应尽可能少)。
https://stackoverflow.com/questions/34498660
复制相似问题