我创建了一个新的空白Windows通用应用程序并在空白页面上拖动了一个PivotPanel。当我在XAML-Editor中查看时,它标记了PivotPanel行告诉我以下内容: 来自HRESULT的异常:0x8000FFFF(E_UNEXPECTED)
有没有人知道为什么会这样?
XAML的代码:
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<PivotPanel/>
</Grid>
</Page>