Archived
1
0

"Show more" in comments thread fixed

This commit is contained in:
Michael Gordeev
2018-12-16 00:17:27 +03:00
parent da99cca0c4
commit 94ba56153e
2 changed files with 2 additions and 14 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
x:Class="FoxTube.Pages.CommentsPage" x:Class="FoxTube.Pages.CommentsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:FoxTube"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" mc:Ignorable="d"
@@ -45,7 +44,7 @@
<ScrollViewer Grid.Row="1" Name="scroll"> <ScrollViewer Grid.Row="1" Name="scroll">
<StackPanel> <StackPanel>
<StackPanel Name="placeholder"/> <StackPanel Name="placeholder"/>
<HyperlinkButton Name="more" Click="more_Click" HorizontalAlignment="Center" Foreground="Red" Content="Show more"/> <HyperlinkButton Visibility="Collapsed" Name="more" Click="more_Click" HorizontalAlignment="Center" Foreground="Red" Content="Show more"/>
<ProgressBar Name="moreLoading" Visibility="Collapsed" IsIndeterminate="True" Foreground="Red"/> <ProgressBar Name="moreLoading" Visibility="Collapsed" IsIndeterminate="True" Foreground="Red"/>
</StackPanel> </StackPanel>
</ScrollViewer> </ScrollViewer>
+1 -12
View File
@@ -1,17 +1,6 @@
using System; using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml; using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using Google.Apis.YouTube.v3; using Google.Apis.YouTube.v3;
using Google.Apis.YouTube.v3.Data; using Google.Apis.YouTube.v3.Data;
@@ -34,7 +23,7 @@ namespace FoxTube.Pages
public CommentsPage() public CommentsPage()
{ {
this.InitializeComponent(); InitializeComponent();
} }
public async void Initialize(Video video) public async void Initialize(Video video)