diff --git a/FoxTube/Assets/ChannelCoverTemplate.png b/FoxTube/Assets/ChannelCoverTemplate.png
new file mode 100644
index 0000000..6dead82
Binary files /dev/null and b/FoxTube/Assets/ChannelCoverTemplate.png differ
diff --git a/FoxTube/Channel.xaml b/FoxTube/Channel.xaml
new file mode 100644
index 0000000..cfd0745
--- /dev/null
+++ b/FoxTube/Channel.xaml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/FoxTube/Channel.xaml.cs b/FoxTube/Channel.xaml.cs
new file mode 100644
index 0000000..a20f616
--- /dev/null
+++ b/FoxTube/Channel.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
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class Channel : Page
+ {
+ public Channel()
+ {
+ this.InitializeComponent();
+ }
+ }
+}
diff --git a/FoxTube/Feedback.xaml b/FoxTube/Feedback.xaml
new file mode 100644
index 0000000..6af3dff
--- /dev/null
+++ b/FoxTube/Feedback.xaml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/FoxTube/Feedback.xaml.cs b/FoxTube/Feedback.xaml.cs
new file mode 100644
index 0000000..a4a2c25
--- /dev/null
+++ b/FoxTube/Feedback.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
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class Feedback : Page
+ {
+ public Feedback()
+ {
+ this.InitializeComponent();
+ }
+ }
+}
diff --git a/FoxTube/FoxTube.csproj b/FoxTube/FoxTube.csproj
index d0bf230..fff76c6 100644
--- a/FoxTube/FoxTube.csproj
+++ b/FoxTube/FoxTube.csproj
@@ -98,6 +98,12 @@
App.xaml
+
+ Channel.xaml
+
+
+ Feedback.xaml
+
General.xaml
@@ -124,6 +130,7 @@
+
@@ -185,6 +192,14 @@
Designer
MSBuild:Compile
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
diff --git a/FoxTube/MainPage.xaml b/FoxTube/MainPage.xaml
index 98e0e6a..2d789a7 100644
--- a/FoxTube/MainPage.xaml
+++ b/FoxTube/MainPage.xaml
@@ -75,7 +75,7 @@
-
diff --git a/FoxTube/Settings.xaml.cs b/FoxTube/Settings.xaml.cs
index 94c634d..d58f0b3 100644
--- a/FoxTube/Settings.xaml.cs
+++ b/FoxTube/Settings.xaml.cs
@@ -22,10 +22,12 @@ namespace FoxTube
///
public sealed partial class Settings : Page
{
+ public Frame content;
public Settings()
{
this.InitializeComponent();
settingsContent.Navigate(typeof(General));
+ content = settingsContent;
}
private void General_Click(object sender, RoutedEventArgs e)
@@ -60,7 +62,7 @@ namespace FoxTube
private void Feedback_Click(object sender, RoutedEventArgs e)
{
-
+ settingsContent.Navigate(typeof(Feedback));
}
}
}
diff --git a/Src/ChannelCoverTemplate.png b/Src/ChannelCoverTemplate.png
new file mode 100644
index 0000000..6dead82
Binary files /dev/null and b/Src/ChannelCoverTemplate.png differ