blah blah blah is here! blah blah » Close

0
votes
0 answers

Observable Collections vs Lists vs INotifyPropertyChanged When Binding

eeboy
335

I am having difficulties with my binding. The problem is that my controls don't properly update/refresh to show what is in the list that I am binding to. This issue came up a while back but I easily worked around it by simply removing the b ...

1
votes
1 answers

Unique Lists

eeboy
335

I want to have a list that will only contain unique entries. The uniqueness will be determined by a GUID. Here is what I was thinking... [code] interface LibraryListItem { Guid Guid { set; get; } } class ...

1
votes
1 answers

XML Deserialize --> Referenced Lists

eeboy
335

Let's say that I have a list of groups and a list of users. Inside groups is a list of users which belong to the group. I want these users to be references to individual users in the user list. So, I've got something like this... [code] ...

0
votes
1 answers

Lists of Lists

eeboy
335

Let's say I have two lists; Users and Groups. Users has the following fields: Name, Email, AccessLevel Groups has the following fields: Name However, Groups should also contain a list of users (a group is defined with multiple users ...

Feedback