Do I need to unbind items as the item disappears in order to prevent memory leaks? I guess I\'m just a little worried that if I reload and a new template is applied to a con
From http://msdn.microsoft.com/en-us/library/aa970850.aspx, WPF uses Weak Event Patterns, which do not hold strong references to objects and allow them to be GC'ed if they are the only references to an object.
"Many aspects of WPF data binding already have the weak event pattern applied in how the events are implemented."