MouseEventArgs.RightButton Propiedad
Definición
Obtiene el estado actual del botón secundario del mouse.Gets the current state of the right mouse button.
public:
property System::Windows::Input::MouseButtonState RightButton { System::Windows::Input::MouseButtonState get(); };
public System.Windows.Input.MouseButtonState RightButton { get; }
member this.RightButton : System.Windows.Input.MouseButtonState
Public ReadOnly Property RightButton As MouseButtonState
Valor de propiedad
Estado actual del botón secundario del mouse, que es Pressed o Released.The current state of the right mouse button, which is either Pressed or Released. No hay ningún valor predeterminado.There is no default value.
Ejemplos
En el ejemplo siguiente se imprime un mensaje si el estado de la RightButton propiedad es Pressed .The following example prints a message if the state of the RightButton property is Pressed.
if (e.RightButton == MouseButtonState.Pressed)
{
MessageBox.Show("The Right Mouse Button is pressed");
}
If e.RightButton = MouseButtonState.Pressed Then
MessageBox.Show("The Right Mouse Button is pressed")
End If
Comentarios
La Mouse clase proporciona propiedades y métodos adicionales para determinar el estado del mouse.The Mouse class provides additional properties and methods for determining the state of the mouse.