Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SubEthaSensOMatic/wpf.fontawesome5
Font Awesome 5 WPF Integration
https://github.com/SubEthaSensOMatic/wpf.fontawesome5
List: wpf.fontawesome5
desktop dot-net fontawesome icons windows wpf
Last synced: 3 months ago
JSON representation
Font Awesome 5 WPF Integration
- Host: GitHub
- URL: https://github.com/SubEthaSensOMatic/wpf.fontawesome5
- Owner: SubEthaSensOMatic
- License: mit
- Created: 2018-03-02T06:30:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T10:12:31.000Z (almost 5 years ago)
- Last Synced: 2024-07-20T05:00:29.729Z (4 months ago)
- Topics: desktop, dot-net, fontawesome, icons, windows, wpf
- Language: C#
- Size: 612 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wpf - wpf.fontawesome5 - (FREE, OPEN SOURCE) With wpf.fontawesome5 you can use the popular icon library FontAwesome 5.12.0 within your WPF applications. (Fonts / Individual Controls)
README
# wpf.fontawesome5
With **wpf.fontawesome5** you can use the popular icon library FontAwesome 5.12.0 within your WPF applications.## Installation
You can download source and build project on your own or install package via nuget```PowerShell
PM> Install-Package wpf.fontawesome5
```## Usage
First define namespace in your xaml file:
```xaml
...
```
After that you can use the **fa:Icon** control to display awesome icons. Property **FaName** specifies the icon name to display. If an icon has more then one style you can switch it with property **FaStyle** between **Brands**, **Regular** und **Solid**. The **fa:Icon** control stretches automatically to container size or you can set **Width** and **Height** to size your icon.
```xaml
...
...```