MouseEventArgs.LeftButton Proprietà
Definizione
Ottiene lo stato corrente del pulsante sinistro del mouse.Gets the current state of the left mouse button.
public:
property System::Windows::Input::MouseButtonState LeftButton { System::Windows::Input::MouseButtonState get(); };
public System.Windows.Input.MouseButtonState LeftButton { get; }
member this.LeftButton : System.Windows.Input.MouseButtonState
Public ReadOnly Property LeftButton As MouseButtonState
Valore della proprietà
Stato corrente del pulsante sinistro del mouse, che è o Pressed o Released.The current state of the left mouse button, which is either Pressed or Released. Non è previsto alcun valore predefinito.There is no default value.
Esempi
Nell'esempio seguente viene stampato un messaggio se lo stato della proprietà LeftButton è Pressed.The following example prints a message if the state of the LeftButton property is Pressed.
if (e.LeftButton == MouseButtonState.Pressed)
{
MessageBox.Show("The Left Mouse Button is pressed");
}
If e.LeftButton = MouseButtonState.Pressed Then
MessageBox.Show("The Left Mouse Button is pressed")
End If
Commenti
La classe Mouse fornisce proprietà e metodi aggiuntivi per determinare lo stato del mouse.The Mouse class provides additional properties and methods for determining the state of the mouse.