Если у вас есть HTML-страница или файл для отображения, вы должны использовать WebBrowser . Он поддерживает все основные функции, которые вы ожидаете от веб-браузера; HTML-разметка, стили, якорные теги переходят на другие ресурсы или места на вашей странице.
Чтобы отобразить файл, расположенный внутри проекта Visual Studio, вам нужно сделать что-то вроде this . Дайте мне знать, если вам нужна дополнительная информация. Надеюсь, это поможет.
Al.
=== обновлено ===
/// <summary>
/// Contains extension methods for the WebBrowser control.
/// </summary>
public static class WebBrowserExtensions {
private static void SaveFileToIsoStore(String fileName) {
//These files must match what is included in the application package,
//or BinaryStream.Dispose below will throw an exception.
using(IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication()) {
if (false == isoStore.FileExists(fileName)) {
StreamResourceInfo sr = Application.GetResourceStream(new Uri(fileName, UriKind.Relative));
using (BinaryReader br = new BinaryReader(sr.Stream)) {
byte[] data = br.ReadBytes((int)sr.Stream.Length);
SaveToIsoStore(fileName, data);
}
}
}
}
private static void SaveToIsoStore(string fileName, byte[] data) {
string strBaseDir = string.Empty;
string delimStr = "/\\";
char[] delimiter = delimStr.ToCharArray();
string[] dirsPath = fileName.Split(delimiter);
using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication()) {
//Recreate the directory structure
for (int i = 0; i < dirsPath.Length - 1; i++) {
strBaseDir = System.IO.Path.Combine(strBaseDir, dirsPath[i]);
isoStore.CreateDirectory(strBaseDir);
}
//Remove existing file
if (isoStore.FileExists(fileName)) {
isoStore.DeleteFile(fileName);
}
//Write the file
using (BinaryWriter bw = new BinaryWriter(isoStore.CreateFile(fileName))) {
bw.Write(data);
bw.Close();
}
}
}
public static void NavigateToHtmlFile(this WebBrowser webBrowser, String fileName) {
SaveFileToIsoStore(fileName);
using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication()) {
if (isoStore.FileExists(fileName)) {
webBrowser.Navigate(new Uri(fileName, UriKind.Relative));
} else {
//something bad has happened here
}
}
}
}
а потом в вашем xaml
MyWebControl.NavigateToHtmlFile(pathToHtmlFile);