amwx / FluentAvalonia

Control library focused on fluent design and bringing more WinUI controls into Avalonia
MIT License
1.05k stars 97 forks source link

The "Export" IconSource Enum value is missing #618

Open dcooperch opened 1 month ago

dcooperch commented 1 month ago

The "Export" IconSource cannot be resolved because it is missing in Symbol.cs But is included in FASymbolFontList.json Here:

 {
    "Name": "Export",
    "Codepoint": "EDE1"
 },

Workaround:

<CommandBarButton>
  <CommandBarButton.IconSource>
      <FontIconSource Glyph="&#xEDE1;" 
                         FontFamily="{StaticResource SymbolThemeFontFamily}"/>
  </CommandBarButton.IconSource>
</CommandBarButton>