-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoadingWindow.xaml
27 lines (24 loc) · 1.34 KB
/
LoadingWindow.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
<Window x:Class="Namanga_Hope_Center.LoadingWindow"
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:Namanga_Hope_Center"
mc:Ignorable="d"
Title="Loading Window" Height="450" Width="800">
<Grid>
<Image x:Name="SlideshowImage"
Source="pack://application:,,,/Namanga_Hope_Center;component/Resources/director.jpg"
Stretch="Uniform"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Visibility="Visible" Margin="0,51,337,0" Width="463" Height="552"/>
<Image Source="pack://application:,,,/Resources/logo.png"
HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="400,46,0,0" Height="419" Width="500" />
<TextBlock Text="Welcome to NAMANGA HOPE CENTER, ...touching lives and igniting the future!"
HorizontalAlignment="Center" VerticalAlignment="Top"
FontSize="20" Margin="0,12,0,0" Height="34" Width="780" />
<ProgressBar IsIndeterminate="True" VerticalAlignment="Bottom" Height="30"/>
</Grid>
</Window>