$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
WinForms DropDown and List Control
Create rich drop down and list for Windows Forms C# applications
Home > WinForms UI Controls > User Manual > Get Started in C# in C#

C# Drop Down and C# List Component Overview

Both the DropDownList Control and List Control are designed for developers to alter the standard Windows Forms combo box control and enrich the UI design for their Windows Forms applications. The DropDown and List control can be bound to data sources and visualize the control and manage the data. With the Drop Down and List Control, it is able to provide their own data layer to control the scrolling logic, the items layout, and the low level data binding logic. The DropDownList Control and List Control contain plenty of items and support auto complete, sorting, and filtering etc.
The C# tutorial below shows the process of adding items and images to the Drop Down List Control and retrieving the chosen text and images.
  1. Drag and drop a Drop Down List control and a Status Strip control to the Windows Form you are building.
  2. Add several images to the .NET Windows Forms project as resources.
  3. Open the downward arrow from the Status Strip, and add a Label Element and a Button Element. Change the Display Style of the Button Element to the value as Image.
  4. Choose Drop Down List Control and select the Items property in the Property Window in your Visual Studio IDE.
  5. Open the Item Collection Editor by clicking the ellipsis button.
  6. Create list items by clicking the Add button. Set the text to the items and the resource images to the Image property of the items. And then close the Item Collection Editor.
  7. Choose the Events button from the Properties Window and locate and double-click the event, DropDownListChosenIndexChanged, to create an event handler.
  8. Copy and paste the C# code below to the above event handler to retrieve the chosen item, and assign the text and image for the chosen item to the status bar label and image elements.

void dropDownList_ChosenIndexChanged(object sender, Kettic.UI.WinForms.Data.PositionChangedEventArgs e)
{
if (this.dropDownList.ChosenIndex > -1)
{
this.labelElement1.Text = this.dropDownList.ChosenItem.Text;
this.imageButtonElement1.Image = this.dropDownList.ChosenItem.Image;
}
}
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls