Tag: Windows store

Windows Store App Project Templates

There are 5 different templates that are available in Visual Studio 2013 for the developers developing Windows Store App . Windows Store App Project Template 1. Blank App – This is one of the basic template which contains a single default.html file along with the default.css and default.js files. 2. Navigation App – If you app requires multiple pages , this is one of the…

How to Create a Class in Javascript in WinJS ?

You can define a new class using WinJS.class.define when developing Windows Store App using Javascript. How to Create a Class in Javascript in WinJS ? The WinJS.Class.define method can be used to create a new class in WinJS  . It accepts 3 parameters – Constructor – instanceMembers – staticMembers Below is a sample code snippet demonstrating the usage WinJS.Class.define to create a new class in…

XAP File in Windows Phone

XAP is the file which is used to deploy the app to the unlocked windows phone 8 device or submit the app for windows phone store. In simple terms, XAP is the output of the Windows Phone 8 project in Visual Studio and is a compressed files which contains assemblies, images, configuration files etc. The XAP file also contains 2 more important application manifest file…

Creating Namespace in WinJS for Windows Store App ?

When developing Windows Store App using WinJS library , there are times when you want to create a namespace . You can use the WinJS.Namespace.define() method to create a namespace. Below is a sample code snippet demonstrating how to create a namespace in WinJS for Windows Store App using WinJS. Creating Namespace in WinJS for Windows Store App ?