MouseButtonEventArgs Class
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
MouseButtonEventArgs is used with the following events: MouseDown, MouseUp, MouseLeftButtonDown, MouseLeftButtonUp, MouseRightButtonDown, MouseRightButtonUp, and the corresponding tunneling events.
The Mouse class provides additional properties and methods for determining the state of the mouse.
The following example creates a mouse button event handler that changes the color of the object that raised the event. The color chosen depends on the mouse button which was pressed. The ChangedButton property is checked to determine which button was 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; } } }
System.EventArgs
System.Windows.RoutedEventArgs
System.Windows.Input.InputEventArgs
System.Windows.Input.MouseEventArgs
System.Windows.Input.MouseButtonEventArgs
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.