Thomas Charriere
Thomas Charriere
[did you see this comment?](https://github.com/charri/Font-Awesome-WPF/blob/master/example/Example.FontAwesome.WPF/Single.xaml#L41) I think this could be solved by providing a TypeConverter for the enum. i.e. `[TypeConverter(typeof(FontAwesomeStringConverter))]` would be cool to have better vs designer support -...
Hmm strange, just tried out the demo project with visual studio 2015 (same build and .net version) and did not receive the error messages you describe. do you have any...
I'm always a bit weary on long strings floating around the place. Would it be worth creating a second markup extension just for setting the font?
Well it helps to read stuff before posting! @drewnoakes had already posted what I was refering to :) - woops!
Looks doable but would require using the new rendering method used in #33
That is strange, I based the implementation of the [ImageSourceConverter](https://github.com/charri/Font-Awesome-WPF/blob/master/src/WPF/FontAwesome.WPF/Converters/ImageSourceConverter.cs) on this: http://stackoverflow.com/questions/7445119/improved-ivalueconverter-markupextension-or-dependencyobject And I do see the brush change if I pass it as a parameter :/ I'll have...
currently the id is only used during the FontAwesomeIcon enum generation process to build the cref url for xmldoc. I personally would create a converter to convert the string to...
There is now an example on how to do this (release 4.5.0.7).
Aliases will not work - as they have the same value as that of a normal icon, i wouldn't be able to create a two-way binding. I will have a...
The HttpMessageHandler is the handler used to send http requests from the HttpClient. HttpClient basically bulds the requests and delegates the actual transmission to the handler. - [modernhttpclient](https://github.com/paulcbetts/ModernHttpClient) provides a...