FrameworkElement.ForceCursor Property
.NET Framework 3.0
Gets or sets a value that indicates whether this FrameworkElement should force the user interface (UI) to render the cursor as declared by the Cursor property. This is a dependency property.
Namespace: System.Windows
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public Property ForceCursor As Boolean 'Usage Dim instance As FrameworkElement Dim value As Boolean value = instance.ForceCursor instance.ForceCursor = value
/** @property */ public boolean get_ForceCursor () /** @property */ public void set_ForceCursor (boolean value)
public function get ForceCursor () : boolean public function set ForceCursor (value : boolean)
<object ForceCursor="bool" .../>
Property Value
true if cursor presentation while over this element is forced to use current Cursor settings for the cursor (including on all child elements); otherwise false. The default value is false.If you set this property to true you will override the cursor preferences established by child elements. Doing so in general application UI might be confusing for the user, particularly if child elements are attempting to specify cursors. Setting ForceCursor is more appropriate in control subclassing or compositing scenarios.
The following example forces the cursor value.
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <StackPanel Name="CursorForced" ForceCursor="true" Cursor="Hand"> <Label>Cursors Forced</Label> <TextBox>Fill me in!</TextBox> </StackPanel> <StackPanel Name="CursorNotForced"> <Label>Cursors Not Forced</Label> <TextBox>Fill me in!</TextBox> </StackPanel> </StackPanel>
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: