forked from jeremybytes/SlideShow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
36 lines (35 loc) · 1.59 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Window x:Class="SlideShow.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:SlideShow"
mc:Ignorable="d"
Title="Slide Show" d:DesignHeight="640" d:DesignWidth="800"
KeyDown="Window_KeyDown"
Background="Black"
WindowStartupLocation="CenterScreen"
WindowState="Minimized"
WindowStyle="None"
Cursor="None">
<Grid>
<Image Name="targetImage1" Stretch="Uniform" Opacity="1"/>
<Image Name="targetImage2" Stretch="Uniform" Opacity="0"/>
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Margin="16,0,0,0">
<TextBlock Name="status" Foreground="WhiteSmoke" Margin="0"
FontFamily="Segoe UI Symbol" FontSize="18"
Text="⊘" VerticalAlignment="Bottom"/>
<TextBlock Name="info" Foreground="WhiteSmoke"
Margin="12,0,0,3" VerticalAlignment="Bottom"
Text="InfoText"/>
</StackPanel>
<local:SettingsView x:Name="settingsView"
Margin="12"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Visibility="{Binding Visible}"/>
</Grid>
</Window>