mirror of
https://github.com/WinDurango/WinDurango.UI.git
synced 2026-01-31 00:55:24 +01:00
20 lines
869 B
XML
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>
|