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
- QuaternionAnimation.cs
- Stacktrace.cs
- NumericUpDown.cs
- NativeCompoundFileAPIs.cs
- DataGridViewColumnConverter.cs
- ConnectionInterfaceCollection.cs
- BaseTemplatedMobileComponentEditor.cs
- OLEDB_Util.cs
- SQLGuidStorage.cs
- WebPartDisplayModeEventArgs.cs
- ResourcesBuildProvider.cs
- UnmanagedHandle.cs
- AutoGeneratedField.cs
- TraceUtils.cs
- HtmlToClrEventProxy.cs
- XmlSignatureManifest.cs
- TraceHandler.cs
- BrowsableAttribute.cs
- Connection.cs
- UpdateCompiler.cs
- OperatorExpressions.cs
- DesignTimeVisibleAttribute.cs
- DataGridViewTopLeftHeaderCell.cs
- RIPEMD160.cs
- _StreamFramer.cs
- AuthenticationService.cs
- RegexInterpreter.cs
- CacheAxisQuery.cs
- DbConnectionClosed.cs
- MediaPlayer.cs
- WorkflowNamespace.cs
- XmlChildNodes.cs
- SecurityCriticalDataForSet.cs
- GeneratedView.cs
- AttributeProviderAttribute.cs
- NestedContainer.cs
- ArrayWithOffset.cs
- OleDbErrorCollection.cs
- FontCacheUtil.cs
- UrlParameterReader.cs
- RuleSetDialog.Designer.cs
- sqlnorm.cs
- TrustManager.cs
- DurableInstanceProvider.cs
- StickyNote.cs
- PageThemeParser.cs
- RuntimeConfig.cs
- DelayedRegex.cs
- ComponentGlyph.cs
- ComPersistableTypeElementCollection.cs
- Rotation3DAnimationBase.cs
- GregorianCalendarHelper.cs
- ValidatingPropertiesEventArgs.cs
- NativeBuffer.cs
- PropertyGroupDescription.cs
- StringDictionary.cs
- BatchWriter.cs
- CrossSiteScriptingValidation.cs
- InvokeSchedule.cs
- WebPartCollection.cs
- PropertyPath.cs
- TextEditorMouse.cs
- FixedSOMTableCell.cs
- Nullable.cs
- SerialPinChanges.cs
- PointUtil.cs
- WebBrowserNavigatingEventHandler.cs
- MenuAutomationPeer.cs
- SecurityTokenProvider.cs
- ServiceModelSecurityTokenRequirement.cs
- HwndMouseInputProvider.cs
- AssertSection.cs
- MatrixStack.cs
- StringValueSerializer.cs
- MarkupProperty.cs
- InstanceKeyView.cs
- ReadOnlyNameValueCollection.cs
- RedirectionProxy.cs
- ParserContext.cs
- RegexCapture.cs
- FullTextLine.cs
- WebPartsSection.cs
- PrintPreviewGraphics.cs
- ACL.cs
- BeginGetFileNameFromUserRequest.cs
- FormsAuthenticationEventArgs.cs
- MultiAsyncResult.cs
- HostedElements.cs
- RawUIStateInputReport.cs
- AnnotationStore.cs
- SchemaNotation.cs
- MarshalByValueComponent.cs
- OuterGlowBitmapEffect.cs
- Odbc32.cs
- AdornerHitTestResult.cs
- XsdValidatingReader.cs
- ErrorReporting.cs
- BinaryObjectWriter.cs
- Int64Storage.cs
- WebPartDescriptionCollection.cs