aboutsummaryrefslogtreecommitdiffstats
path: root/WarframeClock/OverlayWindow.xaml
blob: 63cc8f8da68fb733cc5749df38a628056606f702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>