UWP C#PivotItem无法识别名称空间

时间:2019-03-18 12:16:17

标签: c# uwp

我过去使用枢轴浏览选项卡中的页面。一切正常。现在,当我尝试添加新页面进行数据透视时,PivotItem无法识别该页面。无论我做什么,都要重建,重新启动。新页面与其他页面一样,并且在引用上应该没有区别。

enter image description here

<Page
    xmlns:xml_config="using:Plugin.Maestro_GUI.Xml_config"
    xmlns:stub_perspective ="using:Plugin.Maestro_GUI.Stub_Folder"
    xmlns:tests_folder ="using:Plugin.Maestro_GUI.Tests"

........

<Pivot Grid.Column="0" x:Name="MainPagePivot" Title="" VerticalAlignment="Stretch"
               Background="White">

    <PivotItem>
        <xml_config:Xml_Config_Perspective/>
    </PivotItem>
    <PivotItem>
        <stub_perspective:Stub_Perspective/>
    </PivotItem>
    <!--<PivotItem>
        <tests_folder:Run_Tests /> THIS IS NOT RECOGNIZABLE
    </PivotItem>-->

enter image description here

0 个答案:

没有答案