次のフレーム タグを使用して、Windows 8 XAML で Web ページを開こうとしています。
<Frame
Source="http://medievaltvg.freeoda.com/"
/>
Visual Studio から次のエラーが表示されます。
Unknown member 'Source' on element 'Frame.'
次のフレーム タグを使用して、Windows 8 XAML で Web ページを開こうとしています。
<Frame
Source="http://medievaltvg.freeoda.com/"
/>
Visual Studio から次のエラーが表示されます。
Unknown member 'Source' on element 'Frame.'
Source
コンパイラーは、Frame
-controlにメンバーがないことを通知します。これはWindows.UI.Xaml.Frame
意図したものではありません。
MSDNから。
You use the Frame control to support navigation to Page controls. You create
as many different pages as needed to present the content in your application
and then navigate to those pages from the frame. To navigate from the frame,
you call the Navigate method and pass in the type of the page to navigate to.
You can also pass in a parameter object to initialize the page to a particular state.
あなたが探しているのはWebView
-Control です。