MouseEventArgs.RightButton Özellik

Tanım

Sağ fare düğmesinin geçerli durumunu alır.

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

Özellik Değeri

Sağ fare düğmesinin veya olan PressedReleasedgeçerli durumu. Varsayılan değer yoktur.

Örnekler

Aşağıdaki örnek, özelliğin RightButton durumu ise bir ileti yazdırır 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

Açıklamalar

sınıfı, Mouse farenin durumunu belirlemek için ek özellikler ve yöntemler sağlar.

Şunlara uygulanır