Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / ComponentModel / CurrentChangedEventManager.cs / 1305600 / CurrentChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CurrentChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanged event. /// public class CurrentChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(ICollectionView source, IWeakEventListener listener) { if (source == null) throw new ArgumentNullException("source"); if (listener == null) throw new ArgumentNullException("listener"); CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(ICollectionView source, IWeakEventListener listener) { /* for app-compat, allow RemoveListener(null, x) - it's a no-op (see Dev10 796788) 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) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanged += new EventHandler(OnCurrentChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanged -= new EventHandler(OnCurrentChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangedEventManager CurrentManager { get { Type managerType = typeof(CurrentChangedEventManager); CurrentChangedEventManager manager = (CurrentChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanged event private void OnCurrentChanged(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
- FlowDocumentPaginator.cs
- SqlNotificationRequest.cs
- StateMachineHistory.cs
- MenuItemCollection.cs
- PenThreadPool.cs
- EqualityComparer.cs
- RuleSettingsCollection.cs
- ScopelessEnumAttribute.cs
- RoleManagerEventArgs.cs
- TableItemStyle.cs
- DataConnectionHelper.cs
- XmlReaderSettings.cs
- CaseInsensitiveOrdinalStringComparer.cs
- FileInfo.cs
- DefaultBinder.cs
- ActivityDesignerLayoutSerializers.cs
- SharedHttpTransportManager.cs
- ProcessModelSection.cs
- XhtmlBasicControlAdapter.cs
- PropertyManager.cs
- RangeBase.cs
- MetadataCacheItem.cs
- StylusPoint.cs
- ClientSettingsSection.cs
- EqualityArray.cs
- MatrixConverter.cs
- SolidColorBrush.cs
- TextEditorCharacters.cs
- ObjectPersistData.cs
- DbDataReader.cs
- TextBoxRenderer.cs
- IPipelineRuntime.cs
- CodeIndexerExpression.cs
- QueryContinueDragEventArgs.cs
- ApplicationFileParser.cs
- NonVisualControlAttribute.cs
- ReceiveActivity.cs
- ToolstripProfessionalRenderer.cs
- TdsParserHelperClasses.cs
- LinearGradientBrush.cs
- DiscoveryMessageSequence.cs
- DateTimePicker.cs
- BamlResourceDeserializer.cs
- DocumentPageTextView.cs
- XmlSerializer.cs
- CookieHandler.cs
- WebBaseEventKeyComparer.cs
- RuleSetDialog.cs
- tibetanshape.cs
- CaseStatement.cs
- DataServiceStreamProviderWrapper.cs
- AbsoluteQuery.cs
- LinkLabel.cs
- And.cs
- TextElementEditingBehaviorAttribute.cs
- DesignerObject.cs
- JapaneseLunisolarCalendar.cs
- SchemaObjectWriter.cs
- TableLayoutPanelResizeGlyph.cs
- ViewPort3D.cs
- Sentence.cs
- ClassDataContract.cs
- ImageConverter.cs
- TextCharacters.cs
- DbProviderServices.cs
- SmtpMail.cs
- XmlQueryContext.cs
- PageCatalogPart.cs
- RemoteEndpointMessageProperty.cs
- URL.cs
- RefreshResponseInfo.cs
- ConfigXmlReader.cs
- ReferenceAssemblyAttribute.cs
- BulletChrome.cs
- MetadataArtifactLoaderCompositeFile.cs
- QueueAccessMode.cs
- ComponentConverter.cs
- _BasicClient.cs
- SafeCancelMibChangeNotify.cs
- PropertyRef.cs
- FileDialogPermission.cs
- ComponentEvent.cs
- coordinatorfactory.cs
- uribuilder.cs
- UTF7Encoding.cs
- FtpWebResponse.cs
- FillRuleValidation.cs
- GenericAuthenticationEventArgs.cs
- OverflowException.cs
- OracleSqlParser.cs
- AssemblyBuilder.cs
- SelectedGridItemChangedEvent.cs
- ValueSerializer.cs
- GlyphElement.cs
- DataStreams.cs
- ProcessModelInfo.cs
- followingsibling.cs
- ToolboxBitmapAttribute.cs
- CqlLexerHelpers.cs
- TextPattern.cs