Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextContainerChangedEventArgs.cs
- _ProxyRegBlob.cs
- _OSSOCK.cs
- AutomationIdentifierGuids.cs
- SimpleWorkerRequest.cs
- BindingBase.cs
- DataMemberAttribute.cs
- IISMapPath.cs
- X509CertificateClaimSet.cs
- MobileRedirect.cs
- TrustManagerMoreInformation.cs
- Trace.cs
- AdornedElementPlaceholder.cs
- HttpHandlersSection.cs
- UDPClient.cs
- XmlQualifiedName.cs
- DSACryptoServiceProvider.cs
- ProcessHostConfigUtils.cs
- TemplateField.cs
- DataGrid.cs
- FlowDecision.cs
- EntityCommandExecutionException.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- cookiecontainer.cs
- InputDevice.cs
- dataprotectionpermissionattribute.cs
- LinearQuaternionKeyFrame.cs
- ScrollEvent.cs
- Storyboard.cs
- Stack.cs
- TemplateControlParser.cs
- ProfileService.cs
- MailDefinition.cs
- WebServiceMethodData.cs
- _LoggingObject.cs
- DataGridTextBox.cs
- ExtendedProtectionPolicy.cs
- AutomationElementCollection.cs
- FormatVersion.cs
- DataGridSortingEventArgs.cs
- AsyncPostBackTrigger.cs
- GenericUriParser.cs
- WebPartUserCapability.cs
- SystemColors.cs
- XPathException.cs
- MatrixAnimationBase.cs
- DCSafeHandle.cs
- ByteStreamGeometryContext.cs
- CodeSnippetCompileUnit.cs
- IWorkflowDebuggerService.cs
- MailMessage.cs
- LineMetrics.cs
- Vector3DKeyFrameCollection.cs
- CapabilitiesUse.cs
- StateMachineWorkflowDesigner.cs
- Int16AnimationUsingKeyFrames.cs
- SizeConverter.cs
- SafeMemoryMappedViewHandle.cs
- ServiceActivationException.cs
- WorkflowOperationInvoker.cs
- IndentTextWriter.cs
- PaintValueEventArgs.cs
- MessageSmuggler.cs
- SpellerError.cs
- SemanticAnalyzer.cs
- _HeaderInfoTable.cs
- FlowLayout.cs
- TemplateAction.cs
- CacheEntry.cs
- XmlMemberMapping.cs
- ISessionStateStore.cs
- TextEditorCharacters.cs
- CodeVariableReferenceExpression.cs
- DataGridViewColumnTypeEditor.cs
- DependentTransaction.cs
- RelationshipDetailsRow.cs
- FacetValueContainer.cs
- VectorConverter.cs
- CalendarDataBindingHandler.cs
- EditorZone.cs
- RegisteredExpandoAttribute.cs
- SingleObjectCollection.cs
- PageSettings.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ThreadPoolTaskScheduler.cs
- MobileControlBuilder.cs
- MatrixCamera.cs
- OpenFileDialog.cs
- SiteMapNodeItem.cs
- TabItemWrapperAutomationPeer.cs
- XmlSchemaValidator.cs
- GenericArgumentsUpdater.cs
- AnimationTimeline.cs
- TargetParameterCountException.cs
- StatusBarPanel.cs
- HtmlButton.cs
- DesignerWidgets.cs
- SingleConverter.cs
- IgnoreDataMemberAttribute.cs
- TransportSecurityHelpers.cs