Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DragEvent.cs / 1305376 / DragEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.Windows.Forms; using System.ComponentModel; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class DragEventArgs : EventArgs { ////// Provides data for the ///, , or event. /// /// /// The data associated with this event. /// private readonly IDataObject data; ////// /// The current state of the shift, ctrl, and alt keys. /// private readonly int keyState; ////// /// The mouse x location. /// private readonly int x; ////// /// The mouse y location. /// private readonly int y; ////// /// The effect that should be applied to the mouse cursor. /// private readonly DragDropEffects allowedEffect; ////// /// private DragDropEffects effect; ////// Initializes a new instance of the ////// class. /// /// /// /// public DragEventArgs(IDataObject data, int keyState, int x, int y, DragDropEffects allowedEffect, DragDropEffects effect) { this.data = data; this.keyState = keyState; this.x = x; this.y = y; this.allowedEffect = allowedEffect; this.effect = effect; } ////// Initializes a new instance of the ///class. /// /// /// public IDataObject Data { get { return data; } } ////// The ////// that contains the data associated with this event. /// /// /// public int KeyState { get { return keyState; } } ////// Gets /// the current state of the SHIFT, CTRL, and ALT keys. /// /// ////// /// public int X { get { return x; } } ////// Gets the /// x-coordinate /// of the mouse pointer. /// ////// /// public int Y { get { return y; } } ////// Gets /// the y-coordinate /// of the mouse pointer. /// ////// /// public DragDropEffects AllowedEffect { get { return allowedEffect; } } ////// Gets which drag-and-drop operations are allowed by the /// originator (or source) of the drag event. /// ////// /// public DragDropEffects Effect { get { return effect; } set { effect = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets which drag-and-drop operations are allowed by the target of the drag event. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LockRecursionException.cs
- HtmlInputControl.cs
- _TLSstream.cs
- TypeToken.cs
- ElementUtil.cs
- HttpInputStream.cs
- ExclusiveTcpTransportManager.cs
- SqlConnectionFactory.cs
- ValueTypeFixupInfo.cs
- RectConverter.cs
- BindingsCollection.cs
- DnsPermission.cs
- TextTreeTextBlock.cs
- SqlGatherConsumedAliases.cs
- OpenTypeCommon.cs
- DrawingGroup.cs
- TreeView.cs
- HttpApplication.cs
- Span.cs
- UnsafeNativeMethodsCLR.cs
- FieldCollectionEditor.cs
- FileUpload.cs
- ExpandedWrapper.cs
- COM2ExtendedUITypeEditor.cs
- Win32MouseDevice.cs
- FileSystemWatcher.cs
- ListViewDeleteEventArgs.cs
- TransactionFlowProperty.cs
- RoleManagerEventArgs.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- LicenseProviderAttribute.cs
- AssemblyCache.cs
- NumberSubstitution.cs
- TextBoxBase.cs
- IndexedEnumerable.cs
- filewebrequest.cs
- Quaternion.cs
- TreeNodeStyleCollection.cs
- Attributes.cs
- SingleAnimation.cs
- DefaultPropertyAttribute.cs
- ProjectionPlanCompiler.cs
- CompareInfo.cs
- OrderablePartitioner.cs
- RectAnimation.cs
- SplashScreen.cs
- GridSplitterAutomationPeer.cs
- ParenthesizePropertyNameAttribute.cs
- ProxySimple.cs
- FileSecurity.cs
- InProcStateClientManager.cs
- DetailsViewInsertedEventArgs.cs
- OpenFileDialog.cs
- ETagAttribute.cs
- LineUtil.cs
- SafeNativeMethodsOther.cs
- CloudCollection.cs
- ResolvedKeyFrameEntry.cs
- AtomContentProperty.cs
- StateDesigner.Layouts.cs
- ManagementException.cs
- TableHeaderCell.cs
- ServicePointManagerElement.cs
- TreeViewImageKeyConverter.cs
- NTAccount.cs
- SizeLimitedCache.cs
- NativeCppClassAttribute.cs
- InheritanceAttribute.cs
- TableLayoutCellPaintEventArgs.cs
- TaiwanLunisolarCalendar.cs
- StreamingContext.cs
- OdbcHandle.cs
- GlobalProxySelection.cs
- WebPartDeleteVerb.cs
- TextPenaltyModule.cs
- DataGridRowClipboardEventArgs.cs
- UnmanagedBitmapWrapper.cs
- PostBackOptions.cs
- TableItemProviderWrapper.cs
- TableColumn.cs
- XPathBinder.cs
- UTF32Encoding.cs
- Roles.cs
- RelationshipManager.cs
- DataControlField.cs
- RandomNumberGenerator.cs
- CursorConverter.cs
- SymLanguageType.cs
- BuildResultCache.cs
- FontWeight.cs
- CommandDevice.cs
- Run.cs
- SystemTcpStatistics.cs
- Matrix.cs
- MachineKeyConverter.cs
- dbdatarecord.cs
- EntityTemplateUserControl.cs
- ConfigXmlSignificantWhitespace.cs
- SessionStateModule.cs
- GridToolTip.cs