Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- SecurityCapabilities.cs
- XmlWrappingReader.cs
- hresults.cs
- HtmlButton.cs
- ListViewDeleteEventArgs.cs
- XD.cs
- DispatchChannelSink.cs
- FileDialog_Vista_Interop.cs
- OdbcConnectionHandle.cs
- AcceleratedTokenProviderState.cs
- TypeInformation.cs
- GridViewDeletedEventArgs.cs
- SiteMapNodeCollection.cs
- RtfToken.cs
- MediaScriptCommandRoutedEventArgs.cs
- GridViewUpdateEventArgs.cs
- MenuItemStyleCollectionEditor.cs
- HtmlTableCell.cs
- HtmlContainerControl.cs
- ListItemCollection.cs
- RtfControls.cs
- WinFormsSpinner.cs
- Page.cs
- DrawingCollection.cs
- PrincipalPermission.cs
- BaseDataBoundControlDesigner.cs
- updateconfighost.cs
- StylusPointProperties.cs
- Assert.cs
- Signature.cs
- Int32Storage.cs
- TagPrefixCollection.cs
- CompositionAdorner.cs
- ContextMarshalException.cs
- CellQuery.cs
- StreamInfo.cs
- ServerIdentity.cs
- WebServiceReceive.cs
- ByteAnimationUsingKeyFrames.cs
- ExpressionBuilderContext.cs
- SelectedDatesCollection.cs
- HttpCookiesSection.cs
- Task.cs
- Argument.cs
- DataGridViewBand.cs
- XmlElementAttribute.cs
- ControllableStoryboardAction.cs
- Trace.cs
- AttachedPropertyDescriptor.cs
- DeploymentExceptionMapper.cs
- PageAsyncTask.cs
- SinglePhaseEnlistment.cs
- SystemEvents.cs
- SchemaDeclBase.cs
- CookieParameter.cs
- ProxyWebPartConnectionCollection.cs
- CancelEventArgs.cs
- ClientCultureInfo.cs
- ArraySegment.cs
- CroppedBitmap.cs
- Translator.cs
- WebPartConnection.cs
- VariableExpressionConverter.cs
- MessageVersionConverter.cs
- CodeIndexerExpression.cs
- COM2FontConverter.cs
- Int32AnimationBase.cs
- BookmarkEventArgs.cs
- AtomEntry.cs
- StringUtil.cs
- AnnotationObservableCollection.cs
- TemplateBaseAction.cs
- ItemsControl.cs
- ObjectDataProvider.cs
- WebPartZoneCollection.cs
- SchemeSettingElementCollection.cs
- TypeUtils.cs
- UserPreferenceChangedEventArgs.cs
- WorkflowDebuggerSteppingAttribute.cs
- DBSchemaRow.cs
- TextSearch.cs
- ClassicBorderDecorator.cs
- XmlException.cs
- PackageProperties.cs
- AutomationElementCollection.cs
- QuaternionAnimationBase.cs
- SamlAuthorizationDecisionStatement.cs
- PkcsUtils.cs
- GridSplitterAutomationPeer.cs
- EntityContainerEmitter.cs
- MarginsConverter.cs
- ActivityExecutionContext.cs
- FileDialogCustomPlaces.cs
- X509Certificate2.cs
- TableLayout.cs
- ColorAnimationUsingKeyFrames.cs
- OleDbInfoMessageEvent.cs
- TcpTransportSecurity.cs
- TimeSpanValidatorAttribute.cs
- WebScriptEnablingBehavior.cs