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
- PeerFlooder.cs
- HashSet.cs
- SudsParser.cs
- SafeMILHandle.cs
- ByteArrayHelperWithString.cs
- HttpListenerResponse.cs
- NetCodeGroup.cs
- WebServiceHostFactory.cs
- ResourceContainer.cs
- ObjectDataSourceChooseMethodsPanel.cs
- XmlElement.cs
- SelectedPathEditor.cs
- TreeView.cs
- SizeChangedEventArgs.cs
- TableLayoutPanelCellPosition.cs
- ColumnReorderedEventArgs.cs
- GrammarBuilderBase.cs
- ProcessManager.cs
- MsmqTransportReceiveParameters.cs
- FaultPropagationRecord.cs
- WpfKnownMember.cs
- NamespaceListProperty.cs
- NamedPipeHostedTransportConfiguration.cs
- ListSortDescription.cs
- XmlCustomFormatter.cs
- Vector3DConverter.cs
- RelativeSource.cs
- ColumnPropertiesGroup.cs
- cookiecontainer.cs
- RootContext.cs
- DataBindingExpressionBuilder.cs
- DataControlHelper.cs
- FileSecurity.cs
- GlobalAllocSafeHandle.cs
- WorkflowMarkupSerializer.cs
- ProfilePropertySettingsCollection.cs
- SqlReferenceCollection.cs
- SqlClientFactory.cs
- BitmapEffectGroup.cs
- SecurityHelper.cs
- ContextStack.cs
- CorePropertiesFilter.cs
- SchemaImporterExtensionsSection.cs
- UnsafeNetInfoNativeMethods.cs
- formatstringdialog.cs
- PenThreadPool.cs
- RegexCompiler.cs
- LinqMaximalSubtreeNominator.cs
- webeventbuffer.cs
- AppModelKnownContentFactory.cs
- SchemaImporterExtensionElement.cs
- SerializationInfoEnumerator.cs
- SimpleBitVector32.cs
- PerformanceCountersElement.cs
- StoreItemCollection.Loader.cs
- ResXResourceReader.cs
- WorkflowShape.cs
- ResXBuildProvider.cs
- InputLanguageManager.cs
- AssemblyNameProxy.cs
- UInt64.cs
- ResourcePart.cs
- DataRelationCollection.cs
- XmlIlTypeHelper.cs
- XmlElementAttributes.cs
- HTMLTagNameToTypeMapper.cs
- X509RawDataKeyIdentifierClause.cs
- GrammarBuilderBase.cs
- Expr.cs
- IMembershipProvider.cs
- StrokeSerializer.cs
- ToolStripLocationCancelEventArgs.cs
- MasterPageBuildProvider.cs
- MappingException.cs
- Int16Storage.cs
- BasicHttpSecurity.cs
- ItemAutomationPeer.cs
- TreeNodeEventArgs.cs
- CompareValidator.cs
- TemplateEditingService.cs
- CannotUnloadAppDomainException.cs
- bindurihelper.cs
- Tokenizer.cs
- Polyline.cs
- TextRangeProviderWrapper.cs
- PersonalizationState.cs
- ASCIIEncoding.cs
- SoapSchemaExporter.cs
- MailSettingsSection.cs
- ResolveNameEventArgs.cs
- Sequence.cs
- ConfigurationManagerHelper.cs
- PipelineComponent.cs
- ipaddressinformationcollection.cs
- XPathScanner.cs
- HttpRequestCacheValidator.cs
- ObjectAnimationBase.cs
- ConnectionInterfaceCollection.cs
- BuildResult.cs
- SettingsPropertyIsReadOnlyException.cs