2017-09-15 80 views
0

我每次3 WebViewPivotItem一個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,它運行良好。

你能解釋爲什麼它不起作用嗎?

謝謝你的幫助。

回答

3

這是因爲您還需要RelativePanel.AlignBottomWithPanel="True"在您的Pivot上伸展以填充整個空間,否則它只會佔用空間,足夠用於PivotHeader s。

+0

謝謝!我已經添加了'RelativePanel.Above =「commandBar」'以伸展到'CommandBar'的頂部。 –