-
Notifications
You must be signed in to change notification settings - Fork 0
/
Waiting.xaml
14 lines (13 loc) · 924 Bytes
/
Waiting.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="LicenseMe.Waiting"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LicenseMe"
mc:Ignorable="d"
Title="Waiting" Height="77" Width="328" ShowInTaskbar="False">
<Grid>
<TextBlock x:Name="WaitingText" HorizontalAlignment="Center" Height="16" Margin="0,7,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top" Width="298" TextAlignment="Center" FontFamily="Segoe UI Historic"/>
<ProgressBar x:Name="WaitingBar" HorizontalAlignment="Center" Height="23" Margin="0,28,0,0" VerticalAlignment="Top" Width="308" RenderTransformOrigin="0.498,0.523" IsIndeterminate="True"/>
</Grid>
</Window>