Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / ComponentModel / CurrentChangingEventManager.cs / 1305600 / CurrentChangingEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CurrentChanging event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // ICollectionView.CurrentChanging using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanging event. /// public class CurrentChangingEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangingEventManager() { } #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.CurrentChanging += new CurrentChangingEventHandler(OnCurrentChanging); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanging -= new CurrentChangingEventHandler(OnCurrentChanging); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangingEventManager CurrentManager { get { Type managerType = typeof(CurrentChangingEventManager); CurrentChangingEventManager manager = (CurrentChangingEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangingEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanging event private void OnCurrentChanging(object sender, CurrentChangingEventArgs 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 CurrentChanging event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // ICollectionView.CurrentChanging using System.Windows; // WeakEventManager namespace System.ComponentModel { ////// Manager for the ICollectionView.CurrentChanging event. /// public class CurrentChangingEventManager : WeakEventManager { #region Constructors // // Constructors // private CurrentChangingEventManager() { } #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.CurrentChanging += new CurrentChangingEventHandler(OnCurrentChanging); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { ICollectionView typedSource = (ICollectionView)source; typedSource.CurrentChanging -= new CurrentChangingEventHandler(OnCurrentChanging); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CurrentChangingEventManager CurrentManager { get { Type managerType = typeof(CurrentChangingEventManager); CurrentChangingEventManager manager = (CurrentChangingEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CurrentChangingEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CurrentChanging event private void OnCurrentChanging(object sender, CurrentChangingEventArgs 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
- WebBrowserDesigner.cs
- XPathPatternBuilder.cs
- TextTreeTextBlock.cs
- DateTimeFormatInfo.cs
- MSAAEventDispatcher.cs
- HttpModuleActionCollection.cs
- MenuItemStyleCollection.cs
- Matrix3D.cs
- VirtualDirectoryMappingCollection.cs
- MemoryRecordBuffer.cs
- Preprocessor.cs
- WebEvents.cs
- GeometryHitTestResult.cs
- OleDbConnection.cs
- ConfigXmlSignificantWhitespace.cs
- HostExecutionContextManager.cs
- Condition.cs
- IndexerNameAttribute.cs
- PrimitiveXmlSerializers.cs
- TrustLevel.cs
- OdbcDataAdapter.cs
- DocumentPaginator.cs
- PeerResolver.cs
- FixedSOMTextRun.cs
- connectionpool.cs
- GridErrorDlg.cs
- DictionaryKeyPropertyAttribute.cs
- TextDocumentView.cs
- ThicknessConverter.cs
- ImageField.cs
- CompiledQueryCacheKey.cs
- GridEntry.cs
- CodeCommentStatementCollection.cs
- DataKeyCollection.cs
- HttpContext.cs
- ImageAnimator.cs
- ProxyAttribute.cs
- DictionarySectionHandler.cs
- EnumerationRangeValidationUtil.cs
- ListItemCollection.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- NetworkInterface.cs
- CrossContextChannel.cs
- HighlightComponent.cs
- SQLBytesStorage.cs
- remotingproxy.cs
- JsonDeserializer.cs
- TypeLibConverter.cs
- CornerRadius.cs
- HttpModuleCollection.cs
- EventDescriptorCollection.cs
- VectorCollectionValueSerializer.cs
- CompressEmulationStream.cs
- ProfilePropertySettingsCollection.cs
- SaveFileDialog.cs
- XmlConvert.cs
- SmtpFailedRecipientException.cs
- COM2Properties.cs
- ViewGenResults.cs
- EventHandlers.cs
- SplashScreen.cs
- WindowsTreeView.cs
- BoundPropertyEntry.cs
- M3DUtil.cs
- CultureInfo.cs
- _StreamFramer.cs
- safelink.cs
- WmlCalendarAdapter.cs
- SimpleType.cs
- ViewSimplifier.cs
- FrugalList.cs
- ControlPaint.cs
- LexicalChunk.cs
- QuaternionRotation3D.cs
- TypeElement.cs
- ByteAnimation.cs
- VectorAnimationUsingKeyFrames.cs
- TextEndOfLine.cs
- SemaphoreSecurity.cs
- ErrorHandlingAcceptor.cs
- GridItemPatternIdentifiers.cs
- BufferBuilder.cs
- PathFigureCollectionValueSerializer.cs
- CuspData.cs
- MenuItem.cs
- ComponentConverter.cs
- RoleManagerSection.cs
- Label.cs
- DataSourceView.cs
- VectorCollectionValueSerializer.cs
- CriticalExceptions.cs
- FloatMinMaxAggregationOperator.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- WindowsListViewItemCheckBox.cs
- EntityClassGenerator.cs
- RouteParser.cs
- __ComObject.cs
- FontDriver.cs
- ObjectQueryProvider.cs
- HttpListenerRequest.cs