You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.9 KiB
50 lines
2.9 KiB
<controls:UserControlBase xmlns="https://github.com/avaloniaui" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:vm="clr-namespace:StabilityMatrix.Avalonia.ViewModels" |
|
xmlns:ui="using:FluentAvalonia.UI.Controls" |
|
xmlns:mocks="clr-namespace:StabilityMatrix.Avalonia.DesignData" |
|
xmlns:controls="clr-namespace:StabilityMatrix.Avalonia.Controls" |
|
xmlns:system="clr-namespace:System;assembly=System.Runtime" |
|
xmlns:vmDialogs="clr-namespace:StabilityMatrix.Avalonia.ViewModels.Dialogs" |
|
xmlns:lang="clr-namespace:StabilityMatrix.Avalonia.Languages" |
|
xmlns:processes="clr-namespace:StabilityMatrix.Core.Processes;assembly=StabilityMatrix.Core" |
|
d:DataContext="{x:Static mocks:DesignData.DownloadResourceViewModel}" |
|
x:DataType="vmDialogs:DownloadResourceViewModel" |
|
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="450" |
|
x:Class="StabilityMatrix.Avalonia.Views.Dialogs.DownloadResourceDialog"> |
|
|
|
<Grid RowDefinitions="*,*" Margin="8,4"> |
|
<StackPanel> |
|
<ui:SettingsExpander |
|
Command="{Binding OpenInfoUrlCommand}" |
|
Header="{Binding FileNameWithHash}" |
|
Description="{Binding Resource.Author, StringFormat={}by {0}}" |
|
Footer="{Binding FileSizeText}"> |
|
</ui:SettingsExpander> |
|
|
|
<ui:SettingsExpander |
|
Header="{x:Static lang:Resources.Label_License}" > |
|
<ui:SettingsExpander.Footer> |
|
<Button |
|
Tapped="LicenseButton_OnTapped" |
|
Classes="transparent-full" |
|
Foreground="{DynamicResource HyperlinkButtonForeground}"> |
|
<StackPanel Orientation="Horizontal"> |
|
<ui:SymbolIcon |
|
Symbol="Link" |
|
FontSize="15" |
|
Foreground="{DynamicResource HyperlinkButtonForeground}" |
|
Margin="0,1,4,0"/> |
|
<TextBlock |
|
Foreground="{DynamicResource HyperlinkButtonForeground}" |
|
Text="{Binding Resource.LicenseType}"/> |
|
</StackPanel> |
|
</Button> |
|
</ui:SettingsExpander.Footer> |
|
</ui:SettingsExpander> |
|
|
|
</StackPanel> |
|
</Grid> |
|
</controls:UserControlBase>
|
|
|