Files
archived-WinDurango.UI/Controls/ApplicationInfo.xaml
2025-03-03 07:44:32 -08:00

33 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<UserControl
x:Class="WinDurango.UI.Controls.ApplicationInfo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WinDurango.UI.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel Background="{ThemeResource SystemControlAltLowAcrylicElementBrush}" BorderBrush="{ThemeResource ControlElevationBorderBrush}" BorderThickness="1" CornerRadius="5">
<StackPanel Orientation="Horizontal" Margin="5, 5, 0, 0">
<PersonPicture Name="appPicture" Width="64" Height="64" BorderBrush="{ThemeResource ControlElevationBorderBrush}" BorderThickness="1"></PersonPicture>
<HyperlinkButton Name="appName" FontSize="18" VerticalAlignment="Center" NavigateUri="https://github.com/WinDurango/WinDurango.UI">WinDurango UI</HyperlinkButton>
</StackPanel>
<TextBlock Name="appInfo" TextWrapping="WrapWholeWords" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="5, 5, 0, 0"></TextBlock>
<StackPanel Orientation="Horizontal" Margin="5, 10, 0, 0">
<StackPanel Margin="10, 0, 5, 0">
<TextBlock FontSize="18">Stars</TextBlock>
<HyperlinkButton FontSize="18" Name="stars" HorizontalAlignment="Center" NavigateUri="https://github.com/WinDurango/WinDurango.UI/stargazers">Unknown</HyperlinkButton>
</StackPanel>
<StackPanel Margin="10, 0, 5, 0">
<TextBlock FontSize="18">Watchers</TextBlock>
<HyperlinkButton FontSize="18" Name="watchers" HorizontalAlignment="Center" NavigateUri="https://github.com/WinDurango/WinDurango.UI/watchers">Unknown</HyperlinkButton>
</StackPanel>
<StackPanel Margin="10, 0, 5, 0">
<TextBlock FontSize="18">Forks</TextBlock>
<HyperlinkButton FontSize="18" Name="forks" HorizontalAlignment="Center" NavigateUri="https://github.com/WinDurango/WinDurango.UI/forks">Unknown</HyperlinkButton>
</StackPanel>
</StackPanel>
</StackPanel>
</UserControl>