UWP PivotPanel Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED)

0

I created a new blank windows universal app and dragged a PivotPanel on the empty page. When I take a look in the XAML-Editor it marks the PivotPanel line tells me the following: Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED)

Does anyone have a clue why this happens?

XAML-Code:

<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>
xaml
win-universal-app
asked on Stack Overflow Apr 30, 2016 by Rhabarber

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0