-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
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
Restore PathIcon Foreground setter in Fluent theme #12789
Restore PathIcon Foreground setter in Fluent theme #12789
Conversation
@@ -10,6 +10,7 @@ | |||
</StackPanel> | |||
</Design.PreviewWith> | |||
<ControlTheme x:Key="{x:Type PathIcon}" TargetType="PathIcon"> | |||
<Setter Property="Foreground" Value="{DynamicResource ThemeForegroundColor}" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ThemeForegroundColor doesn't exist in Fluent.
Also, we normally leave foreground empty in controls, so it can be inherited.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switched to TextControlForeground
As for inheritance it doesn't work here for some reason
You can test this PR using the following package version. |
You can test this PR using the following package version. |
You can test this PR using the following package version. |
* Restore PathIcon Foreground setter in Fluent theme * Use TextControlForeground resource
What does the pull request do?
Restores PathIcon Foreground setter in Fluent theme
What is the current behavior?
PathIcon Foreground setter is missing Fluent theme, Simple theme has it
What is the updated/expected behavior with this PR?
PathIcon Foreground is set correctly in Dark and Light theme
How was the solution implemented (if it's not obvious)?
Checklist
Breaking changes
Obsoletions / Deprecations
Fixed issues