-
Notifications
You must be signed in to change notification settings - Fork 0
/
RecWindow.xaml
20 lines (18 loc) · 1.09 KB
/
RecWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window x:Class="KeyboardMouseRecorder.RecWindow"
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:KeyboardMouseRecorder"
mc:Ignorable="d"
MaxWidth="300" MaxHeight="100"
MinWidth="300" MinHeight="100"
Title="Martec Test Bed" Icon="/images/martec.ico" Height="100" Width="300" Opacity="1" WindowStyle="None" Background="red">
<WindowChrome.WindowChrome>
<WindowChrome GlassFrameThickness="0" CornerRadius="0" CaptionHeight="0"/>
</WindowChrome.WindowChrome>
<Grid>
<TextBlock Margin="10,10,11,50" FontSize="26" Background="red" Foreground="White">Registrazione in corso...</TextBlock>
<TextBlock Margin="10,55,11,5" FontSize="26" Background="red" Foreground="White"><Run Text="Stop: "/><Run Language="it-it" Text="LCTRL+LSHIFT"/></TextBlock>
</Grid>
</Window>