Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / LostFocusEventManager.cs / 1 / 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) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(DependencyObject source, IWeakEventListener 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) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(DependencyObject source, IWeakEventListener 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
- DrawingContext.cs
- EmptyControlCollection.cs
- IndicFontClient.cs
- util.cs
- RadioButton.cs
- SqlInternalConnectionTds.cs
- ComponentCodeDomSerializer.cs
- KeyToListMap.cs
- altserialization.cs
- QueryStringHandler.cs
- PasswordTextNavigator.cs
- DateTimeUtil.cs
- NetworkInformationException.cs
- SectionVisual.cs
- XmlBaseReader.cs
- InputBuffer.cs
- XmlNodeChangedEventArgs.cs
- AddressUtility.cs
- HttpFileCollection.cs
- HotSpotCollection.cs
- X509Extension.cs
- InputMethodStateTypeInfo.cs
- ClrProviderManifest.cs
- DefaultValueTypeConverter.cs
- XmlStreamStore.cs
- ComponentSerializationService.cs
- BindingUtils.cs
- ListViewUpdateEventArgs.cs
- FormsAuthenticationUserCollection.cs
- GroupBoxAutomationPeer.cs
- XmlDataSourceNodeDescriptor.cs
- ApplicationHost.cs
- EdmItemCollection.cs
- ItemsPanelTemplate.cs
- TextParagraph.cs
- ScaleTransform3D.cs
- CompiledXpathExpr.cs
- XmlBoundElement.cs
- GlyphCache.cs
- RegistrySecurity.cs
- KeyedCollection.cs
- EmbeddedObject.cs
- Soap.cs
- Expression.cs
- __FastResourceComparer.cs
- SerializerProvider.cs
- AssertSection.cs
- InstanceDataCollectionCollection.cs
- LinearGradientBrush.cs
- TabControlCancelEvent.cs
- KeyPressEvent.cs
- MimeFormImporter.cs
- _Connection.cs
- ProcessHostConfigUtils.cs
- ReadOnlyPropertyMetadata.cs
- PreviewKeyDownEventArgs.cs
- CaseInsensitiveComparer.cs
- StructuredTypeInfo.cs
- FunctionDefinition.cs
- Int16Animation.cs
- XslCompiledTransform.cs
- SqlSelectStatement.cs
- Walker.cs
- DoubleMinMaxAggregationOperator.cs
- QilVisitor.cs
- InfoCardSymmetricAlgorithm.cs
- SessionStateUtil.cs
- DefaultMemberAttribute.cs
- SymbolEqualComparer.cs
- ADMembershipUser.cs
- ConnectionProviderAttribute.cs
- ToolBar.cs
- UnregisterInfo.cs
- DPTypeDescriptorContext.cs
- SessionState.cs
- StorageModelBuildProvider.cs
- DrawingServices.cs
- LocalValueEnumerator.cs
- ObjectListShowCommandsEventArgs.cs
- DataGridItemCollection.cs
- Rotation3D.cs
- ProgressBarHighlightConverter.cs
- SR.cs
- XsdValidatingReader.cs
- SafeTimerHandle.cs
- SamlSubject.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- NavigationProgressEventArgs.cs
- CodeDomConfigurationHandler.cs
- QuaternionRotation3D.cs
- GPPOINTF.cs
- Soap12ProtocolImporter.cs
- ValidationSummary.cs
- InfoCardBaseException.cs
- PageParserFilter.cs
- WorkflowPageSetupDialog.cs
- Shape.cs
- ResXBuildProvider.cs
- SelectionProcessor.cs
- XmlCharCheckingWriter.cs