Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- AnnotationService.cs
- FileAuthorizationModule.cs
- KeyValueConfigurationCollection.cs
- Base64Decoder.cs
- QuotedPairReader.cs
- GridItem.cs
- MachineKeySection.cs
- HandlerBase.cs
- RadioButtonPopupAdapter.cs
- LinkAreaEditor.cs
- SchemaNamespaceManager.cs
- HtmlSelect.cs
- CreateRefExpr.cs
- _Win32.cs
- ContextStack.cs
- Token.cs
- CompositeDataBoundControl.cs
- VersionedStreamOwner.cs
- FontFamilyValueSerializer.cs
- SpeechDetectedEventArgs.cs
- RequestQueue.cs
- BitmapSizeOptions.cs
- ChangeTracker.cs
- DataServiceQueryOfT.cs
- BitmapEffect.cs
- SymbolPair.cs
- WCFModelStrings.Designer.cs
- AppDomainProtocolHandler.cs
- RightsManagementPermission.cs
- Vector3DValueSerializer.cs
- MailBnfHelper.cs
- Menu.cs
- EntityDataSourceStatementEditor.cs
- PointAnimationUsingPath.cs
- DefaultMemberAttribute.cs
- ChineseLunisolarCalendar.cs
- HttpsHostedTransportConfiguration.cs
- BitmapData.cs
- KnownTypesHelper.cs
- CodeComment.cs
- Crc32.cs
- DataGridViewCellLinkedList.cs
- DetailsViewRowCollection.cs
- URLString.cs
- BaseValidatorDesigner.cs
- StringUtil.cs
- ParseHttpDate.cs
- FlowSwitchDesigner.xaml.cs
- SpeakCompletedEventArgs.cs
- ListContractAdapter.cs
- PagesSection.cs
- baseaxisquery.cs
- CustomWebEventKey.cs
- DependencyProperty.cs
- PictureBox.cs
- TextServicesDisplayAttribute.cs
- EntityClassGenerator.cs
- XPathNodeHelper.cs
- ObjectDataSource.cs
- SQLRoleProvider.cs
- EventRecordWrittenEventArgs.cs
- Component.cs
- FontSourceCollection.cs
- SerializationInfo.cs
- SystemResourceKey.cs
- BasicKeyConstraint.cs
- InvokePatternIdentifiers.cs
- BasicKeyConstraint.cs
- RenderDataDrawingContext.cs
- StrokeNodeOperations2.cs
- UserNamePasswordValidator.cs
- SQLMoney.cs
- FlowDocumentPaginator.cs
- ControlIdConverter.cs
- DecimalFormatter.cs
- oledbmetadatacolumnnames.cs
- QilChoice.cs
- DbConnectionInternal.cs
- Util.cs
- WindowsToolbar.cs
- DbProviderConfigurationHandler.cs
- TransactionTable.cs
- SystemMulticastIPAddressInformation.cs
- UIElement3D.cs
- ProfileSettingsCollection.cs
- DocumentXPathNavigator.cs
- CommonDialog.cs
- BuildProviderUtils.cs
- ActivityDesignerResources.cs
- MembershipPasswordException.cs
- LineVisual.cs
- RegionData.cs
- FontEditor.cs
- FormatConvertedBitmap.cs
- XamlSerializer.cs
- EmbeddedMailObjectsCollection.cs
- AutomationPropertyInfo.cs
- CfgRule.cs
- wpf-etw.cs
- CodeDomDecompiler.cs