Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# How-to-select-dropdown-items-in-WF-SfComboBox
This repository contains the sample that how to select the dropdown items in the WinForms SfComboBox control.
# How to Select Items Programmatically in SfComboBox
This repository provides a detailed example of how to select items programmatically in the WinForms SfComboBox control, which is part of the Syncfusion suite. The SfComboBox control allows users to select multiple items from a dropdown list, and in certain scenarios, you may need to select items dynamically through code rather than user interaction. This is particularly useful when implementing features like loading saved preferences, applying default selections, or responding to specific application logic.

The items can be selected programmatically using the CheckedItems property of the DropDownListView. By iterating through the items collection, you can add items to the checked list, ensuring they appear selected in the dropdown. This approach provides flexibility and control over the selection process without requiring manual input.

## Code Example (C#)
```csharp
foreach (var selectedItems in this.sfComboBox1.DropDownListView.View.Items.ToList())
{
// Programmatically add the checked items
this.sfComboBox1.DropDownListView.CheckedItems.Add(selectedItems);
}
```

## Reference
For more details, refer to the official Syncfusion Knowledge Base article:
[How to select DropDown items in SfComboBox](https://wwwnforms-sfcombobox-dropdown-items-programmatically)