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
- OrderToken.cs
- TextDpi.cs
- Object.cs
- ListViewEditEventArgs.cs
- BrowsableAttribute.cs
- cookieexception.cs
- RowParagraph.cs
- DEREncoding.cs
- StringUtil.cs
- TextSyndicationContentKindHelper.cs
- ChtmlTextWriter.cs
- DomainConstraint.cs
- FragmentQueryKB.cs
- _UncName.cs
- FlowLayout.cs
- SynthesizerStateChangedEventArgs.cs
- PeoplePickerWrapper.cs
- ToolboxComponentsCreatingEventArgs.cs
- EncryptedData.cs
- SourceElementsCollection.cs
- ObjectDataSourceSelectingEventArgs.cs
- LogReserveAndAppendState.cs
- ExcludePathInfo.cs
- ReadContentAsBinaryHelper.cs
- WebZone.cs
- IdleTimeoutMonitor.cs
- ContextBase.cs
- XamlTypeMapper.cs
- SafeHandles.cs
- ChameleonKey.cs
- OdbcEnvironmentHandle.cs
- AnnotationObservableCollection.cs
- HttpDebugHandler.cs
- TextTreeTextNode.cs
- Operator.cs
- TrustSection.cs
- SerializationEventsCache.cs
- DataFieldCollectionEditor.cs
- MulticastNotSupportedException.cs
- _Events.cs
- ScriptControl.cs
- basecomparevalidator.cs
- IriParsingElement.cs
- ListBindableAttribute.cs
- DLinqColumnProvider.cs
- _UriSyntax.cs
- FamilyTypeface.cs
- DocumentApplication.cs
- TextDocumentView.cs
- SpeechEvent.cs
- PersonalizationStateInfoCollection.cs
- PathSegment.cs
- WsdlBuildProvider.cs
- AccessedThroughPropertyAttribute.cs
- HWStack.cs
- ActivityCompletionCallbackWrapper.cs
- HostAdapter.cs
- SemanticResultValue.cs
- ListBoxItemAutomationPeer.cs
- SafeNativeMethods.cs
- SqlExpander.cs
- HttpCacheParams.cs
- RadioButtonStandardAdapter.cs
- DateTimeParse.cs
- HttpSysSettings.cs
- StringResourceManager.cs
- ZoneButton.cs
- CounterSetInstance.cs
- PathTooLongException.cs
- CapiNative.cs
- DataGridColumnReorderingEventArgs.cs
- FileSystemEventArgs.cs
- ComponentResourceKey.cs
- _AcceptOverlappedAsyncResult.cs
- PerfService.cs
- WpfMemberInvoker.cs
- LingerOption.cs
- AutomationPatternInfo.cs
- XPathAncestorQuery.cs
- TableLayoutPanel.cs
- TogglePatternIdentifiers.cs
- SQLMoney.cs
- CoreSwitches.cs
- ContentDefinition.cs
- BufferedStream.cs
- ADRoleFactory.cs
- XmlNodeReader.cs
- Token.cs
- CollectionChange.cs
- MetricEntry.cs
- RootProfilePropertySettingsCollection.cs
- RemotingServices.cs
- AQNBuilder.cs
- StatusBarDrawItemEvent.cs
- DesignTimeValidationFeature.cs
- HwndMouseInputProvider.cs
- DnsEndpointIdentity.cs
- PolygonHotSpot.cs
- Size3D.cs
- RawStylusInputCustomData.cs