我正在尝试在我的 xaml 文件中加载一个 html 文件。我试过这个
<WebView HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="100" Name="WebView1" Margin="109,82,0,0"/>
string url = "ms-appdata:///local/assets/index.html";
WebView1.Navigate(new Uri(url));
但不工作。我想知道这是否可能或是否有任何其他方式。
谢谢