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
The following style :
<Style TargetType="Controls:Icon"> <Style.Setters> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="Controls:Icon"> <TextBlock Text="123" /> </ControlTemplate> </Setter.Value> </Setter> </Style.Setters> </Style>
Is not interpreted properly by the parser, leading to an empty style.
Found in Uno.UI 1.31.0-dev.8
1.31.0-dev.8
Write the style as follows:
<Style TargetType="Controls:Icon"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="Controls:Icon"> <TextBlock Text="123" /> </ControlTemplate> </Setter.Value> </Setter> </Style>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following style :
Is not interpreted properly by the parser, leading to an empty style.
Found in Uno.UI
1.31.0-dev.8
Workaround
Write the style as follows:
The text was updated successfully, but these errors were encountered: