0

I develop with Windows 10 and Visual Studio C #. I'm trying the tutorial:

https://learn.microsoft.com/en-us/visualstudio/ide/quickstart-uwp-csharp?view=vs-2017

Target version 16299 The designer does not work: no graphical display in designer page, only xaml code. What is wrong: target version ? Thank for helping

Muzib
  • 2,412
  • 3
  • 21
  • 32

1 Answers1

0

Your OS Build Number is need to be equal or greater than your windows development SDK version if you want to see the designer in visual studio during you development of Universal Windows Application.

To see windows version and build number open run with Windows+R and write winver then press enter, see the OS Build like below in my system.

enter image description here

So check your OS Build Number and it must be equal or greater that your target framework in order to let you see elements in your designer.

Parsa Karami
  • 702
  • 1
  • 8
  • 30
  • OK for the OS build version (I have 1803 17134). How can I have the SDK version number ? – jlalexie Oct 04 '18 at 08:49
  • @jlalexie check this [Link](https://stackoverflow.com/questions/2665755/how-can-i-determine-the-version-of-the-windows-sdk-installed-on-my-computer) – Parsa Karami Oct 04 '18 at 10:47
  • After testing all versions, only the version target "Windows 10 Creators Update (10.0 Build 15063)" makes XAML Designer working. Strange !! – jlalexie Oct 04 '18 at 11:33
  • 1
    @jlalexie Maybe, your hardware environment doesn't meet the SDK running requirement. E.g, if your machine doesn't have enough ram, it will cause this issue. – Bite Oct 05 '18 at 01:56