diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-23 21:18:50 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-23 21:19:18 +0300 |
| commit | b428d54cba43ad40cf422ef6e69ccb85d8f4a146 (patch) | |
| tree | 1f58eb8341ef4c18367428fd0b3bf6cfa03a109e /Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore | |
| parent | 9e5e3823681c24db9db82fc0ece8a90ecb917cf3 (diff) | |
| download | Tango-b428d54cba43ad40cf422ef6e69ccb85d8f4a146.tar.gz Tango-b428d54cba43ad40cf422ef6e69ccb85d8f4a146.zip | |
PPC. New images - backup_restore, machine-image and machine for X4.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore')
3 files changed, 15 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Images/backup-restoreX4.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Images/backup-restoreX4.png Binary files differnew file mode 100644 index 000000000..65ebb2b1d --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Images/backup-restoreX4.png diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Tango.PPC.BackupRestore.csproj b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Tango.PPC.BackupRestore.csproj index 99ac13ae4..b3fbdd624 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Tango.PPC.BackupRestore.csproj +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Tango.PPC.BackupRestore.csproj @@ -237,6 +237,9 @@ <ItemGroup> <Resource Include="Images\restore.png" /> </ItemGroup> + <ItemGroup> + <Resource Include="Images\backup-restorex4.png" /> + </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <ProjectExtensions> <VisualStudio> diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Views/MainView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Views/MainView.xaml index 0caabd0e1..9aac37f7b 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Views/MainView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.BackupRestore/Views/MainView.xaml @@ -15,7 +15,18 @@ <DockPanel> <Grid DockPanel.Dock="Top"> <StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Margin="0 20 0 0"> - <Image Source="/Images/backup-restore.png" Stretch="Fill" Width="700" /> + <Image Stretch="Fill" Width="700" > + <Image.Style> + <Style TargetType="{x:Type Image}"> + <Setter Property="Source" Value="../Images/backup-restorex4.png"/> + <Style.Triggers> + <DataTrigger Binding="{Binding BuildProvider.IsEureka}" Value="false"> + <Setter Property="Source" Value="/Images/backup-restore.png"/> + </DataTrigger> + </Style.Triggers> + </Style> + </Image.Style> + </Image> </StackPanel> </Grid> |
