Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / LostFocusEventManager.cs / 1305600 / LostFocusEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the LostFocus event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager using MS.Internal; // Helper namespace System.Windows { ////// Manager for the DependencyObject.LostFocus event. /// public class LostFocusEventManager : WeakEventManager { #region Constructors // // Constructors // private LostFocusEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(DependencyObject source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(DependencyObject source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { DependencyObject typedSource = (DependencyObject)source; FrameworkElement fe; FrameworkContentElement fce; Helper.DowncastToFEorFCE(typedSource, out fe, out fce, true); if (fe != null) fe.LostFocus += new RoutedEventHandler(OnLostFocus); else if (fce != null) fce.LostFocus += new RoutedEventHandler(OnLostFocus); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { DependencyObject typedSource = (DependencyObject)source; FrameworkElement fe; FrameworkContentElement fce; Helper.DowncastToFEorFCE(typedSource, out fe, out fce, true); if (fe != null) fe.LostFocus -= new RoutedEventHandler(OnLostFocus); else if (fce != null) fce.LostFocus -= new RoutedEventHandler(OnLostFocus); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static LostFocusEventManager CurrentManager { get { Type managerType = typeof(LostFocusEventManager); LostFocusEventManager manager = (LostFocusEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new LostFocusEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for LostFocus event private void OnLostFocus(object sender, RoutedEventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the LostFocus event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager using MS.Internal; // Helper namespace System.Windows { ////// Manager for the DependencyObject.LostFocus event. /// public class LostFocusEventManager : WeakEventManager { #region Constructors // // Constructors // private LostFocusEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(DependencyObject source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(DependencyObject source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { DependencyObject typedSource = (DependencyObject)source; FrameworkElement fe; FrameworkContentElement fce; Helper.DowncastToFEorFCE(typedSource, out fe, out fce, true); if (fe != null) fe.LostFocus += new RoutedEventHandler(OnLostFocus); else if (fce != null) fce.LostFocus += new RoutedEventHandler(OnLostFocus); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { DependencyObject typedSource = (DependencyObject)source; FrameworkElement fe; FrameworkContentElement fce; Helper.DowncastToFEorFCE(typedSource, out fe, out fce, true); if (fe != null) fe.LostFocus -= new RoutedEventHandler(OnLostFocus); else if (fce != null) fce.LostFocus -= new RoutedEventHandler(OnLostFocus); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static LostFocusEventManager CurrentManager { get { Type managerType = typeof(LostFocusEventManager); LostFocusEventManager manager = (LostFocusEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new LostFocusEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for LostFocus event private void OnLostFocus(object sender, RoutedEventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReflectionUtil.cs
- ObjectCache.cs
- OleDbDataReader.cs
- MenuItem.cs
- ChannelDispatcherBase.cs
- invalidudtexception.cs
- AutomationPatternInfo.cs
- MdiWindowListItemConverter.cs
- Geometry3D.cs
- EntryPointNotFoundException.cs
- ProxyGenerator.cs
- XmlBinaryWriter.cs
- indexingfiltermarshaler.cs
- BaseHashHelper.cs
- BamlLocalizabilityResolver.cs
- VersionPair.cs
- RenderTargetBitmap.cs
- SessionIDManager.cs
- WebServiceBindingAttribute.cs
- InputProcessorProfilesLoader.cs
- UnsafePeerToPeerMethods.cs
- BasicCellRelation.cs
- ToolboxControl.cs
- MdiWindowListStrip.cs
- WebOperationContext.cs
- HostExecutionContextManager.cs
- XmlSchemaException.cs
- LineUtil.cs
- HtmlElementEventArgs.cs
- MimePart.cs
- CollectionViewGroup.cs
- ISAPIApplicationHost.cs
- ConfigurationLocationCollection.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- CapabilitiesSection.cs
- Table.cs
- EntityProviderServices.cs
- AVElementHelper.cs
- MetadataArtifactLoaderFile.cs
- QuerySelectOp.cs
- CompoundFileStorageReference.cs
- ZoomingMessageFilter.cs
- HiddenField.cs
- WindowsMenu.cs
- StringAnimationUsingKeyFrames.cs
- CallInfo.cs
- JoinElimination.cs
- HwndSourceKeyboardInputSite.cs
- XmlSchemaFacet.cs
- TextTrailingCharacterEllipsis.cs
- BindingCompleteEventArgs.cs
- Pen.cs
- TrailingSpaceComparer.cs
- FileLevelControlBuilderAttribute.cs
- XPathAxisIterator.cs
- UndoEngine.cs
- WebOperationContext.cs
- odbcmetadatacolumnnames.cs
- HyperlinkAutomationPeer.cs
- ProviderUtil.cs
- sqlser.cs
- UTF32Encoding.cs
- HeaderCollection.cs
- FormViewUpdateEventArgs.cs
- BufferedStream.cs
- IndentTextWriter.cs
- NonParentingControl.cs
- EntityDataSourceQueryBuilder.cs
- DependsOnAttribute.cs
- XmlSchemaExternal.cs
- ManifestSignatureInformation.cs
- ColumnReorderedEventArgs.cs
- SystemParameters.cs
- safelinkcollection.cs
- SimpleFileLog.cs
- RegexReplacement.cs
- LogLogRecordEnumerator.cs
- Pen.cs
- updateconfighost.cs
- ValidationHelper.cs
- DiscoveryServerProtocol.cs
- HiddenField.cs
- TextServicesDisplayAttribute.cs
- ComponentCollection.cs
- ProxyWebPartConnectionCollection.cs
- ImageConverter.cs
- BitmapEffectState.cs
- ValidationError.cs
- WebPartMovingEventArgs.cs
- AxHost.cs
- FormViewUpdateEventArgs.cs
- EventSinkActivity.cs
- XComponentModel.cs
- DataContractAttribute.cs
- future.cs
- _FtpControlStream.cs
- EndOfStreamException.cs
- QueryStatement.cs
- SubMenuStyle.cs
- ComplexTypeEmitter.cs