Found a great popup keyboard example as it is perfect for a RPi touchscreen application.
Building is all fine…but when running, it doesn’t show me a popup keyboard when I touch or click inside a text filed.
Running on macOS is all fine…works perfectly.
This is the snippet opening the PopUp fine on macOS, but not on Raspberry Pi:
if not app.IsPopOverOpen then
app.IsPopOverOpen=true //to prevent popping of more than one Popover window at time
var c as new WindowKeyboard
c.ShowPopover(me,DesktopWindow.DisplaySides.Bottom,False)
c.source=me //this defines this particulat 'me' DesktopTextField object as source / destination of text
end if
When I use a button and put that in the pressed event it shows the popup.
But on Raspberry Pi the Popup shows after launch…then never again…
Also: When the popup is fired after launch, I can click individual letters fine…
but when using the touchscreen, it types the letters the mouse is pointing actually to.