/Application/GUI/Windows/CloseProgress.xaml
XAML | 14 lines | 14 code | 0 blank | 0 comment | 0 complexity | 0c46836d622462660103e84679b18809 MD5 | raw file
1<Window x:Class="Stoffi.CloseProgress" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:loc="http://schemas.tomer.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 Title="Closing" Height="154" Width="367" Loaded="Window_Loaded" 6 WindowStyle="None" WindowStartupLocation="CenterOwner" 7 ResizeMode="NoResize"> 8 <Border BorderBrush="DarkBlue" BorderThickness="1" Background="AliceBlue"> 9 <StackPanel VerticalAlignment="Center"> 10 <Label loc:Translate.Uid="SavingSettings" Content="{loc:Translate Content}" Height="28" HorizontalAlignment="Center" Name="progressLabel" VerticalAlignment="Center" /> 11 <ProgressBar Height="16" HorizontalAlignment="Center" Name="progressBar" VerticalAlignment="Top" Width="205" IsIndeterminate="True" /> 12 </StackPanel> 13 </Border> 14</Window>