16 lines
826 B
XML
16 lines
826 B
XML
<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>
|