Code:
/ 4.0 / 4.0 / 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. //---------------------------------------------------------------------------- // //// 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
- iisPickupDirectory.cs
- InvalidPropValue.cs
- StylusPointPropertyInfo.cs
- NTAccount.cs
- TableProvider.cs
- SqlFlattener.cs
- FixedSOMPage.cs
- DefaultPropertyAttribute.cs
- MenuItemCollection.cs
- ProcessHostFactoryHelper.cs
- DbProviderConfigurationHandler.cs
- BufferBuilder.cs
- ToolboxComponentsCreatingEventArgs.cs
- EncryptedType.cs
- PreviewPrintController.cs
- UnsafeNativeMethodsMilCoreApi.cs
- DuplexChannelFactory.cs
- ControlPaint.cs
- SortedList.cs
- Version.cs
- DBConcurrencyException.cs
- ObsoleteAttribute.cs
- TextControlDesigner.cs
- HttpDigestClientElement.cs
- NonBatchDirectoryCompiler.cs
- GAC.cs
- Privilege.cs
- CodeMemberField.cs
- AsymmetricCryptoHandle.cs
- InputProcessorProfilesLoader.cs
- CodeTypeOfExpression.cs
- ListViewTableRow.cs
- CharKeyFrameCollection.cs
- SslStream.cs
- TextWriterTraceListener.cs
- AudioDeviceOut.cs
- SessionSwitchEventArgs.cs
- ContentPlaceHolder.cs
- CachedFontFace.cs
- FormViewUpdatedEventArgs.cs
- LinkButton.cs
- FileSecurity.cs
- AuthenticationConfig.cs
- BitHelper.cs
- PromptStyle.cs
- TimeManager.cs
- LogWriteRestartAreaAsyncResult.cs
- EntityTypeEmitter.cs
- TagMapCollection.cs
- DefaultDiscoveryServiceExtension.cs
- AttributeCollection.cs
- SafeNativeMethods.cs
- SpeechRecognitionEngine.cs
- WebPartDisplayModeCancelEventArgs.cs
- AudioFileOut.cs
- Frame.cs
- pingexception.cs
- Emitter.cs
- NameValueConfigurationElement.cs
- DesignerTextWriter.cs
- DataObjectMethodAttribute.cs
- GeneralTransform2DTo3D.cs
- HitTestParameters.cs
- ContentElement.cs
- DataSourceCacheDurationConverter.cs
- OpCopier.cs
- DrawingContextWalker.cs
- ToolStripContentPanelRenderEventArgs.cs
- CheckBoxField.cs
- PersonalizationStateInfoCollection.cs
- AxWrapperGen.cs
- RangeValidator.cs
- LabelEditEvent.cs
- TypeFieldSchema.cs
- _SpnDictionary.cs
- DataControlImageButton.cs
- WebProxyScriptElement.cs
- HwndMouseInputProvider.cs
- OleAutBinder.cs
- SkipQueryOptionExpression.cs
- XmlSchemas.cs
- WaitForChangedResult.cs
- FileUtil.cs
- EventMappingSettings.cs
- DataGridState.cs
- EntryWrittenEventArgs.cs
- StringToken.cs
- MemberListBinding.cs
- GridViewPageEventArgs.cs
- ValueSerializer.cs
- NonVisualControlAttribute.cs
- EnumBuilder.cs
- BamlTreeUpdater.cs
- AssertFilter.cs
- FilteredSchemaElementLookUpTable.cs
- TrackingMemoryStream.cs
- SwitchLevelAttribute.cs
- XmlLinkedNode.cs
- Translator.cs
- CommandEventArgs.cs