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
- SessionStateContainer.cs
- mediapermission.cs
- SiteMapPath.cs
- LockCookie.cs
- DataReaderContainer.cs
- TransactionException.cs
- ValueQuery.cs
- XmlBaseWriter.cs
- ScriptControlManager.cs
- XmlQueryStaticData.cs
- ViewGenerator.cs
- DocumentViewerAutomationPeer.cs
- WebPartZoneBase.cs
- StaticFileHandler.cs
- DataProtectionSecurityStateEncoder.cs
- XmlProcessingInstruction.cs
- ImageConverter.cs
- InstancePersistenceCommandException.cs
- COM2PropertyPageUITypeConverter.cs
- DataContractJsonSerializerOperationBehavior.cs
- MetafileEditor.cs
- RootNamespaceAttribute.cs
- DataRowComparer.cs
- UrlMapping.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ColumnProvider.cs
- ArithmeticException.cs
- Rule.cs
- DrawingState.cs
- XmlSchemaSimpleTypeList.cs
- ControlCollection.cs
- RemoveStoryboard.cs
- RenderingBiasValidation.cs
- LocalServiceSecuritySettingsElement.cs
- BuildProviderCollection.cs
- TrustLevel.cs
- AnnotationHelper.cs
- CryptoKeySecurity.cs
- CreateUserErrorEventArgs.cs
- ExpressionLexer.cs
- BypassElement.cs
- MouseActionValueSerializer.cs
- NullReferenceException.cs
- HMACSHA256.cs
- _BaseOverlappedAsyncResult.cs
- Transform3DCollection.cs
- EventDescriptorCollection.cs
- HuffCodec.cs
- ImpersonationContext.cs
- SoapTypeAttribute.cs
- TrimSurroundingWhitespaceAttribute.cs
- EntityDataSourceMemberPath.cs
- DbProviderServices.cs
- TaiwanCalendar.cs
- NativeMethods.cs
- WebBrowser.cs
- ActionMismatchAddressingException.cs
- _DigestClient.cs
- MachineKeyConverter.cs
- CngUIPolicy.cs
- ContractComponent.cs
- ModifierKeysConverter.cs
- MarginsConverter.cs
- TextReader.cs
- IListConverters.cs
- SimpleBitVector32.cs
- TagPrefixInfo.cs
- NodeFunctions.cs
- ConfigXmlDocument.cs
- ReadOnlyDictionary.cs
- KeysConverter.cs
- DebugView.cs
- DataServiceQuery.cs
- AxWrapperGen.cs
- WindowsRegion.cs
- DataGridViewBindingCompleteEventArgs.cs
- SingleAnimationBase.cs
- SoapConverter.cs
- DesignTimeParseData.cs
- Attachment.cs
- MasterPageParser.cs
- TypeSystem.cs
- DateRangeEvent.cs
- RegexParser.cs
- FigureParagraph.cs
- IconBitmapDecoder.cs
- XamlSerializerUtil.cs
- ECDiffieHellmanCngPublicKey.cs
- DateTimeConverter.cs
- JsonDataContract.cs
- BitSet.cs
- SecurityState.cs
- _CacheStreams.cs
- ScriptMethodAttribute.cs
- SymbolPair.cs
- Control.cs
- TransformDescriptor.cs
- BaseUriHelper.cs
- SQLDecimalStorage.cs
- AuthenticationModuleElement.cs