Tagged Questions

Events that don't hold strong references to their subscribers.

learn more… | top users | synonyms

6
votes
2answers
380 views

Do WPF controls use weak events in their bindings?

When I use databinding in WPF, my target controls are listening for events on the binding source. For example, I may have a ListView listening for CollectionChanged events on a ObservableCollection. ...
6
votes
2answers
1k views

Example implementation of weak events using .NET's WeakEventManager

Is there an example implementation of weak events using .NET's WeakEventManager? I'm trying to implement it by following the "Notes to Inheritors" in the documentation, but it is vague. For example, ...
5
votes
1answer
61 views

What's a good implementation of weak events for silverlight?

I'm after a good implementation of the weak event patterns for Silverlight to avoid memory leaks. There seem to be a few implementations out there but the code is not trivial and it's hard to know ...
4
votes
3answers
3k views

What is the “Weak Event” pattern used in WPF applications?

The WindowsBase DLL defines the IWeakEventListener event with summary: Provides event listening support for classes that expect to receive events through the WeakEvent pattern and a ...
3
votes
2answers
121 views

WeakEvent garbage collection in C#

I'm thinking today at the following scenario: I have two classes A and B. A exposes an event E. B subscribes to this event "E", using a weak event handler "W". After a while nobody holds any ...
2
votes
1answer
661 views

Using WeakEventManager in Windows.Forms application

When using weak events as described here http://wekempf.spaces.live.com/blog/cns!D18C3EC06EA971CF!373.entry in a Windows.Forms application the WeakEventManager leaks WeakReference objects. I think ...
0
votes
0answers
24 views

Is there any safe non-leaky pattern for an abandonable user of an INotifyPropertyChanged?

Is there any pattern by which a consumer of an INotifyPropertyChanged can avoid memory leaks even in circumstances where an arbitrary number of instances of the consumer may be created during the ...
0
votes
2answers
393 views

C# language: why WeakReference or Weak Event Pattern?

I'm reading "The C# Language", 4th edition, it talks about WeakReference and Weak Event Pattern: CHRISTIAN NAGEL: Memory leaks often result from wrong usage of events. If client objects attach to ...