Windows Forms: Get Checked Items In a CheckedListBox in C#
By FoxLearn 7/25/2017 9:21:47 PM 7.61K
How to Get Checked Items In a CheckedListBox in C#
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "GetCheckedItems" and then click OK
Step 2: Design your form as below
Step 3: Add code to handle your winform as below
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace GetCheckedItems { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnGetItem_Click(object sender, EventArgs e) { //Get items by checkeditems listBoxItem.Items.Clear(); foreach (string s in checkedListBox.CheckedItems) listBoxItem.Items.Add(s); } private void btnGetIndex_Click(object sender, EventArgs e) { //Get items by index listBoxIndex.Items.Clear(); for (int i = 0; i < checkedListBox.CheckedIndices.Count; i++) listBoxIndex.Items.Add(checkedListBox.CheckedIndices[i]); } } }
VIDEO TUTORIALS
- How to Get value from another Form in C#
- How to make a Notepad in C#
- How to Receive SMS from WhatsApp in C#
- How to Add Combobox to DataGridView in C#
- How to Create Multiple pages on the Form using Panel control in C#
- How to insert Math Equation to RichTextBox in C#
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
Categories
Popular Posts
How to secure ASP.NET Core with NWebSec
11/07/2024
How to create excel file in c# using dataset
11/05/2024
How to download redis for Windows
10/29/2024