swharden / Tmoji

A taskbar app to quickly copy emoji and special symbols
https://swharden.com/software/Tmoji
MIT License
3 stars 1 forks source link

Color emojis #3

Open github-at-kim-homann-dot-de opened 10 months ago

github-at-kim-homann-dot-de commented 10 months ago

Great stuff, your emoji tray icon. Exactly what I was looking for. The only thing that's missing is color. How do you like this? shot1 shot2 The source code changes required are very small: 1.) Add the NuGet package "Emoji.Wpf" 2.) In EditorWindow.xaml add the namespace xmlns:emoji="clr-namespace:Emoji.Wpf;assembly=Emoji.Wpf" and replace the last "TextBox" with "emoji:TextBox". 3.) In MainWindow.xaml.cs, replace the "Content = label" with "Content = new Emoji.Wpf.TextBlock { Text = label }" (I also added "Background = Brushes.White" bc I like it better with the color emojis).

That's it.

github-at-kim-homann-dot-de commented 10 months ago

Forgot one thing: 3b.) In Button_Emoji_Click(), you have to do: string text = ((sender as Button).Content as Emoji.Wpf.TextBlock).Text;