I am using RichEditBox with XAML and C# I have following 3 events in XAML and corresponding handlers in C#(back code)
DoubleTapped="RichEditBox_DoubleTapped" RightTapped="RichEditBox_RightTapped" PointerReleased="RichEditBox_PointerReleased"
But after putting debug points, I found, none of them is getting triggered.
DoubleTapped event gets triggered if I double tap not on the word but on empty space within the RichEditBox. Once this event is handled, double tap starts working even on words.
I need to handle any of the above events on words. But none of them is responding as expected. How can I achieve it?