Namespace:
System.Windows.Input
Assembly:
PresentationCore (in PresentationCore.dll)
Visual Basic (Declaration)
Public Delegate Sub MouseButtonEventHandler ( _
sender As Object, _
e As MouseButtonEventArgs _
)
Dim instance As New MouseButtonEventHandler(AddressOf HandlerMethod)
public delegate void MouseButtonEventHandler(
Object sender,
MouseButtonEventArgs e
)
public delegate void MouseButtonEventHandler(
Object^ sender,
MouseButtonEventArgs^ e
)
JScript does not support delegates.
In XAML, you can use delegates but you cannot define your own.
This delegate is used with the following attached events.
This delegate is used with the following routed events. These routed events forward the previously listed attached events to make them more accessible to the general element model in WPF.
The attached events and the base element routed events share their event data, and the bubbling and tunneling versions of the routed events also share event data. This can affect the handled characteristics of the event as it travels the event route. For details, see Input Overview.
The following example creates a MouseDown event handler that changes the background color of the source of the event. The background color is determined by which button is pressed.
private void MouseButtonDownHandler(object sender, MouseButtonEventArgs e)
{
Control src = e.Source as Control;
if (src != null)
{
switch (e.ChangedButton)
{
case MouseButton.Left:
src.Background = Brushes.Green;
break;
case MouseButton.Middle:
src.Background = Brushes.Red;
break;
case MouseButton.Right:
src.Background = Brushes.Yellow;
break;
case MouseButton.XButton1:
src.Background = Brushes.Brown;
break;
case MouseButton.XButton2:
src.Background = Brushes.Purple;
break;
default:
break;
}
}
}
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources