History page markup, search suggestions fix (now YouTube targeted)
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user