Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResourcePart.cs
- ToolStripDropDownClosingEventArgs.cs
- Int16AnimationBase.cs
- LastQueryOperator.cs
- DesignerDataSourceView.cs
- LicFileLicenseProvider.cs
- BaseParser.cs
- ConfigurationPropertyCollection.cs
- CompilerWrapper.cs
- ReadOnlyCollectionBuilder.cs
- PingReply.cs
- DesignerForm.cs
- CategoryGridEntry.cs
- ActionItem.cs
- Registry.cs
- DeferredSelectedIndexReference.cs
- Rights.cs
- MessageFormatterConverter.cs
- DataControlImageButton.cs
- Buffer.cs
- DrawingImage.cs
- ViewLoader.cs
- NotCondition.cs
- CollectionBuilder.cs
- HotSpot.cs
- BinaryReader.cs
- TreeNodeBinding.cs
- StylusButtonCollection.cs
- WebServiceMethodData.cs
- FixedSOMContainer.cs
- RoleManagerSection.cs
- TripleDESCryptoServiceProvider.cs
- EntityDesignerBuildProvider.cs
- IndependentlyAnimatedPropertyMetadata.cs
- XmlJsonWriter.cs
- CopyAction.cs
- CodeDirectoryCompiler.cs
- ConditionValidator.cs
- DiscreteKeyFrames.cs
- CollectionView.cs
- BitmapScalingModeValidation.cs
- listviewsubitemcollectioneditor.cs
- StringConcat.cs
- BinaryVersion.cs
- WebPartActionVerb.cs
- ResizeGrip.cs
- XmlSerializer.cs
- _ListenerResponseStream.cs
- WebServiceParameterData.cs
- TracedNativeMethods.cs
- SspiSecurityTokenProvider.cs
- RangeValueProviderWrapper.cs
- EntityWithChangeTrackerStrategy.cs
- ListViewTableCell.cs
- ColorTransformHelper.cs
- XdrBuilder.cs
- ScriptResourceDefinition.cs
- Composition.cs
- XamlReader.cs
- TracePayload.cs
- SectionInput.cs
- counter.cs
- DirectoryNotFoundException.cs
- CommonObjectSecurity.cs
- Bitmap.cs
- AppDomainFactory.cs
- CryptoApi.cs
- CookieParameter.cs
- StreamGeometry.cs
- DeclarationUpdate.cs
- XmlUTF8TextReader.cs
- Roles.cs
- GroupItem.cs
- WebPartTracker.cs
- XmlAttributeProperties.cs
- HttpPostServerProtocol.cs
- ListViewUpdatedEventArgs.cs
- regiisutil.cs
- IpcManager.cs
- HotSpotCollectionEditor.cs
- TPLETWProvider.cs
- IisHelper.cs
- ClientOptions.cs
- TablePattern.cs
- StreamInfo.cs
- Decoder.cs
- DesignerAdapterAttribute.cs
- WindowsRebar.cs
- SHA384.cs
- XmlSchemaSimpleTypeRestriction.cs
- GenericTextProperties.cs
- ToolStripDesignerAvailabilityAttribute.cs
- DataGridTextBox.cs
- SafeBitVector32.cs
- TextCollapsingProperties.cs
- FtpCachePolicyElement.cs
- __Filters.cs
- TextTreeNode.cs
- ProfileGroupSettings.cs
- XmlTextReader.cs