VS2017 DesignInstance Intellisense not working


VS2017 DesignInstance Intellisense not working



For some reason the intellisense in VS2017 is not showing the properties of my viewmodels, even though I used the d:DataContext="{d:DesignInstance Type=local:TestVm, IsDesignTimeCreatable=True}" method.


d:DataContext="{d:DesignInstance Type=local:TestVm, IsDesignTimeCreatable=True}"



Example of my class:


public class TestVm
{
private int _test;

public int Test
{
get { return _test; }
set { _test = value; }
}
}



Yet the property Test isn't showing up in my intellisense:
enter image description here



What could be the reason behind this?





hope this help to you stackoverflow.com/questions/45720439/…
– Sachith
Jun 30 at 19:03





I tried them out but none seemed to fix it
– user2657943
Jul 1 at 8:28









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

List of Kim Possible characters

Audio Livestreaming with Python & Flask

NSwag: Generate C# Client from multiple Versions of an API