Skip to content

Commit 7671496

Browse files
committedFeb 3, 2025
更新README.md
1 parent 1270c3e commit 7671496

File tree

4 files changed

+41
-9
lines changed

4 files changed

+41
-9
lines changed
 

‎README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@ xmlns:md="clr-namespace:EleCho.MdViewer;assembly=EleCho.MdViewer"
1818
```
1919
3. 使用MdViewer控件
2020
```xml
21-
<ScrollViewer Grid.Column="1">
21+
<ScrollViewer>
2222
<md:MarkdownViewer x:Name="MdViewer"
2323
Content="{Binding Markdown}"/>
2424
</ScrollViewer>
2525
```
2626

27+
## 定制主题
28+
配置参考[/src/MdTest/CustomStyle.xaml](https://github.com/OrgEleCho/EleCho.MdViewer/blob/master/src/MdTest/CustomStyle.xaml)
29+
在资源字典处替换```<mu:ThemeDictionary ColorMode="Dark"/>```即可。
30+
2731
## 示例
28-
见测试项目/src/MdTest
29-
![light](https://github.com/OrgEleCho/EleCho.MdViewer/assets/example_light.png)
30-
![dark](https://github.com/OrgEleCho/EleCho.MdViewer/assets/example_dark.png)
32+
见测试项目[/src/MdTest](https://github.com/OrgEleCho/EleCho.MdViewer/tree/master/src/MdTest)
33+
![light](https://raw.githubusercontent.com/OrgEleCho/EleCho.MdViewer/refs/heads/master/assets/example_light.png)
34+
![dark](https://raw.githubusercontent.com/OrgEleCho/EleCho.MdViewer/refs/heads/master/assets/example_dark.png)

‎src/MdTest/App.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ResourceDictionary>
99
<ResourceDictionary.MergedDictionaries>
1010
<mu:ControlsDictionary />
11-
<mu:ThemeDictionary ColorMode="Dark"/>
11+
<ResourceDictionary Source="/CustomStyle.xaml" />
1212
</ResourceDictionary.MergedDictionaries>
1313
</ResourceDictionary>
1414
</Application.Resources>

‎src/MdTest/CustomStyle.xaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3+
xmlns:md="clr-namespace:EleCho.MdViewer.Markdown;assembly=EleCho.MdViewer">
4+
<Brush x:Key="{x:Static md:MarkdownResKey.MainForeground}">#dddddd</Brush>
5+
6+
<Brush x:Key="{x:Static md:MarkdownResKey.HeadingForeground}">#8E44AD</Brush>
7+
8+
<Brush x:Key="{x:Static md:MarkdownResKey.CodeBlockForeground}">#dddddd</Brush>
9+
<Brush x:Key="{x:Static md:MarkdownResKey.CodeBlockBackground}">#0CFFFFFF</Brush>
10+
11+
<Brush x:Key="{x:Static md:MarkdownResKey.CodeInlineForeground}">#dddddd</Brush>
12+
<Brush x:Key="{x:Static md:MarkdownResKey.CodeInlineBackground}">#8C8E44AD</Brush>
13+
14+
<Brush x:Key="{x:Static md:MarkdownResKey.QuoteBlockForeground}">#dddddd</Brush>
15+
<Brush x:Key="{x:Static md:MarkdownResKey.QuoteBlockBackground}">Transparent</Brush>
16+
<Brush x:Key="{x:Static md:MarkdownResKey.QuoteBlockBorder}">#8C8E44AD</Brush>
17+
18+
<Brush x:Key="{x:Static md:MarkdownResKey.TableForeground}">#dddddd</Brush>
19+
<Brush x:Key="{x:Static md:MarkdownResKey.TableBackground}">#0CFFFFFF</Brush>
20+
<Brush x:Key="{x:Static md:MarkdownResKey.TableStripe}">#0CFFFFFF</Brush>
21+
<Brush x:Key="{x:Static md:MarkdownResKey.TableBorder}">#3d3d3d</Brush>
22+
23+
24+
<Brush x:Key="{x:Static md:MarkdownResKey.ThematicBreak}">#c5c5c5</Brush>
25+
<Brush x:Key="{x:Static md:MarkdownResKey.Mark}">#8C8E44AD</Brush>
26+
27+
<Brush x:Key="{x:Static md:MarkdownResKey.Link}">#9F8E44AD</Brush>
28+
<Brush x:Key="{x:Static md:MarkdownResKey.LinkHover}">#8E44AD</Brush>
29+
30+
<Brush x:Key="{x:Static md:MarkdownResKey.CommonControlMask}">#0CFFFFFF</Brush>
31+
<Brush x:Key="{x:Static md:MarkdownResKey.CommonControlBorder}">#3d3d3d</Brush>
32+
</ResourceDictionary>

‎src/MdTest/MainWindow.xaml

-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
xmlns:local="clr-namespace:MdTest"
77
xmlns:md="clr-namespace:EleCho.MdViewer;assembly=EleCho.MdViewer"
88
mc:Ignorable="d"
9-
Background="Black"
10-
Foreground="White"
119
Title="MainWindow"
1210
Height="450"
1311
Width="800">
@@ -18,8 +16,6 @@
1816
</Grid.ColumnDefinitions>
1917
<TextBox x:Name="MdEditor"
2018
Grid.Column="0"
21-
Background="Black"
22-
Foreground="White"
2319
AcceptsReturn="True"
2420
AcceptsTab="True"
2521
TextWrapping="Wrap"

0 commit comments

Comments
 (0)
Please sign in to comment.