The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ClickMode Enumeration
.NET Framework (current version)
Specifies when the Click event should be raised.
Assembly: PresentationFramework (in PresentationFramework.dll)
The following example shows three buttons that respond to clicks in three different ways.
Hover - the first button changes colors when the user hovers with the mouse over the button.
Press - the second button requires that the mouse be pressed while the mouse pointer is in the button.
Release - the third button does not reset the background color of the buttons until the mouse is pressed and released in the button.
<Button Name="btn1" Background="Pink" BorderBrush="Black" BorderThickness="1" Click="OnClick1" ClickMode="Hover"> ClickMe1 </Button> <Button Name="btn2" Background="LightBlue" BorderBrush="Black" BorderThickness="1" Click="OnClick2" ClickMode="Press"> ClickMe2 </Button> <Button Name="btn3" Click="OnClick3" ClickMode="Release"> Reset </Button>
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: