PhoneGap 2.4.0,Windows Phone 8,更改index.html的位置

时间:2013-02-09 20:15:23

标签: cordova indexing location windows-phone-8 rename

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

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

1 个答案:

答案 0 :(得分:1)

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

    public MainPage()
    {
        InitializeComponent();
        this.CordovaView.StartPageUri = new Uri("/www/html/initializeconnection.html", UriKind.Relative);
        this.CordovaView.Loaded += CordovaView_Loaded;
    }