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
- ExpressionNormalizer.cs
- SearchForVirtualItemEventArgs.cs
- TransactionInterop.cs
- SuppressIldasmAttribute.cs
- Keywords.cs
- MainMenu.cs
- SizeF.cs
- WebPartCancelEventArgs.cs
- PathSegmentCollection.cs
- TraceRecord.cs
- ExpressionBuilder.cs
- SmtpFailedRecipientException.cs
- ListSourceHelper.cs
- BamlStream.cs
- ImageCodecInfoPrivate.cs
- ControlIdConverter.cs
- TaiwanCalendar.cs
- TraceHandler.cs
- DtdParser.cs
- PrintingPermission.cs
- LoginCancelEventArgs.cs
- XmlSiteMapProvider.cs
- ImportDesigner.xaml.cs
- MetadataProperty.cs
- DataBindingExpressionBuilder.cs
- CatalogPart.cs
- GroupBox.cs
- RoleGroup.cs
- XslTransform.cs
- OperatorExpressions.cs
- BamlResourceDeserializer.cs
- BoolExpression.cs
- TimeSpan.cs
- DiagnosticTraceRecords.cs
- SQLGuidStorage.cs
- AlgoModule.cs
- OptimizerPatterns.cs
- Span.cs
- _HeaderInfoTable.cs
- WorkflowQueue.cs
- OciLobLocator.cs
- CellCreator.cs
- JsonStringDataContract.cs
- LoadRetryConstantStrategy.cs
- PriorityBinding.cs
- UnknownWrapper.cs
- SqlTypeConverter.cs
- RegexRunnerFactory.cs
- DataKey.cs
- DataSourceView.cs
- IteratorFilter.cs
- Freezable.cs
- SqlGatherProducedAliases.cs
- Number.cs
- XmlLanguageConverter.cs
- CharEnumerator.cs
- DbParameterCollectionHelper.cs
- ReleaseInstanceMode.cs
- ExpressionList.cs
- DelegateSerializationHolder.cs
- LockedHandleGlyph.cs
- ActiveDocumentEvent.cs
- XsltSettings.cs
- GridViewRowPresenter.cs
- WebServiceHandler.cs
- ArgumentNullException.cs
- GetPageCompletedEventArgs.cs
- BaseDataListPage.cs
- RetrieveVirtualItemEventArgs.cs
- EventHandlingScope.cs
- ObjectPersistData.cs
- XamlSerializer.cs
- CapabilitiesRule.cs
- TextServicesDisplayAttribute.cs
- TextViewElement.cs
- OutputCacheSettings.cs
- SimpleRecyclingCache.cs
- UIAgentAsyncBeginRequest.cs
- ToolTip.cs
- DataGridViewColumnHeaderCell.cs
- ProcessHostMapPath.cs
- HostedBindingBehavior.cs
- DataGridComponentEditor.cs
- GlyphInfoList.cs
- NextPreviousPagerField.cs
- ImageSourceValueSerializer.cs
- EncodingDataItem.cs
- ScrollChangedEventArgs.cs
- MissingFieldException.cs
- PriorityRange.cs
- RelatedCurrencyManager.cs
- Authorization.cs
- XmlSchemaComplexContentExtension.cs
- TransferRequestHandler.cs
- MetadataArtifactLoaderResource.cs
- AbstractSvcMapFileLoader.cs
- CompilerLocalReference.cs
- OutputCacheProfileCollection.cs
- ReferenceSchema.cs
- FormsAuthenticationTicket.cs