Giter Site home page Giter Site logo

fontawesomeenum's Introduction

FontAwesomeEnum

Creates enums and resources C# classes to be able to use the Font-Awesome icons set (from versions 4 to 5, available here: http://fortawesome.github.io/Font-Awesome/) in .NET a WPF applications.

The generated FontAwesomeEnum.cs file looks like this:

namespace FontAwesome
{
  /// <summary>
  /// Font Awesome Resources.
  /// </summary>
  public enum FontAwesomeEnum
  {
    /// <summary>
    /// fa-500px glyph (f26e).
    /// </summary>
    _500px = 0xf26e,

    /// <summary>
    /// fa-address-book glyph (f2b9).
    /// </summary>
    AddressBook = 0xf2b9,

    /// <summary>
    /// fa-address-book-o glyph (f2ba).
    /// </summary>
    AddressBookO = 0xf2ba,

    /// <summary>
    /// fa-address-card glyph (f2bb).
    /// </summary>
    AddressCard = 0xf2bb,
    
    .... etc ...
    
    }
    
    /// <summary>
    /// Font Awesome Resources.
    /// </summary>
    public static partial class FontAwesomeResource
    {
      /// <summary>
      /// fa-500px glyph (f26e).
      /// </summary>
      public const char _500px = '\uf26e';

      /// <summary>
      /// fa-address-book glyph (f2b9).
      /// </summary>
      public const char AddressBook = '\uf2b9';

      /// <summary>
      /// fa-address-book-o glyph (f2ba).
      /// </summary>
      public const char AddressBookO = '\uf2ba';

      /// <summary>
      /// fa-address-card glyph (f2bb).
      /// </summary>
      public const char AddressCard = '\uf2bb';
      
    .... etc ...
    
    }
}

fontawesomeenum's People

Contributors

smourier avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.