0
我每次3 WebView
在PivotItem
一個RelativePanel
一樣,裏面:UWP的WebView不顯示網頁
<RelativePanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Pivot Name="pivot"
RelativePanel.AlignTopWithPanel="True"
RelativePanel.AlignLeftWithPanel="True"
RelativePanel.AlignRightWithPanel="True">
<PivotItem Header="Slack LiveTile">
<WebView Name="webView_001" />
</PivotItem>
<PivotItem Header="Slack RDV Tech">
<WebView Name="webView_002" />
</PivotItem>
<PivotItem Header="WhatsApp">
<WebView Name="webView_003" />
</PivotItem>
</Pivot>
<CommandBar
RelativePanel.AlignBottomWithPanel="True"
RelativePanel.AlignLeftWithPanel="True"
RelativePanel.AlignRightWithPanel="True" />
</RelativePanel>
我的問題是,視圖內容不顯示,我不明白爲什麼。在使用RelativePanel
之前,我使用了Grid
,它運行良好。
你能解釋爲什麼它不起作用嗎?
謝謝你的幫助。
謝謝!我已經添加了'RelativePanel.Above =「commandBar」'以伸展到'CommandBar'的頂部。 –