2024-03-05 17:01:00 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Page
|
|
|
|
|
x:Class="VDownload.Core.Views.About.AboutView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:local="using:VDownload.Core.Views.About"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-03-06 01:26:43 +01:00
|
|
|
xmlns:i="using:Microsoft.Xaml.Interactivity"
|
|
|
|
|
xmlns:ic="using:Microsoft.Xaml.Interactions.Core"
|
2024-03-05 17:01:00 +01:00
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Background="Transparent">
|
2024-03-06 01:26:43 +01:00
|
|
|
<i:Interaction.Behaviors>
|
|
|
|
|
<ic:EventTriggerBehavior EventName="Loaded">
|
|
|
|
|
<ic:InvokeCommandAction Command="{Binding NavigationCommand}"/>
|
|
|
|
|
</ic:EventTriggerBehavior>
|
|
|
|
|
</i:Interaction.Behaviors>
|
2024-03-05 17:01:00 +01:00
|
|
|
<Grid>
|
2024-03-06 01:26:43 +01:00
|
|
|
<StackPanel HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center" Spacing="20">
|
|
|
|
|
<StackPanel HorizontalAlignment="Center">
|
|
|
|
|
<Image Source="{StaticResource ImageLogo}"
|
|
|
|
|
Width="150"
|
|
|
|
|
Height="150"
|
|
|
|
|
HorizontalAlignment="Center"/>
|
|
|
|
|
<TextBlock Text="VDownload"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
|
FontSize="30"/>
|
|
|
|
|
<TextBlock Text="{Binding Version}"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
FontSize="16"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel HorizontalAlignment="Center"
|
|
|
|
|
Spacing="2">
|
2026-02-17 22:49:36 +01:00
|
|
|
<TextBlock x:Uid="/AboutViewResources/Developers"
|
2024-03-06 01:26:43 +01:00
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
FontSize="17"
|
|
|
|
|
FontWeight="SemiBold"/>
|
|
|
|
|
<ItemsRepeater HorizontalAlignment="Center"
|
|
|
|
|
ItemsSource="{Binding Developers}">
|
|
|
|
|
<ItemsRepeater.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<HyperlinkButton HorizontalAlignment="Center"
|
|
|
|
|
NavigateUri="{Binding Url}">
|
|
|
|
|
<TextBlock FontSize="12"
|
|
|
|
|
Text="{Binding Name}"/>
|
|
|
|
|
</HyperlinkButton>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ItemsRepeater.ItemTemplate>
|
|
|
|
|
</ItemsRepeater>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel HorizontalAlignment="Center"
|
|
|
|
|
Spacing="2">
|
2026-02-17 22:49:36 +01:00
|
|
|
<TextBlock x:Uid="/AboutViewResources/Translation"
|
2024-03-06 01:26:43 +01:00
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
FontSize="17"
|
|
|
|
|
FontWeight="SemiBold"/>
|
|
|
|
|
<ItemsRepeater HorizontalAlignment="Center"
|
|
|
|
|
ItemsSource="{Binding Translators}">
|
|
|
|
|
<ItemsRepeater.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<HyperlinkButton HorizontalAlignment="Center"
|
|
|
|
|
NavigateUri="{Binding Url}">
|
|
|
|
|
<TextBlock FontSize="12"
|
|
|
|
|
Text="{Binding Name}"/>
|
|
|
|
|
</HyperlinkButton>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ItemsRepeater.ItemTemplate>
|
|
|
|
|
</ItemsRepeater>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel HorizontalAlignment="Center"
|
|
|
|
|
Spacing="2">
|
2026-02-17 22:49:36 +01:00
|
|
|
<TextBlock x:Uid="/AboutViewResources/More"
|
2024-03-06 01:26:43 +01:00
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
FontSize="17"
|
|
|
|
|
FontWeight="SemiBold"/>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<HyperlinkButton HorizontalAlignment="Center"
|
|
|
|
|
NavigateUri="{Binding RepositoryUrl}">
|
2026-02-17 22:49:36 +01:00
|
|
|
<TextBlock x:Uid="/AboutViewResources/Repository"
|
2024-03-06 01:26:43 +01:00
|
|
|
FontSize="12"/>
|
|
|
|
|
</HyperlinkButton>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
2024-03-05 17:01:00 +01:00
|
|
|
</Grid>
|
|
|
|
|
</Page>
|