Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Silverlight
ButtonBase Class
ButtonBase Events
 Click Event
Collapse All/Expand All Collapse All
.NET Framework Class Library for Silverlight
ButtonBase..::.Click Event

Occurs when a Button is clicked.

Namespace:  System.Windows.Controls.Primitives
Assembly:  System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Event Click As RoutedEventHandler
C#
public event RoutedEventHandler Click
XAML Attribute Usage
<button Click="eventhandler"/>

Instead of using MouseLeftButtonDown or MouseLeftButtonUp, you should use the Click event to detect a button click by the user. Because of the way that the ButtonBase class handles mouse events, MouseLeftButtonDown and MouseLeftButtonUp events do not occur when the click mode is a value other than Hover.

The following example demonstrates handling the Click event of a Button and setting its IsEnabled property.

Visual Basic
Private Sub disableButtonClick(ByVal sender As Object, ByVal e As RoutedEventArgs)
    disableButton.IsEnabled = False
End Sub
C#
void disableButtonClick(object sender, RoutedEventArgs e)
{
    disableButton.IsEnabled = false;
}
XAML
        <Button x:Name="disableButton" Width="200"
        Click="disableButtonClick" Content="Disabled when clicked" />

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker