2

我正在创建一个 Windows Phone 应用程序,我在其中放置了一个按钮以将应用程序固定到开始屏幕,但是当按住应用程序列表屏幕上的应用程序图标时,我发现可以使用固定启动选项

ShellTile TileToFind = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains("MainPage.xaml"));

        // Create the Tile if we didn't find that it already exists.
        if (TileToFind == null)
        {
            // Create the Tile object and set some initial properties for the Tile.
            // The Count value of 12 shows the number 12 on the front of the Tile. Valid values are 1-99.
            // A Count value of 0 indicates that the Count should not be displayed.
            StandardTileData NewTileData = new StandardTileData
            {
                BackgroundImage = new Uri("300.png", UriKind.Relative),
                Title = "apptitle",

                BackTitle = "title",
                BackContent = "testing ",
                BackBackgroundImage = null
            };

            // Create the Tile and pin it to Start. This will cause a navigation to Start and a deactivation of our app.
            ShellTile.Create(new Uri("/MainPage.xaml", UriKind.Relative), NewTileData);
        }
        else {
            MessageBox.Show("Already Pinned");
        }

如何禁止用户从应用程序列表屏幕再次固定应用程序

4

1 回答 1

2

您应该了解主要和次要瓷砖之间的区别。您从代码创建的是辅助磁贴,用户从上下文菜单中固定的是主磁贴。

主图块始终是第一个图块:

var primaryTile = ShellTile.ActiveTiles.First();

请记住,主图块始终存在,即使它没有固定。没有用于检查主磁贴固定状态的 API。所以我建议你从你的应用程序中删除这个功能。

也可以在这里找到一些细节。

于 2013-11-04T09:45:50.423 回答