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
- MSAANativeProvider.cs
- GradientStop.cs
- ListenerBinder.cs
- InkCanvasSelectionAdorner.cs
- DocumentPage.cs
- QilTernary.cs
- Codec.cs
- ConfigXmlElement.cs
- ExtendedPropertyDescriptor.cs
- SolidColorBrush.cs
- BitArray.cs
- WindowsSolidBrush.cs
- QilUnary.cs
- StickyNoteAnnotations.cs
- MatrixAnimationBase.cs
- HwndStylusInputProvider.cs
- FunctionImportMapping.cs
- SeekableReadStream.cs
- ProbeMatchesMessageCD1.cs
- StructuredProperty.cs
- ProfileModule.cs
- ReplyChannel.cs
- PerformanceCounterCategory.cs
- WmlCalendarAdapter.cs
- ClickablePoint.cs
- ObjectIDGenerator.cs
- StoreItemCollection.cs
- APCustomTypeDescriptor.cs
- DBNull.cs
- ServiceMetadataBehavior.cs
- CancellationScope.cs
- PartialArray.cs
- DateTimeFormatInfoScanner.cs
- SafeRegistryKey.cs
- MenuItemBindingCollection.cs
- WindowsListViewItemStartMenu.cs
- XmlSchemaAll.cs
- DocumentSequence.cs
- ProjectedSlot.cs
- ByteKeyFrameCollection.cs
- InkCanvasSelectionAdorner.cs
- StreamDocument.cs
- ResourceDisplayNameAttribute.cs
- ValidationPropertyAttribute.cs
- CrossAppDomainChannel.cs
- TextServicesContext.cs
- InvalidProgramException.cs
- DataGridColumnDropSeparator.cs
- SamlAuthorityBinding.cs
- ProcessHostMapPath.cs
- AllMembershipCondition.cs
- SourceElementsCollection.cs
- BinaryFormatter.cs
- TableLayoutPanel.cs
- FixedTextContainer.cs
- PtsHost.cs
- RuntimeWrappedException.cs
- XsltLoader.cs
- XPathParser.cs
- MergeFailedEvent.cs
- EdmToObjectNamespaceMap.cs
- SelectedCellsCollection.cs
- ProxySimple.cs
- Misc.cs
- StringDictionary.cs
- Exceptions.cs
- DragSelectionMessageFilter.cs
- DefaultBindingPropertyAttribute.cs
- FileVersion.cs
- fixedPageContentExtractor.cs
- MoveSizeWinEventHandler.cs
- SqlDataSourceConfigureFilterForm.cs
- PnrpPermission.cs
- ControlAdapter.cs
- FunctionDescription.cs
- EtwTrace.cs
- Size3DConverter.cs
- RoutedEvent.cs
- KeyConverter.cs
- WorkflowService.cs
- ColumnWidthChangedEvent.cs
- PageAction.cs
- Debug.cs
- LayoutTable.cs
- SqlParameter.cs
- Converter.cs
- DbConnectionPool.cs
- QuerySettings.cs
- PersonalizableAttribute.cs
- VirtualizingPanel.cs
- HttpCapabilitiesEvaluator.cs
- EventWaitHandleSecurity.cs
- BasicViewGenerator.cs
- XsdDataContractExporter.cs
- BindingGroup.cs
- TimelineClockCollection.cs
- __ComObject.cs
- DataGridColumnCollection.cs
- WebColorConverter.cs
- ScalarType.cs