File tree 4 files changed +41
-9
lines changed
4 files changed +41
-9
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,17 @@ xmlns:md="clr-namespace:EleCho.MdViewer;assembly=EleCho.MdViewer"
18
18
```
19
19
3 . 使用MdViewer控件
20
20
``` xml
21
- <ScrollViewer Grid.Column= " 1 " >
21
+ <ScrollViewer >
22
22
<md : MarkdownViewer x : Name =" MdViewer"
23
23
Content =" {Binding Markdown}" />
24
24
</ScrollViewer >
25
25
```
26
26
27
+ ## 定制主题
28
+ 配置参考[ /src/MdTest/CustomStyle.xaml] ( https://github.com/OrgEleCho/EleCho.MdViewer/blob/master/src/MdTest/CustomStyle.xaml ) ,
29
+ 在资源字典处替换``` <mu:ThemeDictionary ColorMode="Dark"/> ``` 即可。
30
+
27
31
## 示例
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 )
Original file line number Diff line number Diff line change 8
8
<ResourceDictionary >
9
9
<ResourceDictionary .MergedDictionaries>
10
10
<mu : ControlsDictionary />
11
- <mu : ThemeDictionary ColorMode = " Dark " />
11
+ <ResourceDictionary Source = " /CustomStyle.xaml " />
12
12
</ResourceDictionary .MergedDictionaries>
13
13
</ResourceDictionary >
14
14
</Application .Resources>
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 6
6
xmlns : local =" clr-namespace:MdTest"
7
7
xmlns : md =" clr-namespace:EleCho.MdViewer;assembly=EleCho.MdViewer"
8
8
mc : Ignorable =" d"
9
- Background =" Black"
10
- Foreground =" White"
11
9
Title =" MainWindow"
12
10
Height =" 450"
13
11
Width =" 800" >
18
16
</Grid .ColumnDefinitions>
19
17
<TextBox x : Name =" MdEditor"
20
18
Grid.Column=" 0"
21
- Background =" Black"
22
- Foreground =" White"
23
19
AcceptsReturn =" True"
24
20
AcceptsTab =" True"
25
21
TextWrapping =" Wrap"
You can’t perform that action at this time.
0 commit comments