This version of the documentation is under development!
Click here for the latest released version.
Windows Phone 8.0 WebViews
本指南說明如何將嵌入在一個較大的 Windows Phone 8.0 應用程式內的科爾多瓦啟用 web 視圖元件。
要按照這些說明進行操作,請確保您有最新的科爾多瓦分佈。 從cordova.apache.org下載和解壓縮其 Windows Phone 8.0 套裝軟體 (科爾多瓦-wp8-*.zip)。
導航到包的
wp8/framework
目錄和生成WPCordovaClassLib.sln
。它將創建Bin\Debug[Release]\WPCordovaClassLib.dll
.複製
WPCordovaClassLib.dll
檔到 Windows Phone 8 專案/libs
目錄,包括WPCordovaClassLib.dll
到您的專案,通過Project->References->Add Reference
。 或者,你可以直接引用wp8/framework/WPCordovaClassLib.csproj
檔。添加
CordovaView
元件綁定到您的頁面 (例如,MainPage.xaml
).xmlns:my="clr-namespace:WPCordovaClassLib;assembly=WPCordovaClassLib"> ... <my:CordovaView HorizontalAlignment="Stretch" Margin="0,0,0,0" StartPageUri="html/index.html" x:Name="CordovaView" VerticalAlignment="Stretch" />
複製
common/www/cordova.js
以及應用程式的 HTML 和 JavaScript 檔到 Windows Phone 8 專案html
目錄,並包括該專案的新檔。複製
wp8/template/config.xml
到專案的根目錄中和
上面的說明將連結僅核心科爾多瓦元件,看到使用 Plugman 管理外掛程式連結科爾多瓦外掛程式。