home / developersection / category
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 is used to display an image. It contains properties and methods to manipulate the image. By the Drag and drop facility provides
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 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 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#.NetTheRadioButton controls are used when we need to make multiple sets of choices available, but we want the user to selec
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#.NetThe Checkbox control is used to display a checkbox. The Checkbox control gives us an option to select, say, yes/no or true
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 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.