Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / designeractionlistschangedeventargs.cs / 1 / designeractionlistschangedeventargs.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.ComponentModel.Design {
using System.ComponentModel;
using System;
using Microsoft.Win32;
///
///
/// This EventArgs class is used by the DesignerActionService to signify
/// that there has been a change in DesignerActionLists (added or removed)
/// on the related object.
///
public class DesignerActionListsChangedEventArgs : EventArgs {
private object relatedObject;
private DesignerActionListCollection actionLists;
private DesignerActionListsChangedType changeType;//type of change
///
///
/// Constructor that requires the object in question, the type of change
/// and the remaining actionlists left for the object.
/// on the related object.
///
public DesignerActionListsChangedEventArgs(object relatedObject, DesignerActionListsChangedType changeType, DesignerActionListCollection actionLists) {
this.relatedObject = relatedObject;
this.changeType = changeType;
this.actionLists = actionLists;
}
///
///
/// The type of changed that caused the related event
/// to be thrown.
///
public DesignerActionListsChangedType ChangeType {
get {
return changeType;
}
}
///
///
/// The object this change is related to.
///
public object RelatedObject {
get {
return relatedObject;
}
}
///
///
/// The remaining actionlists left for the related object.
///
public DesignerActionListCollection ActionLists {
get {
return actionLists;
}
}
}
}
// 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
- CurrentChangedEventManager.cs
- DataGridViewAccessibleObject.cs
- CodeEventReferenceExpression.cs
- FormsAuthenticationModule.cs
- Attributes.cs
- DataGridRelationshipRow.cs
- Rule.cs
- StyleXamlTreeBuilder.cs
- ObjectMemberMapping.cs
- HtmlInputText.cs
- GenericAuthenticationEventArgs.cs
- LogicalTreeHelper.cs
- SqlConnectionPoolProviderInfo.cs
- ZipIOExtraFieldZip64Element.cs
- TaskHelper.cs
- SiteMapNodeItem.cs
- DefaultPrintController.cs
- _SslState.cs
- ScopedKnownTypes.cs
- EncryptedPackage.cs
- ExpressionBuilder.cs
- SessionParameter.cs
- DrawingBrush.cs
- SafeFileHandle.cs
- ListenDesigner.cs
- BaseCodeDomTreeGenerator.cs
- SqlTrackingWorkflowInstance.cs
- OdbcParameterCollection.cs
- SQLDateTime.cs
- ChoiceConverter.cs
- ReferencedCollectionType.cs
- OracleBFile.cs
- InputLanguageSource.cs
- RootBrowserWindowProxy.cs
- Size3DConverter.cs
- pingexception.cs
- HtmlGenericControl.cs
- OdbcConnectionStringbuilder.cs
- ObjectManager.cs
- odbcmetadatacollectionnames.cs
- SqlCacheDependency.cs
- VSWCFServiceContractGenerator.cs
- ExcludeFromCodeCoverageAttribute.cs
- WaitHandleCannotBeOpenedException.cs
- _StreamFramer.cs
- RequestCacheEntry.cs
- EffectiveValueEntry.cs
- GeneralTransform3DCollection.cs
- SignatureDescription.cs
- _Rfc2616CacheValidators.cs
- XmlKeywords.cs
- DispatcherObject.cs
- SafeRsaProviderHandle.cs
- BufferedGraphicsManager.cs
- X509SecurityTokenAuthenticator.cs
- NumberFormatInfo.cs
- CommonDialog.cs
- ContextMarshalException.cs
- FixedSOMSemanticBox.cs
- Configuration.cs
- CodeChecksumPragma.cs
- PermissionSetTriple.cs
- WebConvert.cs
- DynamicDocumentPaginator.cs
- Attribute.cs
- TargetPerspective.cs
- WindowsSysHeader.cs
- NamedPipeHostedTransportConfiguration.cs
- MediaEntryAttribute.cs
- Decimal.cs
- VScrollBar.cs
- _CacheStreams.cs
- BigInt.cs
- OleDbInfoMessageEvent.cs
- MenuItemCollection.cs
- OptionUsage.cs
- TextModifier.cs
- OleDbInfoMessageEvent.cs
- CheckBoxFlatAdapter.cs
- MetadataSerializer.cs
- TextFormatter.cs
- EncoderExceptionFallback.cs
- BookmarkTable.cs
- Matrix3DConverter.cs
- PeerTransportElement.cs
- CommandField.cs
- InternalConfigEventArgs.cs
- HwndMouseInputProvider.cs
- Camera.cs
- DataGridViewRowsAddedEventArgs.cs
- AutomationPeer.cs
- DataGridColumnCollection.cs
- TextSpanModifier.cs
- ExpandedWrapper.cs
- KeyFrames.cs
- GeneralTransformGroup.cs
- ProjectionPath.cs
- XsdDateTime.cs
- InternalMappingException.cs
- XmlValueConverter.cs