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

20 lines
869 B
XML

<Page
x:Class="WinDurango.UI.Pages.AboutPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WinDurango.UI.Pages"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:appLocal="using:WinDurango.UI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:controls="using:WinDurango.UI.Controls" xmlns:svg="using:SVGImage.SVG"
mc:Ignorable="d">
<StackPanel Orientation="Vertical" Padding="10">
<TextBlock Text="About" FontSize="24"/>
<controls:ApplicationInfo Margin="0 10 10 10" HorizontalAlignment="Left"/>
<TextBlock Text="Contributors" FontSize="24"/>
<ScrollViewer>
<StackPanel Name="contributorList" />
</ScrollViewer>
</StackPanel>
</Page>