diff --git a/FoxTube/FoxTube.csproj b/FoxTube/FoxTube.csproj index f7cd5dc..2daefb6 100644 --- a/FoxTube/FoxTube.csproj +++ b/FoxTube/FoxTube.csproj @@ -135,6 +135,9 @@ General.xaml + + History.xaml + Home.xaml @@ -150,6 +153,9 @@ PlaylistCardWide.xaml + + Playlist.xaml + Search.xaml @@ -315,6 +321,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -335,6 +345,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile diff --git a/FoxTube/Pages/History.xaml b/FoxTube/Pages/History.xaml new file mode 100644 index 0000000..5063c3d --- /dev/null +++ b/FoxTube/Pages/History.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/FoxTube/Pages/History.xaml.cs b/FoxTube/Pages/History.xaml.cs new file mode 100644 index 0000000..aafbf0f --- /dev/null +++ b/FoxTube/Pages/History.xaml.cs @@ -0,0 +1,30 @@ +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.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; + +// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 + +namespace FoxTube.Pages +{ + /// + /// An empty page that can be used on its own or navigated to within a Frame. + /// + public sealed partial class History : Page + { + public History() + { + this.InitializeComponent(); + } + } +} diff --git a/FoxTube/Pages/Playlist.xaml b/FoxTube/Pages/Playlist.xaml new file mode 100644 index 0000000..3555b5a --- /dev/null +++ b/FoxTube/Pages/Playlist.xaml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/FoxTube/Pages/Playlist.xaml.cs b/FoxTube/Pages/Playlist.xaml.cs new file mode 100644 index 0000000..2622298 --- /dev/null +++ b/FoxTube/Pages/Playlist.xaml.cs @@ -0,0 +1,30 @@ +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.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; + +// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 + +namespace FoxTube.Pages +{ + /// + /// An empty page that can be used on its own or navigated to within a Frame. + /// + public sealed partial class Playlist : Page + { + public Playlist() + { + this.InitializeComponent(); + } + } +}