Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Collections / Specialized / CollectionChangedEventManager.cs / 1 / CollectionChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CollectionChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.Collections.Specialized { ////// Manager for the INotifyCollectionChanged.CollectionChanged event. /// public class CollectionChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CollectionChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(INotifyCollectionChanged 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) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CollectionChangedEventManager CurrentManager { get { Type managerType = typeof(CollectionChangedEventManager); CollectionChangedEventManager manager = (CollectionChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CollectionChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CollectionChanged event private void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs 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 CollectionChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.Collections.Specialized { ////// Manager for the INotifyCollectionChanged.CollectionChanged event. /// public class CollectionChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CollectionChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(INotifyCollectionChanged 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) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CollectionChangedEventManager CurrentManager { get { Type managerType = typeof(CollectionChangedEventManager); CollectionChangedEventManager manager = (CollectionChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CollectionChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CollectionChanged event private void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs 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
- CompareValidator.cs
- MemberCollection.cs
- DesignBindingValueUIHandler.cs
- StatusBarAutomationPeer.cs
- ConfigXmlComment.cs
- SqlTypeSystemProvider.cs
- ContextStaticAttribute.cs
- XmlDictionaryWriter.cs
- BooleanToVisibilityConverter.cs
- SoapCodeExporter.cs
- ISCIIEncoding.cs
- TableColumnCollectionInternal.cs
- FacetDescription.cs
- ImageCodecInfoPrivate.cs
- ExtendedPropertyCollection.cs
- FileLogRecordHeader.cs
- ProcessInfo.cs
- NodeFunctions.cs
- DefaultBindingPropertyAttribute.cs
- TreeView.cs
- objectquery_tresulttype.cs
- HandlerBase.cs
- HttpListener.cs
- BitmapEffectOutputConnector.cs
- CommentAction.cs
- TableTextElementCollectionInternal.cs
- FileSystemInfo.cs
- WeakKeyDictionary.cs
- SimpleBitVector32.cs
- RenderingEventArgs.cs
- ScriptingWebServicesSectionGroup.cs
- WebHostedComPlusServiceHost.cs
- PathGeometry.cs
- BindingValueChangedEventArgs.cs
- MethodToken.cs
- FrameAutomationPeer.cs
- StorageMappingItemLoader.cs
- GridViewColumnCollectionChangedEventArgs.cs
- MenuEventArgs.cs
- TimeManager.cs
- Table.cs
- BrushConverter.cs
- RegexTree.cs
- Mapping.cs
- VersionUtil.cs
- Cloud.cs
- Helper.cs
- KeyTime.cs
- EdmProviderManifest.cs
- webproxy.cs
- RequestValidator.cs
- SmiRequestExecutor.cs
- MonikerProxyAttribute.cs
- WmlLabelAdapter.cs
- uribuilder.cs
- UIAgentRequest.cs
- FastPropertyAccessor.cs
- ReflectionServiceProvider.cs
- StringInfo.cs
- PresentationTraceSources.cs
- CodeGenerationManager.cs
- QuaternionRotation3D.cs
- HashCodeCombiner.cs
- WebDisplayNameAttribute.cs
- ResXFileRef.cs
- EdgeModeValidation.cs
- ExternalFile.cs
- XmlAttributeCache.cs
- UrlPropertyAttribute.cs
- WebBrowser.cs
- SafeHandles.cs
- CompressStream.cs
- DataConnectionHelper.cs
- AutomationProperties.cs
- TagMapCollection.cs
- FixedFindEngine.cs
- SHA384Managed.cs
- WebConfigurationManager.cs
- TargetException.cs
- HttpRequest.cs
- SystemInfo.cs
- AssociationTypeEmitter.cs
- COM2ICategorizePropertiesHandler.cs
- _AcceptOverlappedAsyncResult.cs
- ValidatingPropertiesEventArgs.cs
- CustomAttributeBuilder.cs
- JsonQNameDataContract.cs
- AdornedElementPlaceholder.cs
- ConnectionConsumerAttribute.cs
- safesecurityhelperavalon.cs
- SqlErrorCollection.cs
- SettingsContext.cs
- ToolStripButton.cs
- WindowsListViewScroll.cs
- ToolStripDesignerAvailabilityAttribute.cs
- LoadRetryConstantStrategy.cs
- IPHostEntry.cs
- Int32KeyFrameCollection.cs
- Transform.cs
- WebRequestModuleElement.cs