Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / DragEvent.cs / 1 / 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. /// ///// 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
- unsafenativemethodstextservices.cs
- BrowserCapabilitiesCompiler.cs
- COM2TypeInfoProcessor.cs
- Keyboard.cs
- WebPartConnectionsConfigureVerb.cs
- WebHttpElement.cs
- TemplateApplicationHelper.cs
- WorkflowCompensationBehavior.cs
- ConditionValidator.cs
- WebEventTraceProvider.cs
- ComponentResourceKey.cs
- WindowsUpDown.cs
- EventProvider.cs
- SafeNativeMemoryHandle.cs
- HashCodeCombiner.cs
- FixedSOMGroup.cs
- SecurityProtocolCorrelationState.cs
- TiffBitmapEncoder.cs
- WindowsListBox.cs
- HtmlShimManager.cs
- TerminatorSinks.cs
- AesManaged.cs
- StreamGeometry.cs
- WebFormDesignerActionService.cs
- RegistryPermission.cs
- CompletionProxy.cs
- SqlTransaction.cs
- EntryPointNotFoundException.cs
- ListMarkerSourceInfo.cs
- SoapSchemaExporter.cs
- DocumentGridPage.cs
- PartialCachingAttribute.cs
- DetailsViewActionList.cs
- KeyGestureValueSerializer.cs
- OracleTimeSpan.cs
- String.cs
- ContainsSearchOperator.cs
- SqlNotificationRequest.cs
- FirewallWrapper.cs
- HostExecutionContextManager.cs
- Attributes.cs
- NamespaceList.cs
- RadioButtonRenderer.cs
- UnsafeCollabNativeMethods.cs
- precedingsibling.cs
- Parser.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- RSAPKCS1KeyExchangeFormatter.cs
- StreamInfo.cs
- EmbeddedObject.cs
- RightsManagementInformation.cs
- WorkflowRuntimeServiceElement.cs
- ResponseStream.cs
- IdentitySection.cs
- WebAdminConfigurationHelper.cs
- MimePart.cs
- StrokeDescriptor.cs
- TextSchema.cs
- ToolStripPanelCell.cs
- KeyPressEvent.cs
- SoapElementAttribute.cs
- FixedSOMLineRanges.cs
- XPathMessageContext.cs
- QilInvokeEarlyBound.cs
- WindowsListBox.cs
- ResourceKey.cs
- TraceUtility.cs
- SqlUDTStorage.cs
- HtmlSelect.cs
- DefaultPerformanceCounters.cs
- HttpListenerPrefixCollection.cs
- DataBindingExpressionBuilder.cs
- XmlNodeList.cs
- HtmlInputSubmit.cs
- Menu.cs
- DnsPermission.cs
- Certificate.cs
- AnimatedTypeHelpers.cs
- EDesignUtil.cs
- BatchStream.cs
- XPathNodeInfoAtom.cs
- SignatureGenerator.cs
- AppDomainUnloadedException.cs
- Triplet.cs
- Constraint.cs
- XmlChildEnumerator.cs
- ObjectContext.cs
- TabControlEvent.cs
- TrackingQueryElement.cs
- DocumentPageHost.cs
- ArrayTypeMismatchException.cs
- XamlSerializerUtil.cs
- DataSourceSerializationException.cs
- ExpressionBuilderCollection.cs
- Transaction.cs
- DefaultParameterValueAttribute.cs
- KeyValueConfigurationElement.cs
- TextDpi.cs
- JulianCalendar.cs
- StreamReader.cs