更改固定在metro桌面上的快捷方式磁贴的磁贴图像

时间:2012-11-07 08:47:47

标签: windows-8

我们创建了一个切片快捷方式,类似于固定屏幕上的IE快捷方式。我们通过代码完成了这项工作。我们希望图像应该出现在这个图块上。我们如何将图像添加到这样的快捷方式拼贴。我们首先在Windows 7桌面模式下运行exe,然后使用shell脚本将引脚设置为屏幕事件。磁贴类似于固定在桌面上的任何互联网地址

1 个答案:

答案 0 :(得分:1)

this sample app ...

实现此目的所需的基本代码如下......

Uri logo = new Uri("ms-appx:///Assets/squareTile-sdk.png"); 
Uri smallLogo = new Uri("ms-appx:///Assets/smallTile-sdk.png"); 
string tileActivationArguments = MainPage.logoSecondaryTileId + " WasPinnedAt=" + DateTime.Now.ToLocalTime().ToString(); 
SecondaryTile secondaryTile = new SecondaryTile(MainPage.logoSecondaryTileId, 
   "Title text shown on the tile", 
   "Name of the tile the user sees when searching for the tile", 
   tileActivationArguments, 
   TileOptions.ShowNameOnLogo, 
   logo); 
secondaryTile.ForegroundText = ForegroundText.Dark; 
secondaryTile.SmallLogo = smallLogo; 
bool isPinned = await await secondaryTile.RequestCreateAsync();