ui/ux: add about page

Change-Id: I8a46ee316e6682b0e860e51e76972dd65430dea8
Tuleap: #790
diff --git a/AboutPage.xaml.cpp b/AboutPage.xaml.cpp
new file mode 100644
index 0000000..32854ab
--- /dev/null
+++ b/AboutPage.xaml.cpp
@@ -0,0 +1,53 @@
+/**************************************************************************

+* Copyright (C) 2016 by Savoir-faire Linux                                *

+* Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com>              *

+* Author: Traczyk Andreas <andreas.traczyk@savoirfairelinux.com>          *

+*                                                                         *

+* This program is free software; you can redistribute it and/or modify    *

+* it under the terms of the GNU General Public License as published by    *

+* the Free Software Foundation; either version 3 of the License, or       *

+* (at your option) any later version.                                     *

+*                                                                         *

+* This program is distributed in the hope that it will be useful,         *

+* but WITHOUT ANY WARRANTY; without even the implied warranty of          *

+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *

+* GNU General Public License for more details.                            *

+*                                                                         *

+* You should have received a copy of the GNU General Public License       *

+* along with this program.  If not, see <http://www.gnu.org/licenses/>.   *

+**************************************************************************/

+#include "pch.h"

+

+#include "AboutPage.xaml.h"

+

+using namespace RingClientUWP;

+using namespace RingClientUWP::Views;

+

+using namespace Windows::UI::ViewManagement;

+using namespace Windows::UI::Core;

+using namespace Windows::UI::Xaml::Controls;

+

+AboutPage::AboutPage()

+{

+    InitializeComponent();

+};

+

+void RingClientUWP::Views::AboutPage::_aboutBasicButton__Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)

+{

+    _aboutNavGrid_->SetRow(_aboutScrollViewer_, 1);

+    _aboutNavGrid_->SetRow(_creditsScrollViewer_, 0);

+}

+

+

+void RingClientUWP::Views::AboutPage::_aboutCreditsButton__Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)

+{

+    _aboutNavGrid_->SetRow(_aboutScrollViewer_, 0);

+    _aboutNavGrid_->SetRow(_creditsScrollViewer_, 1);

+}

+

+

+void RingClientUWP::Views::AboutPage::_aboutCloseButton__Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)

+{

+    auto rootFrame = dynamic_cast<Windows::UI::Xaml::Controls::Frame^>(Window::Current->Content);

+    rootFrame->Navigate(Windows::UI::Xaml::Interop::TypeName(MainPage::typeid), true);

+}