GiveFeedback Event
See Also 
SourceCode.Workflow.WizardFramework.Authentication Namespace > CredentialsDialog Class : GiveFeedback Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<SRCategoryAttribute("Drag Drop")>
<SRDescriptionAttribute("Occurs when the mouse drags an item. The system requests that the Control provide feedback to that effect.")>
Public Event GiveFeedback As GiveFeedbackEventHandler
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim handler As GiveFeedbackEventHandler
 
AddHandler instance.GiveFeedback, handler
C#  
[SRCategory("Drag Drop")]
[SRDescription("Occurs when the mouse drags an item. The system requests that the Control provide feedback to that effect.")]
public event GiveFeedbackEventHandler GiveFeedback
C++/CLI  
[SRCategory("Drag Drop")]
[SRDescription("Occurs when the mouse drags an item. The system requests that the Control provide feedback to that effect.")]
public:
event GiveFeedbackEventHandler^ GiveFeedback

Event Data

The event handler receives an argument of type GiveFeedbackEventArgs containing data related to this event. The following GiveFeedbackEventArgs properties provide information specific to this event.

Property Description
Effect Gets the drag-and-drop operation feedback that is displayed.
UseDefaultCursors Gets or sets whether drag operation should use the default cursors that are associated with drag-drop effects.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also