Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / ToolStripItemDataObject.cs / 1 / ToolStripItemDataObject.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms.Design { using System.Diagnostics; using System; using System.Windows.Forms; using System.Collections; ////// Wrapper class for DataObject. This wrapped object is passed when a ToolStripItem is Drag-Dropped during DesignTime. /// internal class ToolStripItemDataObject : DataObject { private ArrayList dragComponents; private ToolStrip owner; private ToolStripItem primarySelection; internal ToolStripItemDataObject(ArrayList dragComponents, ToolStripItem primarySelection, ToolStrip owner) : base(){ this.dragComponents = dragComponents; this.owner = owner; this.primarySelection = primarySelection; } internal ArrayList DragComponents { get{ return dragComponents; } } internal ToolStrip Owner { get { return owner; } } internal ToolStripItem PrimarySelection { get { return primarySelection; } } } } // 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
- PasswordRecovery.cs
- RulePatternOps.cs
- SiteMapNode.cs
- PeerCollaborationPermission.cs
- DebugView.cs
- DataControlHelper.cs
- SrgsRuleRef.cs
- ThreadPoolTaskScheduler.cs
- Queue.cs
- RtfToXamlLexer.cs
- Object.cs
- TimeStampChecker.cs
- ProcessModule.cs
- AnonymousIdentificationModule.cs
- WebPartCollection.cs
- ServiceObjectContainer.cs
- HttpDebugHandler.cs
- ClipboardData.cs
- DebugView.cs
- CodeIndexerExpression.cs
- CancellationState.cs
- SimpleFileLog.cs
- HttpContextServiceHost.cs
- SoapHeaderAttribute.cs
- Automation.cs
- XPathScanner.cs
- PersonalizationProviderCollection.cs
- DnsPermission.cs
- TrackBarDesigner.cs
- Classification.cs
- ListenerElementsCollection.cs
- TableLayoutPanelCellPosition.cs
- xamlnodes.cs
- SimpleRecyclingCache.cs
- PolicyStatement.cs
- TargetParameterCountException.cs
- QueryStringHandler.cs
- FigureParaClient.cs
- CompositeControl.cs
- AlignmentXValidation.cs
- PageAction.cs
- TagPrefixAttribute.cs
- ReadWriteSpinLock.cs
- BoundField.cs
- RelationshipEndMember.cs
- StringFreezingAttribute.cs
- TextElementEnumerator.cs
- DoubleStorage.cs
- ListViewDeleteEventArgs.cs
- SerializationAttributes.cs
- RecommendedAsConfigurableAttribute.cs
- LogPolicy.cs
- TabControlCancelEvent.cs
- CustomWebEventKey.cs
- LambdaCompiler.Lambda.cs
- RootProfilePropertySettingsCollection.cs
- ServiceXNameTypeConverter.cs
- TypeForwardedToAttribute.cs
- MachineKey.cs
- CryptoProvider.cs
- __ComObject.cs
- FixedPageProcessor.cs
- WebResourceAttribute.cs
- DeclarativeConditionsCollection.cs
- ParentControlDesigner.cs
- NativeMethodsOther.cs
- Currency.cs
- Point3DAnimationUsingKeyFrames.cs
- CorrelationService.cs
- UnmanagedMemoryStream.cs
- HtmlEncodedRawTextWriter.cs
- TextServicesDisplayAttributePropertyRanges.cs
- WorkflowTransactionOptions.cs
- XmlSchemaElement.cs
- EventProperty.cs
- ExpressionBindings.cs
- PropertyPathWorker.cs
- TextContainer.cs
- OperationInfo.cs
- HttpFileCollection.cs
- WindowsSysHeader.cs
- XmlBinaryReader.cs
- BuildDependencySet.cs
- Graphics.cs
- EntityTransaction.cs
- FileDialogCustomPlaces.cs
- ControlParameter.cs
- PopupEventArgs.cs
- FormViewInsertedEventArgs.cs
- ProtocolsConfigurationHandler.cs
- Message.cs
- CodeTypeParameterCollection.cs
- ReadOnlyHierarchicalDataSource.cs
- SendMailErrorEventArgs.cs
- SrgsElementFactory.cs
- DrawingContextDrawingContextWalker.cs
- UIElement3DAutomationPeer.cs
- AuthenticationException.cs
- DataTemplateSelector.cs
- SerializationHelper.cs