diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-08 18:06:43 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-08 18:06:43 +0300 |
| commit | 5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf (patch) | |
| tree | c6fa1f4bcf331d3d36b8f92798e1edac81d90b61 /Software/Visual_Studio/PPC/Tango.PPC.UI/Views | |
| parent | 9c5f5c1351c78536b54df2c90742efae19f00b59 (diff) | |
| download | Tango-5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf.tar.gz Tango-5e66f7f601bfbb2f4d46b7b379fd37a5cb88d0bf.zip | |
Working on machine setup.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Views')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/Views/MachineSetupView.xaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/MachineSetupView.xaml b/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/MachineSetupView.xaml index b7bd4d803..521da0e35 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/MachineSetupView.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Views/MachineSetupView.xaml @@ -62,7 +62,12 @@ </Style> </touch:TouchBusyIndicator.Style> </touch:TouchBusyIndicator> - <touch:TouchStepProgressBar Width="720" Height="50" Margin="0 100 0 0" ItemsSource="{Binding Source={x:Type setup:MachineSetupSteps},Converter={StaticResource EnumToItemsSourceConverter}}" SelectedValue="{Binding MachineSetupManager.CurrentStep}" SelectedValuePath="Value" DisplayMemberPath="DisplayName" /> + <touch:TouchStepProgressBar FontSize="10" Width="720" Height="50" Margin="0 100 0 0" ItemsSource="{Binding Source={x:Type setup:MachineSetupSteps},Converter={StaticResource EnumToItemsSourceConverter}}" SelectedValue="{Binding MachineSetupManager.CurrentStep}" SelectedValuePath="Value" DisplayMemberPath="DisplayName" /> + + <StackPanel Margin="100 100 100 0" Visibility="{Binding MachineSetupManager.CurrentStep,Converter={StaticResource EnumToVisibilityConverter},ConverterParameter='DownloadingPackage'}"> + <TextBlock>Downloading package...</TextBlock> + <touch:TouchProgressBar Margin="0 10 0 0" Height="10" Maximum="100" Value="{Binding MachineSetupManager.UpdatingPackagesProgress,Mode=OneWay}" /> + </StackPanel> </StackPanel> <StackPanel Visibility="{Binding State,Converter={StaticResource EnumToVisibilityConverter},ConverterParameter='Completed'}"> |
