Archived
1
0

History page markup, search suggestions fix (now YouTube targeted)

This commit is contained in:
Michael Gordeev
2018-08-23 00:34:25 +03:00
parent e0be296fda
commit be05e591ad
3 changed files with 50 additions and 5 deletions
+34 -1
View File
@@ -1,4 +1,5 @@
using System;
using FoxTube.Controls;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@@ -22,9 +23,41 @@ namespace FoxTube.Pages
/// </summary>
public sealed partial class History : Page
{
LoadingPage loading;
ShowMore more;
VideoGrid list;
public History()
{
this.InitializeComponent();
loading = grid.Children[2] as LoadingPage;
more = stack.Children[1] as ShowMore;
list = stack.Children[0] as VideoGrid;
Initialize();
}
public void Initialize()
{
loading.Refresh();
more.Complete(true);
loading.Block();
}
private void ShowMore_Clicked()
{
}
private void toBrowser_Click(object sender, RoutedEventArgs e)
{
}
private void refresh_Click(object sender, RoutedEventArgs e)
{
}
}
}