Introduction
Windows 10 is evolving at a rapid pace technology nowadays. In this article we are going to learn some basic things of windows 10 application development.
Universal Windows Platform provide the common application platform and lets the developers build apps available on all the devices that runs on Windows 10.
In this part we are going to see the requirements for developing windows 10 application and SDK used to develop windows 10 apps.
Hardware Requirements
- RAM: More than 4GB
- Hard Disk: Minimum 12GB Free space
- Virtual machine in Hyper-V
Software Requirements
- OS: Windows 10 64-bit (Microsoft Recommended)
- Microsoft Visual Studio 2015 pro or community (Community edition is free)
- Writing your first Windows 10 application
- Windows 10 Emulator
In this article, create a new UWP project from the Blank App template with C# language and then deploy to run the app on Local Machine and Windows Mobile Emulator.
After successful installation (If you face problem in installation contact me). Start Visual Studio 2015 and select new project to create new windows 10 application. Name it “HelloWorldWin10” or as your wish like shown below.
Click Ok to create new app. Now you can see your app like the following screenshot:

Open the Mainpage.Xaml file in Visual Studio and add TextBlock in the existing grid. Set the Text property of the TextBlock to Hello World Windows 10 like the following code.
- <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
- <TextBlock Margin="79,272,109,335">Welcome to Windows 10</TextBlock>
- </Grid>
Click the Start Debugging button with the “Local Machine” option to deploy to run the app on the local machine.
In design time itself you can see the different device view looks like the following:
Now see the output for different device deployment.
Windows 10 Mobile

Windows 10 Tab

Windows 10 Desktop

Source Code.

Santhakumar MunuswamyPosted Oct 25, 2015, 11:41 AM
Good one
Mukesh KumarPosted Oct 22, 2015, 2:48 PM
Good Work
Harshad PansuriyaPosted Oct 22, 2015, 12:50 AM
Nice one
Suresh MPosted Oct 22, 2015, 12:26 AM
Thank you...
Dominique CejaPosted Oct 21, 2015, 3:58 PM
Good article!
Priyaranjan K SPosted Oct 21, 2015, 1:04 PM
Good One..
Akash VarshneyPosted Oct 21, 2015, 11:14 AM
Nice .. want to know more about it!!
Nilesh JadavPosted Oct 21, 2015, 9:25 AM
Nice one !!