Emoji.Wpf
is a proof of concept implementation of Emoji for WPF.
- Very experimental for now.
- Colour emojis! ๐จ ๐ฉ ๐ฐ โ โ ๐ โ
- Full vector emojis!
- Lightweight; does not embed a font, or emoji images.
- Works with old .NET versions such as 3.0.
- Uses the Segoe UI Emoji system font, even on Windows 7 or Windows 8 (if
installed in
c:/Windows/Fonts
) by implementing Microsoftโs COLR/CPAL font format extensions. - Free, opensource software, with no strings attached.
- Available as a Nuget package.
-
Emoji.Wpf.TextBlock
: an emoji-aware version ofSystem.Windows.Controls.TextBlock
. -
Emoji.Wpf.RichTextBox
: an emoji-aware version ofSystem.Windows.Controls.RichTextBox
. -
Emoji.Wpf.Picker
: an emoji picker
Here is how to use Emoji.Wpf in your XAML:
<Window ...
xmlns:emoji="clr-namespace:Emoji.Wpf;assembly=Emoji.Wpf"
...>
...
<emoji:RichTextBox FontSize="24" Margin="5"/>
...
<emoji:TextBlock FontSize="24" Text="Hello! โฅ๐๐จ๐ฑโ๐๐ฉ๐ฟโ๐ฉ๐ปโ๐ฆ๐ฝ lol"/>
...
<emoji:Picker FontSize="40"/>
...
</Window>
More classes are to come, but feedback on what is needed is welcome.
I am not a very good WPF or even C# developer, but I think this could become a very useful and robust library if given enough care. Any help appreciated!