Learn Windows app Development
You only required some basic knowledge about programming and HTML.
You can easily start developing windows app. Visual Studio 2015 helps you to start your development and provide best tools for its development. After developing app you can register yourself to windows store and you will be able to publish your app and start earning. Make sure you Have installed Windows 10.
It is very basic level learning don't be panic, at the start you will face some minor problems but by the time you will be able to develop your own app.
You can easily start developing windows app. Visual Studio 2015 helps you to start your development and provide best tools for its development. After developing app you can register yourself to windows store and you will be able to publish your app and start earning. Make sure you Have installed Windows 10.
It is very basic level learning don't be panic, at the start you will face some minor problems but by the time you will be able to develop your own app.
Following simple calculator code will show you how to start development
I will help you by screenshots. First you have to take a look on this simple calculator Interface then I will explain its code step by step.
Step 1:
You have to create new project then the new window will open select first option and by clicking "OK" button proceed further. as shown in below
Step 2:
When you click "OK" button the project will be created. As shown in following screenshot. So double Click on "MainPage.xaml" on the right side of screen in "Solution Explorer"
Step 3:
By clicking "MainPage.xaml" empty screen will be created and in bottom the developer mode will be open you have to write all code in <grid> <grid/> this block.
See folowing Screenshot.
Step 4:
So follow the following steps for simple calculator app tutorial
Textbox to take input from buttons
Step 5:
First column's buttons code and screenshot
Step 6:
Proceed further steps to make complete interface of your app
Step 7:
Next buttons and code
last step then your first simple calculator project is ready. Keep following this site and also share this site with your friends. For more help don't feel any hesitation just comment below you will get reply.
More tutorials will be posted related to this app.
If you need complete code of this project so contact me by email.




please explain the properties
ReplyDelete1. ColumnSpan
2. TextWrapping
1. It represents that the number of columns that child content should span.
ReplyDeletee.g when you start writing text it will take all columns space.
2. This property wraps the text into given field. If line reached to the edge of Textbox, it automatically creates new line to control the more room for text, if needed.