MouseEventArgs.RightButton Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
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
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.