We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just like the title, while i try to use MenuFlyoutItem control with icon "MusicAlbum" like this:
<MenuFlyoutItem Text="CheckAlbum" Icon="MusicAlbum" />
It crashed and reported\
"Failed to create a 'Microsoft.UI.Xaml.Controls.IconElement' from the text 'MusicAlbum'. [Line: 46 Position: 49]”
but when i tried to use FontIcon like this, it worked well.
<MenuFlyoutItem Text="CheckAlbum"> <MenuFlyoutItem.Icon> <FontIcon Glyph=""/> </MenuFlyoutItem.Icon> </MenuFlyoutItem>
Above..
No response
None
Windows Insider Build (xxxxx)
Windows Version: Windows 11 23H2 os.22631.3085
The text was updated successfully, but these errors were encountered:
Named glyphs / symbols only work if they exist in the Symbol Enum, which MusicAlbum does not:
MusicAlbum
https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.symbol
If you would like to use a glyph from the Segoe MDL2 Assets font that is not included in the Symbol enum, then use a FontIcon.
Sorry, something went wrong.
alright, well thanks!
No branches or pull requests
Describe the bug
Just like the title, while i try to use MenuFlyoutItem control with icon "MusicAlbum" like this:
It crashed and reported\
but when i tried to use FontIcon like this, it worked well.
Steps to reproduce the bug
Above..
Expected behavior
No response
Screenshots
No response
NuGet package version
None
Windows version
Windows Insider Build (xxxxx)
Additional context
Windows Version: Windows 11 23H2 os.22631.3085
The text was updated successfully, but these errors were encountered: