Popularity
2.3
Growing
Activity
0.0
Stable
44
4
22

Description

Font-Awesome for Windows Forms and WPF.

Code Quality Rank: L4
Programming language: C#
License: MIT License
Tags: WinForms     WPF     Library     Tools     FontAwesome     FontAwesomeNet     WindowsForms    
Latest version: v1.1.0

FontAwesomeNet alternatives and similar packages

Based on the "Tools" category.
Alternatively, view FontAwesomeNet alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of FontAwesomeNet or a related project?

Add another 'Tools' Package

README

FontAwesomeNet

Font-Awesome for .NET(Windows Forms and WPF)

AppVeyor build status NuGet MyGet

sample application

开发环境

Windows 10 + Visual Studio 2013 + .NetFramework 3.5

功能

  • 将 FontAwesome 图标生成图片和 Icon 图标

使用

可以在 Windows Forms 和 WPF 程序中使用。

  • 添加类库,可以通过 nuget 安装。

    PM Install-Package FontAwesomeNet
    
  • 添加 FontAwesomeNet 命名空间:FontAwesomeNet

  • 示例

// get FontAwesome icon class names(type is Dictionary<string, int>)
string[] names = FontAwesome.TypeDict.Select(v => v.Key).ToArray();

// use FontAwesome icon class name get FontAwesome icon Unicode value
int val = FontAwesome.TypeDict["fa-heart"];//0xf004

// defalut:
Bitmap bmp = FontAwesome.GetImage(val);//0xf004
Icon ico = FontAwesome.GetIcon(val);//0xf004

// custom:
FontAwesome.IconSize = 128;//change icon size
FontAwesome.ForeColer = Color.Purple;//change icon forecolor
Bitmap bmp = FontAwesome.GetImage(val);//0xf004
Icon ico = FontAwesome.GetIcon(val);//0xf004

协议

MIT License

如有问题,欢迎指出。


*Note that all licence references and agreements mentioned in the FontAwesomeNet README section above are relevant to that project's source code only.