initial
This commit is contained in:
15
OverlayWindow.xaml
Normal file
15
OverlayWindow.xaml
Normal 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="It’s bedtime." FontSize="26" FontWeight="Bold" Foreground="White"/>
|
||||
</Border>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user