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...
Friday, October 11, 2013
How to Use Images in Treeview: WPF
Image control can be placed in any other control such like Treeview, Toolbar control or any other controls. The images can be stored in your solution files. To place an image in Treeview control using following simple steps.
Pla...
Introduction of WPF TreeView Control
Treeview control is used to display our data in hierarchical form, where some of the nodes are parent and some of them are children of their parents. In the left side of windows explorer there is a treeview containing some librar...
Thursday, October 10, 2013
How to Load UserControl in ToolBar Control: WPF
In earlier post I have placed some images and labels in toolbar control using some lines of XAML code. Now if we want to load a user control, written in another file, we have so follow some steps like the below.
Just add a user ...
How to Place an Image in Toolbar Control: WPF
Toolbar control is used to place some shortcuts in the windows environment. We can use this toolbar in our WPF application as used in our previous post. In this post, we will place an image control in to this toolbar.
We can dir...
Tuesday, October 8, 2013
How to Use ToolBar Control: WPF
Toolbar control is a container control, that can contains other types of controls like labels, buttons even other containers. In our windows environment, there is also a toolbar which contains our shortcut buttons with images. Wh...
Sunday, September 29, 2013
How to Make TextBox Control ReadOnly: WPF
In our previous post, we have enable the spell check feature of the textbox, through which user can check the spellings of the word entered and correct it. As we know that the textbox is used to input any value by the user, but i...
Wednesday, September 25, 2013
How to Enable Spell Check in TextBox: WPF
WPF Textbox control is used to input some value by the user at run time. Now it is not sure that the entered values are correct, it means user can write anything wrong in the textbox. So it is programmer’s job to check the value ...