質問するログイン新規登録

質問編集履歴

1

編集ミスの修正

2019/11/11 09:03

投稿

Velmy
Velmy

スコア17

title CHANGED
File without changes
body CHANGED
@@ -12,9 +12,9 @@
12
12
  this.WebView1.NavigateToString(MyWebPageString);
13
13
 
14
14
  // これはNG
15
- this.WebView1.Navigate(new Uri("ms-appdata:\\local\sample.html"));
15
+ this.WebView1.Navigate(new Uri("ms-appdata:///local/sample.html"));
16
16
  ```
17
17
 
18
- WebView1.Navigate(new Uri("ms-appdata:\\local\sample.html")); とした時は例外 "Value does not fall within the expected range." が発生しました。
18
+ WebView1.Navigate(new Uri("ms-appdata:///local/sample.html")); とした時は例外 "Value does not fall within the expected range." が発生しました。
19
19
 
20
20
  よろしくお願いします。