Seems to be a VS bug whereby in some instances adding or renaming an object in the xaml file causes “Does Not Exist in Current Context Error” when using the object in the .xaml.cs file. Looking online it seems to be something that plagues lots of devs…

Compiles OK but Intellisense red lining the object name in .xaml.cs file – Fix

Ensure you are in Debug mode – have found that changing from Release to debug mode, cleaning and then rebuilding can cure the issue. If not, stay in debug mode, then:

  • Clean your project
  • Manually delete bin and obj folders (in all folders if your project has more than one project type)
  • Restart VS
  • Rebuild your project (you may need to do for all project types if you have more than one project type)

Won’t compile – Possible fix

Add ;assembly= at the end of your xmlns:local, like this:

  xmlns:local="using:my_namespace_name;assembly="

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *