diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-06 09:39:54 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-06 09:39:54 +0200 |
| commit | 59f73fdea8ec23aa6c5482289f9acf96079affc3 (patch) | |
| tree | 491bcf1373ab9174a0edd93c3ee46e1ee000087b /Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml | |
| parent | 333611ef25aa0a51366cd613f258ffe7575d56b2 (diff) | |
| download | Tango-59f73fdea8ec23aa6c5482289f9acf96079affc3.tar.gz Tango-59f73fdea8ec23aa6c5482289f9acf96079affc3.zip | |
Implemented boot screen utility for first OS boot.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml new file mode 100644 index 000000000..a199d69c5 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.BootScreen/MainWindow.xaml @@ -0,0 +1,17 @@ +<Window x:Class="Tango.PPC.BootScreen.MainWindow" + 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:Tango.PPC.BootScreen" + mc:Ignorable="d" + Title="MainWindow" Height="1280" Width="800" Foreground="Gainsboro" ShowInTaskbar="False" WindowStyle="None" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" WindowState="Maximized" Background="Black"> + <Grid> + <StackPanel Margin="40" VerticalAlignment="Center"> + <Image Source="/machine-trans.png" Height="300" RenderOptions.BitmapScalingMode="Fant" /> + <TextBlock HorizontalAlignment="Center" FontSize="25" Margin="0 40 0 0">Configuring operation system settings, please wait...</TextBlock> + </StackPanel> + + <ProgressBar VerticalAlignment="Bottom" IsIndeterminate="True" Height="15" Foreground="Gainsboro" Background="#383838" BorderThickness="0" /> + </Grid> +</Window> |
