gpt4 book ai didi

cordova - 在 Windows Phone/PhoneGap 1.7 上更改起始页

转载 作者:行者123 更新时间:2023-12-01 01:54:28 24 4
gpt4 key购买 nike

我想在我的 Windows Phone PhoneGap 1.7 项目启动时加载不同于 index.html 的 HTML 文件。不幸的是,我似乎找不到可以更改的地方。有帮助吗?

干杯

最佳答案

您的 MainPage.xaml.cs 包含 MainPage 构造函数。在此构造函数中,您需要更改 PGView 对象的 startPageUri 属性,如下所示:

public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
this.PGView.StartPageUri = new Uri("/app/www/test.html", UriKind.Relative);
this.PGView.Loaded += GapBrowser_Loaded;
}

如您所见,我创建了一个新的 Uri,指向 www 目录中名为 test.html 的文件。将此字符串更改为您想要的任何值。

关于cordova - 在 Windows Phone/PhoneGap 1.7 上更改起始页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10616820/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com