This topic has not yet been rated - Rate this topic

LostFocusEventManager Class

Provides a WeakEventManager implementation so that you can use the "weak event listener" pattern to attach listeners for the UIElement.LostFocus or ContentElement.LostFocus events.

System.Object
  System.Windows.Threading.DispatcherObject
    System.Windows.WeakEventManager
      System.Windows.LostFocusEventManager

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
public class LostFocusEventManager : WeakEventManager

The LostFocusEventManager type exposes the following members.

  Name Description
Public property Dispatcher Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject.)
Protected property Item Gets or sets the data being stored for the specified source. (Inherited from WeakEventManager.)
Protected property ReadLock Establishes a read-lock on the underlying data table, and returns an IDisposable. (Inherited from WeakEventManager.)
Protected property WriteLock Establishes a write-lock on the underlying data table, and returns an IDisposable. (Inherited from WeakEventManager.)
Top
  Name Description
Public method Static member AddListener Adds the provided listener to the list of listeners on the provided source.
Public method CheckAccess Determines whether the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject.)
Protected method DeliverEvent Delivers the event being managed to each listener. (Inherited from WeakEventManager.)
Protected method DeliverEventToList Delivers the event being managed to each listener in the provided list. (Inherited from WeakEventManager.)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method ProtectedAddListener Adds the provided listener to the provided source for the event being managed. (Inherited from WeakEventManager.)
Protected method ProtectedRemoveListener Removes a previously added listener from the provided source. (Inherited from WeakEventManager.)
Protected method Purge Removes inactive listener entries from the data list for the provided source. Returns true if some entries were actually removed from the list. (Inherited from WeakEventManager.)
Protected method Remove Removes all listeners for the specified source. (Inherited from WeakEventManager.)
Public method Static member RemoveListener Removes the specified listener from the list of listeners on the provided source.
Protected method ScheduleCleanup Requests that a purge of unused entries in the underlying listener list be performed on a lower priority thread. (Inherited from WeakEventManager.)
Protected method StartListening Begins listening for the LostFocus event on the given source, attaching an internal class handler to that source. (Overrides WeakEventManager.StartListening(Object).)
Protected method StopListening Stops listening for the LostFocus event on the given source. (Overrides WeakEventManager.StopListening(Object).)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method VerifyAccess Enforces that the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject.)
Top

In order to be listeners in this pattern, your listener objects must implement IWeakEventListener. You do not need to implement IWeakEventListener on the class that is the source of the events.

WPF data binding uses this WeakEventManager so that internal classes that update bindings can attach listeners for a UIElement.LostFocus or ContentElement.LostFocus event on an object that is the target of a binding. This supports notification for the LostFocus mode of data binding, without creating strong references to data binding targets.

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ