UseWaitCursor Property
See Also 
SourceCode.Workflow.WizardFramework.Authentication Namespace > CredentialsDialog Class : UseWaitCursor Property



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<SRCategoryAttribute("Appearance")>
<EditorBrowsableAttribute()>
<BrowsableAttribute(True)>
<DefaultValueAttribute()>
<SRDescriptionAttribute("When this property is true, the Cursor property of the control and its child controls is set to WaitCursor.")>
Public Property UseWaitCursor As Boolean
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim value As Boolean
 
instance.UseWaitCursor = value
 
value = instance.UseWaitCursor
C#  
[SRCategory("Appearance")]
[EditorBrowsable()]
[Browsable(true)]
[DefaultValue()]
[SRDescription("When this property is true, the Cursor property of the control and its child controls is set to WaitCursor.")]
public bool UseWaitCursor {get; set;}
C++/CLI  
[SRCategory("Appearance")]
[EditorBrowsable()]
[Browsable(true)]
[DefaultValue()]
[SRDescription("When this property is true, the Cursor property of the control and its child controls is set to WaitCursor.")]
public:
property bool UseWaitCursor {
   bool get();
   void set (    bool value);
}

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