tag does not exist in XML namespace

后端 未结 7 1300
闹比i
闹比i 2021-01-03 22:34

This error seems to be posted all over the place but each one seems to have its own solution, none of which solved my problem.

I am getting an error for a Resource D

7条回答
  •  耶瑟儿~
    2021-01-03 22:57

    it's an old question but, the problem comes from the .csproj. Be sure the "page" element is defined before the "compile" element in the "itemgroup" section.

    Good :

      
    ...
    
      Designer
      MSBuild:Compile
    
    
      StatusBar.xaml
    

    Not good :

      
    ...
    
      StatusBar.xaml
    
    
      Designer
      MSBuild:Compile
    

    regards,

提交回复
热议问题