3

Flipview内でWebviewを取得しようとしているので、いつものように次のようになります:

<flipview>
    <flipview.itemtemplate>
         <datatemplate><webview name="wv" /> </datatemplate>
    </flipview.itemtemplate>
</flipview>

wv.navigatetostring(htmlstring); を使用したいと思います。

問題は、アイテムをナビゲートするときに、WebView が更新される場合と更新されない場合があることです。なにか提案を?

4

1 に答える 1

1

Theoretically it is possible to use WebView inside FlipView, but you should be aware of several limitations of this component. There is a well known issue when using the WebView - it's rendered on top of everything so the swiping using touch between FlipView items might not be possible.

Nice article every developer should know before using WebView in Windows 8 application:
Ten Things You Need to Know About WebView

于 2013-05-18T07:37:30.240 に答える