Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / MS / Internal / InheritanceContextChangedEventManager.cs / 1305600 / InheritanceContextChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the InheritanceContextChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; // WeakEventManager using MS.Internal.WindowsBase; // [FriendAccessAllowed] namespace MS.Internal { ////// Manager for the DependencyObject.InheritanceContextChanged event. /// [FriendAccessAllowed] internal class InheritanceContextChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private InheritanceContextChangedEventManager() { } #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"); // Freezable.Freeze() relies on the assumption that a frozen Freezable // has no listeners. This is because Freeze() fails if the Freezable // has any Expressions on it, and only Expressions ever listen // to the InheritanceContextChanged event. Debug.Assert(listener is Expression); 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; typedSource.InheritanceContextChanged += new EventHandler(OnInheritanceContextChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { DependencyObject typedSource = (DependencyObject)source; typedSource.InheritanceContextChanged -= new EventHandler(OnInheritanceContextChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static InheritanceContextChangedEventManager CurrentManager { get { Type managerType = typeof(InheritanceContextChangedEventManager); InheritanceContextChangedEventManager manager = (InheritanceContextChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new InheritanceContextChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for InheritanceContextChanged event private void OnInheritanceContextChanged(object sender, EventArgs 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 InheritanceContextChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; // WeakEventManager using MS.Internal.WindowsBase; // [FriendAccessAllowed] namespace MS.Internal { ////// Manager for the DependencyObject.InheritanceContextChanged event. /// [FriendAccessAllowed] internal class InheritanceContextChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private InheritanceContextChangedEventManager() { } #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"); // Freezable.Freeze() relies on the assumption that a frozen Freezable // has no listeners. This is because Freeze() fails if the Freezable // has any Expressions on it, and only Expressions ever listen // to the InheritanceContextChanged event. Debug.Assert(listener is Expression); 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; typedSource.InheritanceContextChanged += new EventHandler(OnInheritanceContextChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { DependencyObject typedSource = (DependencyObject)source; typedSource.InheritanceContextChanged -= new EventHandler(OnInheritanceContextChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static InheritanceContextChangedEventManager CurrentManager { get { Type managerType = typeof(InheritanceContextChangedEventManager); InheritanceContextChangedEventManager manager = (InheritanceContextChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new InheritanceContextChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for InheritanceContextChanged event private void OnInheritanceContextChanged(object sender, EventArgs 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
- RealProxy.cs
- DataGridGeneralPage.cs
- DataGridSortCommandEventArgs.cs
- RightsManagementPermission.cs
- LineServicesCallbacks.cs
- RuleSettings.cs
- _NetworkingPerfCounters.cs
- LineGeometry.cs
- Classification.cs
- Function.cs
- BrushMappingModeValidation.cs
- BufferedStream.cs
- DesignerActionList.cs
- TextSpanModifier.cs
- CodeCastExpression.cs
- FormCollection.cs
- TextTreeInsertElementUndoUnit.cs
- InheritedPropertyChangedEventArgs.cs
- EncoderReplacementFallback.cs
- TemplateManager.cs
- peernodeimplementation.cs
- ImageBrush.cs
- ProjectionPathBuilder.cs
- LocalizeDesigner.cs
- ControllableStoryboardAction.cs
- SqlException.cs
- ChangeInterceptorAttribute.cs
- SchemaDeclBase.cs
- DragEvent.cs
- WinFormsUtils.cs
- DataGridToolTip.cs
- Codec.cs
- HttpCookieCollection.cs
- HtmlTernaryTree.cs
- XmlTypeMapping.cs
- SQlBooleanStorage.cs
- ConfigPathUtility.cs
- EventHandlerList.cs
- SaveFileDialog.cs
- XamlPoint3DCollectionSerializer.cs
- DefaultHttpHandler.cs
- RemotingConfigParser.cs
- ColumnTypeConverter.cs
- MemoryFailPoint.cs
- MemoryRecordBuffer.cs
- PageSetupDialog.cs
- SqlErrorCollection.cs
- CompositeFontFamily.cs
- FrameworkContentElement.cs
- GridViewUpdateEventArgs.cs
- HtmlTableRowCollection.cs
- RuleSettings.cs
- Int16Animation.cs
- WebPartTransformerAttribute.cs
- TextEncodedRawTextWriter.cs
- MarginsConverter.cs
- XmlSchemaProviderAttribute.cs
- XmlBindingWorker.cs
- CroppedBitmap.cs
- InternalConfigHost.cs
- UnsafeNativeMethods.cs
- GcHandle.cs
- ClientEventManager.cs
- InlineCollection.cs
- SafeHandle.cs
- EventLogger.cs
- SurrogateEncoder.cs
- Accessible.cs
- ListItemsPage.cs
- DataFormats.cs
- ContractTypeNameCollection.cs
- RootContext.cs
- WindowsAuthenticationModule.cs
- VerticalAlignConverter.cs
- ObjectSecurity.cs
- StrokeFIndices.cs
- MemoryMappedView.cs
- BitmapEncoder.cs
- HTTPNotFoundHandler.cs
- ArglessEventHandlerProxy.cs
- ExpressionBuilder.cs
- WebServiceErrorEvent.cs
- InteropExecutor.cs
- NetworkAddressChange.cs
- ObjectConverter.cs
- ExpressionBuilder.cs
- MemberAccessException.cs
- RouteParser.cs
- InputLangChangeRequestEvent.cs
- SqlParameterCollection.cs
- CodeEntryPointMethod.cs
- MultiSelector.cs
- HttpCookie.cs
- FontStretches.cs
- MouseGesture.cs
- EdmEntityTypeAttribute.cs
- HttpListenerElement.cs
- TransformValueSerializer.cs
- updatecommandorderer.cs
- XmlDataProvider.cs