aboutsummaryrefslogtreecommitdiffstats
path: root/WarframeClock/OverlayWindow.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'WarframeClock/OverlayWindow.xaml')
-rw-r--r--WarframeClock/OverlayWindow.xaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/WarframeClock/OverlayWindow.xaml b/WarframeClock/OverlayWindow.xaml
new file mode 100644
index 0000000..63cc8f8
--- /dev/null
+++ b/WarframeClock/OverlayWindow.xaml
@@ -0,0 +1,22 @@
+<Window x:Class="WarframeClock.OverlayWindow"
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ mc:Ignorable="d"
+ Title="WarframeClock OverlayWindow"
+ WindowStyle="None"
+ ShowInTaskbar="false"
+ AllowsTransparency="True">
+ <Window.Background>
+ <SolidColorBrush Opacity="0.0" Color="Black" />
+ </Window.Background>
+ <Label x:Name="OverlayLabel"
+ HorizontalAlignment="Left"
+ VerticalAlignment="Bottom"
+ FontFamily="Segoe UI"
+ FontSize="14"
+ Content="!!PLACEHOLDER!!"
+ Foreground="White"
+ Margin="30,0,0,20" />
+</Window>