We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692ce77 commit 13c9923Copy full SHA for 13c9923
2 files changed
dev/DevWinUI/Controls/Ported/SettingsCard/SettingsCard.Properties.cs
@@ -51,7 +51,7 @@ public string LaunchUri
51
nameof(ActionIcon),
52
typeof(IconElement),
53
typeof(SettingsCard),
54
- new PropertyMetadata(defaultValue: "\ue974"));
+ new PropertyMetadata(defaultValue: null));
55
56
/// <summary>
57
/// The backing <see cref="DependencyProperty"/> for the <see cref="ActionIconToolTip"/> property.
dev/DevWinUI/Controls/Ported/SettingsCard/SettingsCard.cs
@@ -72,6 +72,8 @@ public partial class SettingsCard : ButtonBase
72
public SettingsCard()
73
{
74
this.DefaultStyleKey = typeof(SettingsCard);
75
+
76
+ ActionIcon = new FontIcon { Glyph = "\ue974", MirroredWhenRightToLeft = true };
77
}
78
79
/// <inheritdoc />
0 commit comments