Reputation: 3
Can someone explain to me how to use/accuire access to vs built-in classes like MusicProperties or ImageProperties listed here? https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.fileproperties.aspx
My visual studio doesnt recognize it`s namespace even though I have installed latest windows 10 sdk, as listed in the requirements table: "Universal, introduced version 10.0.10240.0".
Do I have to use explicitly winForms or WPF etc to have access to specific libraries?
Upvotes: 0
Views: 101
Reputation: 156968
You have to create an Universal app or Windows Runtime app to be able to access that namespace.
Pick any of these (note that some project types can have another subset of features enabled):
Upvotes: 1