Replies: 1 comment 2 replies
-
That's because the event was already handled ( button.AddHandler(Button.PointerPressedEvent, (sender, e) => { }, handledEventsToo: true); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
In the button control, I realized that the
PointerPressed
andPointerReleased
events are only triggered when I press/release the mouse right button in a button. If I press the left button, only theclick
event is triggered.My question is: why the
PointerPressed
andPointerReleased
events are not triggered with a left mouse click in a button (keeping the mouse over the button) ?Beta Was this translation helpful? Give feedback.
All reactions