You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<Window
|
|
|
|
x:Class="DownKyi.Views.SplashWindow"
|
|
|
|
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:local="clr-namespace:DownKyi.Views"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
Title=""
|
|
|
|
Width="500"
|
|
|
|
Height="300"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<WindowChrome.WindowChrome>
|
|
|
|
<WindowChrome
|
|
|
|
CaptionHeight="0"
|
|
|
|
CornerRadius="20"
|
|
|
|
GlassFrameThickness="0"
|
|
|
|
NonClientFrameEdges="None"
|
|
|
|
ResizeBorderThickness="4"
|
|
|
|
UseAeroCaptionButtons="False" />
|
|
|
|
</WindowChrome.WindowChrome>
|
|
|
|
<Grid Background="#FF00A1D6">
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
FontSize="30"
|
|
|
|
Foreground="White"
|
|
|
|
Text="Welcome to DownKyi!" />
|
|
|
|
</Grid>
|
|
|
|
</Window>
|