markus / ConvertService / ServiceController / Markus.Service.StationController / Controls / TraceDocument.xaml @ 5c387707
이력 | 보기 | 이력해설 | 다운로드 (1.21 KB)
1 | 5c387707 | semi | <FlowDocument x:Class="Markus.Service.StationController.Controls.TraceDocument" |
---|---|---|---|
2 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
4 | FontSize="12" FontFamily="Courier New" PageWidth="10000" Loaded="Document_Loaded" Unloaded="Document_Unloaded"> |
||
5 | <FlowDocument.Resources>
|
||
6 | <Style TargetType="{x:Type Run}" x:Key="Information"> |
||
7 | <Setter Property="Foreground" Value="Black"/> |
||
8 | <Setter Property="FontWeight" Value="Normal"/> |
||
9 | </Style>
|
||
10 | <Style TargetType="{x:Type Run}" x:Key="Error"> |
||
11 | <Setter Property="Foreground" Value="Red"/> |
||
12 | <Setter Property="FontWeight" Value="Bold"/> |
||
13 | </Style>
|
||
14 | <Style TargetType="{x:Type Run}" x:Key="Warning"> |
||
15 | <Setter Property="Foreground" Value="Red"/> |
||
16 | <Setter Property="FontWeight" Value="Normal"/> |
||
17 | </Style>
|
||
18 | <Style TargetType="{x:Type Run}" x:Key="Fail"> |
||
19 | <Setter Property="Foreground" Value="Fuchsia"/> |
||
20 | <Setter Property="FontWeight" Value="Bold"/> |
||
21 | </Style>
|
||
22 | </FlowDocument.Resources>
|
||
23 | <Paragraph>
|
||
24 | |||
25 | </Paragraph>
|
||
26 | </FlowDocument> |