This commit is contained in:
2025-10-26 10:40:21 -05:00
commit 45b9d70c90
14 changed files with 1043 additions and 0 deletions

15
OverlayWindow.xaml Normal file
View File

@@ -0,0 +1,15 @@
<Window x:Class="Bedtimer.OverlayWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
AllowsTransparency="True" Background="Transparent"
WindowStyle="None" Topmost="True" ShowInTaskbar="False"
Width="360" Height="96">
<Grid>
<Border x:Name="HudPanel" CornerRadius="10" Padding="12" Background="#66000000" Visibility="Collapsed">
<TextBlock x:Name="HudText" FontSize="24" FontWeight="SemiBold" Foreground="White"/>
</Border>
<Border x:Name="BedLabel" CornerRadius="10" Padding="12" Background="#99000000" Visibility="Collapsed">
<TextBlock Text="Its bedtime." FontSize="26" FontWeight="Bold" Foreground="White"/>
</Border>
</Grid>
</Window>