I have a check list box in wpf. With some email ids populated using public ObservableCollection<BoolStringClass> TheList { get; set; }
method at runtime.
When user save the record the selecetd email ids are saved in database(123@gmail.com;456@yahoo.co.in;789@rediff.com).. and so on with comma separated.
Now when I want to reload the data on to controls from database, how can I keep checked the items stored in database ? In windows forms its easy to achieve this, but how this can be done in wpf?