Description
Font-Awesome for Windows Forms and WPF.
FontAwesomeNet alternatives and similar packages
Based on the "Tools" category.
Alternatively, view FontAwesomeNet alternatives based on common mentions on social networks and blogs.
-
Another Redis Desktop Manager
🚀🚀🚀A faster, better and more stable Redis desktop manager [GUI client], compatible with Linux, Windows, Mac. -
ShareX
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from. -
Downloader
Fast, cross-platform and reliable multipart downloader with asynchronous progress events for .NET applications. -
Fake JSON Server
Fake JSON Server is a Fake REST API that can be used as a Back End for prototyping or as a template for a CRUD Back End. -
Mockaco
🐵 HTTP mock server, useful to stub services and simulate dynamic API responses, leveraging ASP.NET Core features, built-in fake data generation and pure C# scripting -
Workflow Server
Workflow Server is a ready-to-use Workflow Engine-based application that you can deploy into your infrastructure. It can be integrated with NodeJS, PHP, Ruby, .NET, or Java applications via a REST API. Workflow Server is a key component for managing the lifecycle of business objects within your enterprise. -
Stratio.Extentions.Configuration.Vault
Simplifying Secrets Management in .NET using Hashicorp Vault (powered by Stratio) -
JSON Formatter and Validator
A blazing fast JSON formatter and validator that won't share JSON with a server. -
CatLight
Build status notifications for TFS/Jenkins/Travis/Appveyor. Cross-platform desktop app based on .Net Core and Electron. [Free][Proprietary]
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FontAwesomeNet or a related project?
README
FontAwesomeNet
Font-Awesome for .NET(Windows Forms and WPF)
开发环境
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
协议
如有问题,欢迎指出。
*Note that all licence references and agreements mentioned in the FontAwesomeNet README section above
are relevant to that project's source code only.