2022-11-21 08:47:15 -07:00
|
|
|
<Page
|
|
|
|
x:Class="WMstodon.MainPage"
|
|
|
|
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>
|
2023-02-05 17:02:05 -07:00
|
|
|
<ListView x:Name="feedListView" Margin="0,0,0,60" ItemsSource="{x:Bind Statuses}" SelectionChanged="FeedListView_SelectionChanged">
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
<DataTemplate x:DataType="local:Status">
|
2023-04-03 20:50:04 -07:00
|
|
|
<Grid Width="Auto" Height="Auto" Padding="0,10" Margin="0,0,0,15">
|
2023-02-05 17:02:05 -07:00
|
|
|
<Image HorizontalAlignment="Left" Height="32" Margin="0,0,0,0" VerticalAlignment="Top" Width="32">
|
|
|
|
<Image.Source>
|
|
|
|
<BitmapImage UriSource="{x:Bind account.avatar_static}" />
|
|
|
|
</Image.Source>
|
|
|
|
</Image>
|
|
|
|
<TextBlock Text="{x:Bind account.display_name}" Margin="36,0,0,0" FontSize="12"/>
|
|
|
|
<TextBlock Text="{x:Bind account.acct}" Margin="36,15,0,0" FontSize="12" Foreground="#FF777777"/>
|
2023-04-03 20:50:04 -07:00
|
|
|
<TextBlock Text="{x:Bind content}" Margin="0,35,0,0" FontSize="15" TextWrapping="Wrap" Height="Auto"/>
|
|
|
|
<TextBlock Text="{x:Bind additional}" Margin="0,0,0,-20" FontSize="12" Foreground="#FF777777" VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
|
2023-02-05 17:02:05 -07:00
|
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
</ListView>
|
2023-02-05 10:26:28 -07:00
|
|
|
<Grid Height="60" Margin="0" VerticalAlignment="Bottom">
|
2023-02-05 17:02:05 -07:00
|
|
|
<Image x:Name="AvatarImage" HorizontalAlignment="Left" Height="40" Margin="10,0,0,0" VerticalAlignment="Center" Width="40"/>
|
2023-02-05 10:26:28 -07:00
|
|
|
<TextBlock x:Name="DisplayNameTextBlock" HorizontalAlignment="Left" Margin="60,0,0,30" TextWrapping="Wrap" Text="Loading..." VerticalAlignment="Bottom"/>
|
|
|
|
<TextBlock x:Name="UsernameTextBlock" HorizontalAlignment="Left" Margin="60,0,0,15" TextWrapping="Wrap" Text="Loading..." VerticalAlignment="Bottom" FontSize="12" Foreground="#FF777777"/>
|
2023-04-03 20:50:04 -07:00
|
|
|
<Button x:Name="LogOutButton" Content="" HorizontalAlignment="Right" Margin="0,0,10,0" VerticalAlignment="Center" Width="40" Click="LogOutButton_Click" Background="#00000000" FontFamily="Segoe MDL2 Assets" Height="40" FontSize="24" Padding="0"/>
|
|
|
|
<Button x:Name="RefreshButton" Content="" HorizontalAlignment="Right" Margin="0,0,60,0" VerticalAlignment="Center" Width="40" Click="RefreshButton_Click" Background="#00000000" FontFamily="Segoe MDL2 Assets" Height="40" FontSize="24" Padding="0"/>
|
|
|
|
<Button x:Name="NewPostButton" Content="" HorizontalAlignment="Right" Margin="0,0,110,0" VerticalAlignment="Center" Width="40" Click="NewPostButton_Click" Background="#00000000" FontFamily="Segoe MDL2 Assets" Height="40" FontSize="24" Padding="0"/>
|
2023-02-05 10:26:28 -07:00
|
|
|
</Grid>
|
2022-11-21 08:47:15 -07:00
|
|
|
</Grid>
|
|
|
|
</Page>
|