mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add SVG icons for dump and scan buttons in DeviceView.axaml for improved UI
This commit is contained in:
44
Aaru.Gui/Assets/Icons/Dark/dump-disc.svg
Normal file
44
Aaru.Gui/Assets/Icons/Dark/dump-disc.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 9.4 KiB |
44
Aaru.Gui/Assets/Icons/Dark/scan-disc.svg
Normal file
44
Aaru.Gui/Assets/Icons/Dark/scan-disc.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 15 KiB |
44
Aaru.Gui/Assets/Icons/dump-disc.svg
Normal file
44
Aaru.Gui/Assets/Icons/dump-disc.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 9.4 KiB |
44
Aaru.Gui/Assets/Icons/scan-disc.svg
Normal file
44
Aaru.Gui/Assets/Icons/scan-disc.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 15 KiB |
@@ -716,11 +716,23 @@
|
||||
HorizontalAlignment="Right">
|
||||
<Button Command="{Binding DumpCommand, Mode=OneWay}"
|
||||
IsEnabled="{Binding MediaIsInserted, Mode=OneWay}">
|
||||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Dump_media_to_image}" />
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="4">
|
||||
<Svg MaxHeight="24"
|
||||
Path="{Binding $parent[Window].ActualThemeVariant, Converter={StaticResource ThemeToSvgPathConverter}, ConverterParameter='/Assets/Icons/dump-disc.svg', Mode=OneWay}" />
|
||||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Dump_media_to_image}"
|
||||
VerticalAlignment="Center" />
|
||||
</StackPanel>
|
||||
</Button>
|
||||
<Button Command="{Binding ScanCommand, Mode=OneWay}"
|
||||
IsEnabled="{Binding MediaIsInserted, Mode=OneWay}">
|
||||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Scan_media_surface}" />
|
||||
<StackPanel Orientation="Horizontal"
|
||||
Spacing="4">
|
||||
<Svg MaxHeight="24"
|
||||
Path="{Binding $parent[Window].ActualThemeVariant, Converter={StaticResource ThemeToSvgPathConverter}, ConverterParameter='/Assets/Icons/scan-disc.svg', Mode=OneWay}" />
|
||||
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Scan_media_surface}"
|
||||
VerticalAlignment="Center" />
|
||||
</StackPanel>
|
||||
</Button>
|
||||
</StackPanel>
|
||||
<controls:SpectreTextBlock Grid.Row="3"
|
||||
|
||||
Reference in New Issue
Block a user