1

快速提问(希望如此)。如何在“Windows Phone 8”应用程序中更改 index.html 的位置 (www/index.html)?我正在使用 PhoneGap 2.4.0。

第一次使用 Windows Phone 8 应用程序,如果答案很明显,我很抱歉 :)

4

1 回答 1

1

在 MainPage.cs 中编辑 MainPage 构造函数

    public MainPage()
    {
        InitializeComponent();
        this.CordovaView.StartPageUri = new Uri("/www/html/initializeconnection.html", UriKind.Relative);
        this.CordovaView.Loaded += CordovaView_Loaded;
    }
于 2013-02-10T18:58:39.577 回答