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
- BevelBitmapEffect.cs
- tooltip.cs
- TypeSystemHelpers.cs
- MaskDescriptor.cs
- DataObjectMethodAttribute.cs
- QueryTask.cs
- SQLInt64.cs
- Expr.cs
- HttpCacheParams.cs
- SqlFileStream.cs
- WpfGeneratedKnownProperties.cs
- LightweightEntityWrapper.cs
- SynchronizationHandlesCodeDomSerializer.cs
- XmlCDATASection.cs
- DomNameTable.cs
- ipaddressinformationcollection.cs
- XmlSchemaSimpleTypeUnion.cs
- QueryServiceConfigHandle.cs
- PartBasedPackageProperties.cs
- LateBoundBitmapDecoder.cs
- ColumnWidthChangedEvent.cs
- DirectoryObjectSecurity.cs
- ADConnectionHelper.cs
- PropertyCollection.cs
- ProcessProtocolHandler.cs
- Cursor.cs
- XmlSerializerAssemblyAttribute.cs
- CatalogPart.cs
- HttpHandlersSection.cs
- AssemblyHash.cs
- ArraySubsetEnumerator.cs
- RuleSettingsCollection.cs
- relpropertyhelper.cs
- ToolboxDataAttribute.cs
- ModelPropertyDescriptor.cs
- XmlArrayAttribute.cs
- CompiledRegexRunner.cs
- TextEndOfLine.cs
- WebPartVerbCollection.cs
- NonParentingControl.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- GregorianCalendarHelper.cs
- HtmlLink.cs
- Optimizer.cs
- DependencyObjectPropertyDescriptor.cs
- RegisteredArrayDeclaration.cs
- MissingMemberException.cs
- NavigationHelper.cs
- XmlSchemaChoice.cs
- CodeBinaryOperatorExpression.cs
- ErrorStyle.cs
- DataGridViewAdvancedBorderStyle.cs
- FormattedTextSymbols.cs
- WebPartConnectionsConfigureVerb.cs
- SqlGatherConsumedAliases.cs
- SettingsAttributeDictionary.cs
- ProcessHostServerConfig.cs
- Expression.cs
- ClientSettings.cs
- Int16AnimationBase.cs
- HttpContextServiceHost.cs
- CloudCollection.cs
- FigureParagraph.cs
- MarshalDirectiveException.cs
- SelectionItemPattern.cs
- NativeMethods.cs
- UrlMappingsModule.cs
- ToolStripContentPanel.cs
- dsa.cs
- ExecutedRoutedEventArgs.cs
- ProviderConnectionPointCollection.cs
- Blend.cs
- __TransparentProxy.cs
- Classification.cs
- AppDomainResourcePerfCounters.cs
- AuthenticationModuleElementCollection.cs
- RadioButtonStandardAdapter.cs
- DataSourceView.cs
- ExecutionContext.cs
- ClassImporter.cs
- UpnEndpointIdentityExtension.cs
- XmlSchemaInclude.cs
- HttpModuleActionCollection.cs
- NaturalLanguageHyphenator.cs
- EnterpriseServicesHelper.cs
- View.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- RemotingConfiguration.cs
- TaskFileService.cs
- AspNetSynchronizationContext.cs
- EntityKey.cs
- MatrixAnimationUsingKeyFrames.cs
- MobileErrorInfo.cs
- InertiaExpansionBehavior.cs
- WebPartExportVerb.cs
- HitTestWithPointDrawingContextWalker.cs
- DbSetClause.cs
- _SSPIWrapper.cs
- CompilationPass2TaskInternal.cs
- ECDiffieHellman.cs