blob: afd8dea7eeb4283aed88d813c5cf4d2043eee7b1 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 21 3c 61 72 63 68 3e 0a 2f 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 34 38 35 32 37 33 36 | !<arch>./...............14852736 |
| 0020 | 31 39 20 20 20 20 20 20 20 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20 37 39 34 36 37 20 20 20 | 19..............0.......79467... |
| 0040 | 20 20 60 0a 00 00 04 43 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 | ..`....C..g...g...g...g...g...g. |
| 0060 | 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 00 02 67 f4 | ..g...g...g...g...g...g...g...g. |
<UserControl x:Class="Tango.PPC.UI.Views.RestartingSystemView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:global="clr-namespace:Tango.PPC.UI"
xmlns:vm="clr-namespace:Tango.PPC.UI.ViewModels"
xmlns:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Tango.PPC.UI.Views"
mc:Ignorable="d"
d:DesignHeight="1280" d:DesignWidth="800" d:DataContext="{d:DesignInstance Type=vm:RestartingSystemViewVM, IsDesignTimeCreatable=False}" DataContext="{x:Static global:ViewModelLocator.RestartingSystemViewVM}" Background="{StaticResource TangoPrimaryBackgroundBrush}">
<Grid>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<touch:TouchBusyIndicator Width="350" Height="350" IsIndeterminate="{Binding IsVisible}" Foreground="{StaticResource TangoGrayBrush}" />
<TextBlock Margin="0 40 0 0" TextAlignment="Center" HorizontalAlignment="Center" FontSize="{StaticResource TangoTitleFontSize}" Foreground="{StaticResource TangoGrayTextBrush}">
<Run>
Setup completed.
</Run>
<LineBreak/>
<Run>
Restarting the system for the last time...
</Run>
</TextBlock>
</StackPanel>
</Grid>
</UserControl>
|