|
79 | 79 | <Setter Property="Stroke" Value="Blue" />
|
80 | 80 | </Style>
|
81 | 81 |
|
| 82 | + <Style x:Key="BaseClockPosition" TargetType="{x:Type Canvas}" /> |
| 83 | + |
82 | 84 | <Style x:Key="BaseClockPanel" TargetType="{x:Type StackPanel}">
|
83 | 85 | <Setter Property="Orientation" Value="Horizontal" />
|
84 | 86 | <Setter Property="HorizontalAlignment" Value="Right" />
|
|
88 | 90 | <Setter Property="Visibility" Value="Collapsed" />
|
89 | 91 | </Style>
|
90 | 92 | <Style x:Key="BaseClockBox" TargetType="{x:Type TextBlock}">
|
91 |
| - <Setter Property="FontSize" Value="20" /> |
| 93 | + <Setter Property="FontSize" Value="22" /> |
92 | 94 | <Setter Property="Foreground" Value="#8f8f8f" />
|
| 95 | + <Setter Property="HorizontalAlignment" Value="Right" /> |
93 | 96 | <Setter Property="VerticalAlignment" Value="Center" />
|
94 |
| - <Setter Property="Margin" Value="10,0,0,0" /> |
| 97 | + <Setter Property="Margin" Value="0,0,2,0" /> |
95 | 98 | </Style>
|
96 | 99 | <Style x:Key="BaseDateBox" TargetType="{x:Type TextBlock}">
|
97 |
| - <Setter Property="FontSize" Value="14" /> |
| 100 | + <Setter Property="FontSize" Value="16" /> |
98 | 101 | <Setter Property="Foreground" Value="#8f8f8f" />
|
| 102 | + <Setter Property="HorizontalAlignment" Value="Right" /> |
99 | 103 | <Setter Property="VerticalAlignment" Value="Center" />
|
100 |
| - <Setter Property="Margin" Value="0,0,0,0" /> |
| 104 | + <Setter Property="Margin" Value="0,0,10,0" /> |
101 | 105 | </Style>
|
102 | 106 |
|
103 | 107 | <Style
|
104 | 108 | x:Key="ClockBox"
|
105 | 109 | BasedOn="{StaticResource BaseClockBox}"
|
106 | 110 | TargetType="{x:Type TextBlock}">
|
107 |
| - <Setter Property="Foreground" Value="#8f8f8f" /> |
| 111 | + <Setter Property="Foreground" Value="#C6C6C6" /> |
108 | 112 | </Style>
|
109 | 113 | <Style
|
110 | 114 | x:Key="DateBox"
|
111 | 115 | BasedOn="{StaticResource BaseDateBox}"
|
112 | 116 | TargetType="{x:Type TextBlock}">
|
113 |
| - <Setter Property="Foreground" Value="#8f8f8f" /> |
| 117 | + <Setter Property="Foreground" Value="#C6C6C6" /> |
114 | 118 | </Style>
|
115 | 119 | <Style
|
116 | 120 | x:Key="ClockPanel"
|
|
0 commit comments