我有一个网站和一个用于相同服务的移动网络应用程序。我希望当用户访问移动网站时,有一个按钮说“安装应用程序”,当按下该按钮时,会将图标添加到链接到移动网络应用程序的手机主屏幕。
我希望我很清楚,从那时起,我不想让用户觉得他们正在使用本机应用程序,避免让他们手动将网站添加到主屏幕。
谢谢
我有一个网站和一个用于相同服务的移动网络应用程序。我希望当用户访问移动网站时,有一个按钮说“安装应用程序”,当按下该按钮时,会将图标添加到链接到移动网络应用程序的手机主屏幕。
我希望我很清楚,从那时起,我不想让用户觉得他们正在使用本机应用程序,避免让他们手动将网站添加到主屏幕。
谢谢
这是在开始时创建图块的基本代码:
// check if secondary tile is already made and pinned
ShellTile Tile = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains("Title=SecondaryTile"));
if (Tile == null) {
// create a new secondary tile
StandardTileData data = new StandardTileData();
// tile foreground data
data.Title = "Secondary tile";
data.BackgroundImage = new Uri("/Images/Blue.jpg", UriKind.Relative);
data.Count = 2;
// create a new tile for this Second Page
ShellTile.Create(new Uri("/SecondPage.xaml?Title=SecondaryTile", UriKind.Relative), data);
您需要将其导航到所需的页面,然后使用WebBrowserTask转到所需的网页。
希望有帮助。