category

home / developersection / category

The GroupBox Control in C#.Net
c# 24-Jan-2011
The GroupBox Control in C#.Net

The GroupBox Control in C#.NetThe GroupBox control is a containercontrol that is used to place Windows Forms child controls in a group. That is the

PictureBox Control in C#.Net
c# 24-Jan-2011
PictureBox Control in C#.Net

PictureBox control is used to display an image. It contains properties and methods to manipulate the image. By the Drag and drop facility provides

LinkLabel Control in C#.Net
c# 24-Jan-2011
LinkLabel Control in C#.Net

LinkLabel is a class that is derived from label class so it has all the functions of label class. But LinkLabel control works as a hyperlink and its

ComboBox Control in C#.Net
c# 24-Jan-2011
ComboBox Control in C#.Net

ComboBox control is a combination of a TextBox and a ListBox. How to use ComboBoxDrag and drop ComboBox from toolbox on window Form.Code:using System

ListBox Control in C#.Net
c# 24-Jan-2011
ListBox Control in C#.Net

ListBox stores several text items. It can interact with other controls, including Button controls. We use this control in Windows Forms. In the exampl

RadioButton Control in C#.Net
c# 24-Jan-2011
RadioButton Control in C#.Net

RadioButton Control in C#.NetTheRadioButton controls are used when we need to make multiple sets of choices available, but we want the user to selec

CheckedListBox Control in C#.net
c# 24-Jan-2011
CheckedListBox Control in C#.net

CheckedListBox is a combination of a ListBox and a CheckBox. CheckedListBox can have items added using the String Collection Editor or their items c

Checkbox Control in C#.Net
c# 24-Jan-2011
Checkbox Control in C#.Net

Checkbox Control in C#.NetThe Checkbox control is used to display a checkbox. The Checkbox control gives us an option to select, say, yes/no or true

Button Control in C#.Net
c# 24-Jan-2011
Button Control in C#.Net

Button class in Windows Forms represents a Button control. Whenever button clicks, the Click event handler is invoked. You can place code in the Click event handler to perform any action you choose.

Label Control in C#.Net
c# 24-Jan-2011
Label Control in C#.Net

Label control is used to display Text on the Form. Main property of the label control is the text property which is used to set the text in the label.