WPF-图标字体用法
首先登录阿里巴巴图标矢量图库
选择好需要的图标,然后下载素材,下载内容如下:
然后将iconfont.ttf加入到项目的Resources文件夹下;
在App.xaml的资源字典Resource中写入:
1 <Application.Resources> 2 <ResourceDictionary> 3 <ResourceDictionary.MergedDictionaries> 4 <ResourceDictionary> 5 <FontFamily x:Key="iconFont">Pack://application:,,,/MyFirstWPF;component/Resources/iconfont.ttf#iconfont</FontFamily> 6 </ResourceDictionary> 7 </ResourceDictionary.MergedDictionaries> 8 </ResourceDictionary> 9 </Application.Resources>
然后打开下载内容中的demo_index.html:
将红框中的代码写入到TextBlock的Text,并设置TextBlock的FontFamily:
1 <TextBlock Text="" FontFamily="{StaticResource iconFont}" FontSize="18" Foreground="Red"/>
注意,若TextBlock使用Binding,字体代码在cs代码中应写成:
private string txt = "\xe64a";