X türünde bir liste yaşıyorum X, bir özellik düzeyi sınıfıdır. Artık bir olayda CheckedListBox Seçilen Öğeleri başka bir listeye ihtiyacım var.CheckedListBox Seçilen Öğeleri Listeye Nasıl Alınır <X> ...?
Çıktı nasıl alınır? i aşağıda verilmiştir çalıştı kodu ...
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...???
}
web projesidir? windows uygulaması? –
Windows uygulama arkadaşı ... –
Olası kopyası [Bir Öğe Koleksiyonunu bir liste kutusundan genel listeye dökme] (http://stackoverflow.com/questions/471595/casting-an-item-collection-from-a-listbox -to-a-jenerik-liste) –