我尝试让应用程序显示WebView
在FlipView
<FlipView Name="mainPage"
<WebView Name="wv1" Source="http://www.google.com/"
Width="1024" Height="768" />
<WebView Name="wv2" Source="http://www.google.co.id/"
Width="1024" Height="768" />
<WebView Name="wv3" Source="http://www.google.co.uk/"
Width="1024" Height="768" />
<WebView Name="wv4" Source="http://www.google.com.sg/"
Width="1024" Height="768" />
</FlipView>
问题是:
- 当
SelectedItem
onwv2
时,wv2
GotFocus
它会显示wv1
,当wv2
LostFocus
它再次重绘时wv2
。 - 当
SelectedItem
onwv3
或wv4
时GotFocus
会显示空白页,当wv3
orwv4
LostFocus
时会重新绘制wv3
orwv4
。 - 当
SelectedItem
onwv1
没有问题的时候GotFocus
并且没有闪烁。
任何人都可以帮助我给出一个方向,什么是错误的,也许是WebView
inside of的最佳实施FlipView
?