Reputation: 3666
Windows allows user to open emoti panel by pressing win
+ .
in any textbox.
I was wondering if there is a way I can open it by calling some method.
Upvotes: 3
Views: 1439
Reputation: 192
You can call the following. Thanks @RaymondChen for the info.
CoreInputView.GetForCurrentView().TryShow(CoreInputViewKind.Emoji);
Upvotes: 6
Reputation: 1638
According to this uservoice and the linked ticket on the UWP-Toolkit GitHub, is there no native emoji panel/dialog. So you need to implement it by yourself or use a thirdparty library.
For an own implementation you can take a look here.
Upvotes: 1