Hello, all
I use WpfCollectionTypeFactory to my project, so IList<T> collection
in my project has CollectionChanged enevt, it's work like
ObservableCollection<T>.
but I have other question:
I want do something on IList<T> is Changed, can i do it?
code like follow:
public class parent
{
public int ID { get; set; }
public string Name { get; set;}
public IList<child> Childs { get; set; }
public void DoSomethingWhenChildsIsChanged()
{
}
}
public class child
{
public int ID { get; set; }
public string Name { get; set;}
public parent Parent { get; set;}
}
Best Regards,
Litgle.
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.