Heading color does not change.
See original GitHub issue<UserControl ...
Loaded="LicenseDialog_OnLoaded">
<FlowDocumentScrollViewer x:Name="FlowDocumentScrollViewer" />
</UserControl>
private void LicenseDialog_OnLoaded(object sender, RoutedEventArgs e)
{
var licenseContent = File.ReadAllText("License.md");
var flowDocument = Markdown.ToFlowDocument(licenseContent);
flowDocument.Foreground = Brushes.White;
FlowDocumentScrollViewer.Document = flowDocument;
}
License.md
### License
Test license.
**Test license.**
Test license.
Test license.
...
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
No matter what I try the header won't change color
This sounds like a caching issue. I can change the bg color of .top-header using developer tools and it changes with no problem....
Read more >Style of header gone wild: colors do not change
After a comment by @cybernetic.nomad, I have shown the hidden signs and changed the color of the pilcrow sign (¶).
Read more >How to change the colour of heading 2
With your cursor in any Heading 2 title, press ctrl+shift+s, in the apply style dialog click Modify, click the Format button at the...
Read more >Header Text Color not changing
Hi, I can't get the header text color to change. I change it under Customizing -> Colors -> Header Text Color. It changes...
Read more >My customizer will not let me change the color of ...
Now your instructions say that the customizer will let me do that under the 'Colors' section, but it will not. It will change...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Otiel , I’ve created a separate resource dictionary file and define the style there like:
Thanks, exactly what I needed!