|
|
@@ -12,6 +12,7 @@
|
|
|
Background="Transparent"
|
|
|
FontFamily="{Binding FontFamily, Source={x:Static p:Settings.Default}, Mode=OneWay}"
|
|
|
MouseDown="Window_MouseDown"
|
|
|
+ MouseDoubleClick="Window_MouseDoubleClick"
|
|
|
ResizeMode="NoResize"
|
|
|
ShowInTaskbar="{Binding ShowInTaskbar, Source={x:Static p:Settings.Default}, Mode=TwoWay}"
|
|
|
SizeToContent="WidthAndHeight"
|
|
|
@@ -26,6 +27,11 @@
|
|
|
|
|
|
<Window.ContextMenu>
|
|
|
<ContextMenu>
|
|
|
+ <MenuItem Click="MenuItemCopy_OnClick"
|
|
|
+ Header="_Copy" />
|
|
|
+
|
|
|
+ <Separator />
|
|
|
+
|
|
|
<MenuItem Header="Stay on _top"
|
|
|
IsCheckable="True"
|
|
|
IsChecked="{Binding Topmost, Source={x:Static p:Settings.Default}, Mode=TwoWay}" />
|
|
|
@@ -117,7 +123,8 @@
|
|
|
</TextBlock.Style>
|
|
|
</TextBlock>
|
|
|
|
|
|
- <TextBlock HorizontalAlignment="Center"
|
|
|
+ <TextBlock x:Name="TimeTextBlock"
|
|
|
+ HorizontalAlignment="Center"
|
|
|
Text="{Binding CurrentTimeOrCountdownString}">
|
|
|
<TextBlock.Foreground>
|
|
|
<SolidColorBrush Color="{Binding TextColor, Source={x:Static p:Settings.Default}, Mode=OneWay}" />
|