-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
15 lines (15 loc) · 949 Bytes
/
MainWindow.xaml
File metadata and controls
15 lines (15 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Window x:Class="OpenOSD.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:OpenOSD"
mc:Ignorable="d"
Title="MainWindow" Height="120" Width="350" ResizeMode="NoResize" Topmost="True" WindowStyle="None" Background="#CC1D1D1D" AllowsTransparency="True" Foreground="White">
<Grid>
<StackPanel Margin="20" Orientation="Horizontal">
<Image x:Name="imgIcon" Width="64" Height="64" Margin="10, 0, 0, 0"/>
<Label x:Name="lblMainText" Width="230" Content="CAPS LOCK ON" VerticalAlignment="Center" Foreground="White" Margin="10, 0, 0, 0" FontFamily="Arial Black" FontSize="24"/>
</StackPanel>
</Grid>
</Window>