在Windows10中,应用程序可以将二级磁贴固定在开始菜单上。当用户移除(解锁)这样的磁贴时,如何通知应用程序?
发布于 2019-03-09 03:51:44
当您需要展示信息时,可以查询该接口,查看该瓦片是否存在:
// Check if the secondary tile is pinned
bool isPinned = SecondaryTile.Exists(tileId);仅此而已,没有任何通知:https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/secondary-tiles-pinning
https://stackoverflow.com/questions/55070023
复制相似问题