Group: Forum Members
Last Active: 5 Years Ago
Posts: 8,
Visits: 65
|
Hi , I was wondering if there is a way to get keyeventargs when a button is clicked ? To be specific , I wanted to know if the Shift key was pressed when the Delete button was clicked . I currently have : AddHandler RibbonButtonDelete.Click, AddressOf ButtonDeleteFile_Click Private Sub ButtonDeleteFile_Click(ByVal e As NEventArgs) 'code here End Sub
AddHandler RibbonButtonDelete.Click, AddressOf ButtonDeleteFile_Click
Private Sub ButtonDeleteFile_Click(ByVal e As NEventArgs)
'code here
End Sub
Thank you.
|
Group: Forum Members
Last Active: 2 Months Ago
Posts: 3,055,
Visits: 4,055
|
Hi , You can use the NKeyboard.ShiftPressed property to check if the Shift key is pressed . For example : Private Sub Button_Click(ByVal e As NEventArgs) If (NKeyboard.ShiftPressed) Then MessageBox.Show("Shift pressed!") End If End Sub
Private Sub Button_Click(ByVal e As NEventArgs)
If (NKeyboard.ShiftPressed) Then
MessageBox.Show("Shift pressed!")
End If
End Sub
Best Regards, Nevron Support Team
|