Layouts in WPF
WPF layout, a mostly used component of an application, is basically used to arranging controls on fixed pixels. Users can not resize the places which are placed in these layouts. There are five built-in panels i.e...
Monday, April 14, 2014
How to Use Checkbox in WPF
Checkbox is a GUI element that permits the user to make a binary choice i.e. user may have to answer yes or no. Now a days programming have a new option to set the value to null. It means checkbox may be used as a three state whi...
Monday, November 25, 2013
How to use HyperlinkButton with XAML in Windows 8 App Development
HyperLinkButton, used to open the specified URI in the default browser. URI can be specified in NavigateURI property of this button and it will launch that by clicking on that button. This button look like a text with underline. ...
Thursday, November 21, 2013
Windows Store App : How to use Grid in XAML
Introduction
By-default a Grid element has one row and one column i.e. a single cell, any control placed inside the Grid will be placed in this cell. Lets see the below simple XAML code where a textbox is placed in the first row...
Tuesday, November 19, 2013
How to change Application name in Windows Store Grid App
Introduction
In our previous article, we have studied about Windows Store Grid App. In this article we will learn about App.xaml file and their behaviors also take a simple example to change Application name.
Pre-requisite
You...
Monday, November 18, 2013
Getting Started with Windows Store Grid App (XAML)
Introduction
The Grid App is basically used for navigating between categories. User can search contents between categories for example, photo and video apps in Windows 8. In this article we will discuss basics about windows stor...