2026-06-16 12:41:05 +02:00
|
|
|
<Window x:Class="FritzTV.ClockWindow"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
WindowStyle="None"
|
|
|
|
|
AllowsTransparency="True"
|
|
|
|
|
Background="Transparent"
|
|
|
|
|
ShowInTaskbar="False"
|
|
|
|
|
IsHitTestVisible="False"
|
2026-06-19 00:17:51 +02:00
|
|
|
Topmost="False"
|
2026-06-16 12:41:05 +02:00
|
|
|
SizeToContent="WidthAndHeight">
|
|
|
|
|
<Border Background="#AA000000" CornerRadius="8" Padding="20,10">
|
|
|
|
|
<TextBlock x:Name="TxtClock"
|
2026-06-19 00:28:46 +02:00
|
|
|
Foreground="White" FontSize="48" FontWeight="Light"
|
|
|
|
|
FontFamily="Consolas"/>
|
2026-06-16 12:41:05 +02:00
|
|
|
</Border>
|
|
|
|
|
</Window>
|