Hello,
In WinUI3 platform, the drop-down box of Combox
control corresponding to Picker
is not related to Focus()
. You can refer to the following code to implement this function in Windows platform in a native way.
#if WINDOWS
var p = picker.Handler.PlatformView as ComboBox;
p.IsDropDownOpen = true;
#endif
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.