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
- SqlBooleanMismatchVisitor.cs
- BamlBinaryReader.cs
- VBIdentifierTrimConverter.cs
- RepeaterItemEventArgs.cs
- MailBnfHelper.cs
- TdsParserStaticMethods.cs
- Random.cs
- XmlSchemaAnyAttribute.cs
- VirtualDirectoryMappingCollection.cs
- XmlTextAttribute.cs
- DrawingGroup.cs
- XamlReaderHelper.cs
- SymDocumentType.cs
- TextContainerChangeEventArgs.cs
- ErrorFormatterPage.cs
- RefreshPropertiesAttribute.cs
- DataGridColumn.cs
- RoutedCommand.cs
- XmlElement.cs
- TransformerInfoCollection.cs
- NodeFunctions.cs
- ListSourceHelper.cs
- KnownTypesProvider.cs
- PolygonHotSpot.cs
- SchemaTypeEmitter.cs
- StackOverflowException.cs
- TypeGeneratedEventArgs.cs
- HttpConfigurationSystem.cs
- EventItfInfo.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- HitTestWithPointDrawingContextWalker.cs
- UserControl.cs
- EnumConverter.cs
- SqlUserDefinedAggregateAttribute.cs
- TogglePattern.cs
- BitmapMetadataEnumerator.cs
- ExpressionBindingCollection.cs
- ViewLoader.cs
- ModelUIElement3D.cs
- InfoCardHelper.cs
- ManagedWndProcTracker.cs
- PnrpPermission.cs
- Frame.cs
- MenuItemCollection.cs
- HttpException.cs
- IisTraceWebEventProvider.cs
- FileDetails.cs
- Gdiplus.cs
- SystemIPGlobalStatistics.cs
- EdmSchemaError.cs
- ForwardPositionQuery.cs
- SafeCoTaskMem.cs
- XmlAggregates.cs
- DataView.cs
- Model3DCollection.cs
- SystemBrushes.cs
- OleDbRowUpdatedEvent.cs
- ResourceReferenceExpression.cs
- WebPageTraceListener.cs
- SolidColorBrush.cs
- TemplateInstanceAttribute.cs
- ReadOnlyAttribute.cs
- Substitution.cs
- Timer.cs
- NotifyParentPropertyAttribute.cs
- XmlSchemaSimpleTypeUnion.cs
- IApplicationTrustManager.cs
- WinFormsUtils.cs
- Stacktrace.cs
- StorageSetMapping.cs
- TransformerConfigurationWizardBase.cs
- ShapeTypeface.cs
- FullTextState.cs
- designeractionlistschangedeventargs.cs
- PointConverter.cs
- CapabilitiesSection.cs
- CultureMapper.cs
- BuildTopDownAttribute.cs
- ToolStripDropDownMenu.cs
- TextViewSelectionProcessor.cs
- TreeNodeStyleCollectionEditor.cs
- Attributes.cs
- DSASignatureFormatter.cs
- TextWriter.cs
- ClientApiGenerator.cs
- SequenceFullException.cs
- SettingsBase.cs
- WebServicesInteroperability.cs
- _SslState.cs
- MenuItem.cs
- DesignerSerializerAttribute.cs
- ImageListDesigner.cs
- XmlEncodedRawTextWriter.cs
- BamlResourceContent.cs
- ComponentChangedEvent.cs
- ChangeBlockUndoRecord.cs
- DataSetViewSchema.cs
- InkPresenter.cs
- DefinitionBase.cs
- SecondaryIndex.cs