tag

home / developersection / tag

Media Element in WPF
wpf 03-Apr-2011
Media Element in WPF

We can create a simple Media player by using XAMLMediaElement element. WPF provides a wrapper around current Media Player 10 ActiveX (OCX) control. A

Calendar Control in WPF
wpf 02-Apr-2011
Calendar Control in WPF

A Calendar control in WPF is used to create a visual calendar in WPF through which users can pick date and raise an event on the selection of date. The XAML Calendar elements is used to create a calendar control in WPF.

Grid Control in WPF
wpf 02-Apr-2011
Grid Control in WPF

Grid control arranges content in rows and columns as specified by the developer. In XAML Grid elements used to create a Grid control in WPF. In Grid control we can span multiple rows as well as multiple columns.

StackPanel Control in WPF
wpf 02-Apr-2011
StackPanel Control in WPF

In WPF StackPanel control is also used to group controls either horizontally or vertically. We can use StackPanel control to arrange child elements into a single line that is either horizontally or vertically.

GroupBox control in WPF
wpf 01-Apr-2011
GroupBox control in WPF

The XAML(Extensible Application Markup Language) element represents GroupBox control in WPF. The GroupBox control allows you to visually group cont

PasswordBox Control in WPF
wpf 01-Apr-2011
PasswordBox Control in WPF

XAML PasswordBox elements represent password control in WPF. When we make any login form then we want user can enter their password in such a manner that other user cannot see what he enter.

Textbox control in WPF
wpf 30-Mar-2011
Textbox control in WPF

XAML element represents Textbox control in WPF. Whenever you want to provide a functionality to accept new values from user then we use concept of Te

RadioButton Control in WPF
wpf 30-Mar-2011
RadioButton Control in WPF

Whenever you want to checked only one value in available items then we can use RadioButton control. RadioButton control has all the property like chec

Image control in WPF
wpf 28-Mar-2011
Image control in WPF

Image control in WPF provides a facility to display images. We have certain properties through which we can manage display style of image control. In this demonstration I will show you how to use image control in WPF.

ListBox control in WPF
wpf 26-Mar-2011
ListBox control in WPF

In WPF ListBox control provides you a functionality to select values from available list. ListBox control provides same functionality as well as combo box control except that in list box control we can select multiple items depending upon requirement

DataGrid control in WPF
wpf 25-Mar-2011
DataGrid control in WPF

In this article I am going to explain you concept of DataGrid control in WPF. Whenever we are talking about to retrieve data from database or any collection then main problem that comes is to store data.

Combo Box control in WPF
wpf 23-Mar-2011
Combo Box control in WPF

In WPF a Combo Box control provides a facility to select items from a list. It works similar to list box control only expect that in list box control we can select multiple items while in combo box control we can select only one item.