UniversalFedi/WMstodon/ImageViewerPage.xaml
2023-02-05 17:02:05 -07:00

18 lines
1 KiB
XML

<Page
x:Class="WMstodon.ImageViewerPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WMstodon"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid Background="Black">
<Image x:Name="ImageElement" Margin="0" VerticalAlignment="Center"/>
<Grid x:Name="DescriptionGrid" Height="40" Margin="0" VerticalAlignment="Bottom" Background="#77000000">
<TextBlock x:Name="ImageDescriptionTextBlock" HorizontalAlignment="Left" Margin="10,0" TextWrapping="Wrap" Text="Loading..." VerticalAlignment="Center" Foreground="White"/>
</Grid>
<Button x:Name="BackButton" Content="Back" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Width="75" Click="BackButton_Click"/>
</Grid>
</Page>