Replies: 1 comment 7 replies
-
Definitely a problem caused by our Popup implementation which does not yet play nice with focus. Will take care of fixing it 👍 |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm using a custom ContentDialog to get a string from a USB RFID reader. The reader acts as a keyboard and I use the KeyUp event handler to get the value:
KeyUp += RfidDialog_KeyUp;
It works fine in WinUI but in the Skia project focus seems to be hooked in the background frame. You can see the white rectangle focusing the settings button.
Focus rectangle
If I press Tab key, focus alternates between Settings and User button but the ContentDialog never receives the focus so it never gets KeyUp events.
Besides CornerRadius is displayed differently in both projects.
Here a link with both images:
CornerRadius
Beta Was this translation helpful? Give feedback.
All reactions