category

home / developersection / category

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

MenuStrip Control in C#.NetWhere the MenuStrip class is the foundation of menus functionality in Windows Forms. If you have worked with menus in .N

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

StatusStrip control is a powerful StatusBar control. StatusStrip provides ProgressBar, DropdownButton, SplitButton, and Label features, you can add a progress

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

WebBrowser Control Enables to navigate Web pages inside your form. Navigate method of WebBrowser Control - Loads the document into the WebBrowser control.

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

The TreeView control is used to display a hierarchy of nodes. You can expand and collapse these nodes by clicking them.Drag and drop TreeView contro

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

The NumericUpDown Control in C#.NetThe NumericUpDown control provides a way to select a number that falls between a minimum and a maximum value. Th

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

A MonthCalendar control allows to selecting a date at the run time. How to use MonthCalendar Control Drag and drop MonthCalendar Control and Label

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

There is a MaskedTextBox control that provides validation mechanisms for user input on a Form. These are used as a mask to distinguish between valid

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

A ListView control allows displaying a list of items. ListView is very similar to windows explorer. In ListView you can list the items in the ListV

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

The FlowLayoutPanel dynamically repositions the controls it contains. The FlowLayoutPanel also supports Scroll when the AutoScroll property is set to True.

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

The TableLayoutPanel control is a container of other control where child controls are added within a table structure. When you add a control to a cell of the table, it would reposition itself to the center of the cell.

TabControl in C#.Net
c# 24-Jan-2011
TabControl in C#.Net

The TabControl control is a container control that allows you to display multiple tab on a single form and it allowed switching between the tabs. How

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

A SplitContainer has two panels. The first panel is represented by Panel1 and the second panel is represented by Panel2. These panels can have th