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