Click here to Skip to main content
Sign Up to vote bad
good
See more: C#WinForm
Hello,
I am having a List of type X. X is a Property Level Class.
Now on an event i need the CheckedListBox Selected Items into another List<X>.
 
How to get the output...??
The code i tried is given below...
 
public void Initialize(List<X> x1)
    {
            chkList.DataSource = x1;
            chkList.DisplayMember = "MeterName"; // MeterName is a property in Class X
            chkList.ValueMember = "PortNum"; // PortNum is a property in Class X
    }
 
    private void Click_Event(object sender, EventArgs e)
    {
 
    List<X> x2 = new List<X>();
    // Here I want to get the checkedListBox selected items in x2;
    // How to get it...???

    }
Posted 18 Dec '12 - 18:12


2 solutions

private void Click_Event(object sender, EventArgs e)
    {
 
    var x2 = new List<X>();
    foreach (X item in chkList.CheckedItems)
    {
        x2.Add(item);
    }
}
  Permalink  
Comments
Shahin Khorshidnia - 19 Dec '12 - 1:22
+5
Hi, try this
 List<x> x2 = new List<x>();
foreach (ListItem Ck in chkbl.Items)
        {
            if (Ck.Selected == true)
            {             
            
x2.add(Ck.Text.ToString().Trim()); 
            }
        }
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Mohammed Hameed 268
1 OriginalGriff 236
2 Sergey Alexandrovich Kryukov 198
3 Mayur_Panchal 153
4 CPallini 100
0 Sergey Alexandrovich Kryukov 8,171
1 OriginalGriff 6,236
2 CPallini 3,482
3 Rohan Leuva 2,703
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 19 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid