diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-01 04:14:42 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-01 04:14:42 +0200 |
| commit | 904753380ad0621f604b8ff38dfc59371b78bda3 (patch) | |
| tree | 5116d74dc63b660f0aa0fb9d328584a11f5d2e06 /Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml | |
| parent | 7fdd6c233aafbb0dabbad5a74faac0592f76fa53 (diff) | |
| download | Tango-904753380ad0621f604b8ff38dfc59371b78bda3.tar.gz Tango-904753380ad0621f604b8ff38dfc59371b78bda3.zip | |
Fixed some bugs with thread loading wizard.
fail proof notification bar min height. (maybe timing issue)
PPC auto update first check after 30 seconds always regardless of settings.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml index e45065c61..aa1c4dda1 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/ThreadLoadingView.xaml @@ -65,9 +65,11 @@ </UniformGrid> <DockPanel Margin="0 50 0 0"> <StackPanel DockPanel.Dock="Top"> - <TextBlock HorizontalAlignment="Center" TextWrapping="Wrap" TextAlignment="Center"> - <Run>Please select the thread type you are going to load and press</Run> - <Run FontWeight="SemiBold">continue</Run> + <TextBlock HorizontalAlignment="Center" TextWrapping="Wrap" TextAlignment="Center" LineHeight="22"> + <Run>Please follow the guide bellow for loading the thread</Run> + <LineBreak/> + <Run>Select the thread type you are loading and press</Run> + <Run FontWeight="Bold">continue</Run> </TextBlock> <touch:TouchComboBox Margin="0 40 0 0" Width="500" ItemsSource="{Binding Rmls}" SelectedItem="{Binding SelectedRml}" DisplayMemberPath="Name" Title="Select thread type"></touch:TouchComboBox> </StackPanel> @@ -77,7 +79,7 @@ <touch:TouchGifAnimation Margin="50" Source="/Images/thread_loading.gif" VerticalAlignment="Center" Stretch="Uniform" EnableAnimation="{Binding IsVisible}" /> </Grid> - <Grid> + <Grid Visibility="{Binding IsArcHead,Converter={StaticResource BooleanToVisibilityConverter}}"> <commonControls:ImageGalleryControl Duration="00:00:03"> <Image Stretch="Uniform" Source="/Images/ThreadLoading/NewThread/ReadyForLoading/arc/1.jpg"></Image> <Image Stretch="Uniform" Source="/Images/ThreadLoading/NewThread/ReadyForLoading/arc/2.jpg"></Image> |
