| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using Breda_Tour.Data;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.IO;
- using System.Linq;
- using System.Runtime.InteropServices.WindowsRuntime;
- using Windows.Foundation;
- using Windows.Foundation.Collections;
- using Windows.UI.Core;
- 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 http://go.microsoft.com/fwlink/?LinkId=234238
- namespace Breda_Tour.RouteSelectScreen
- {
- /// <summary>
- /// An empty page that can be used on its own or navigated to within a Frame.
- /// </summary>
- public sealed partial class RouteSelectPage : Page
- {
- RouteDatabase AllRoutes;
- public ObservableCollection<Route> CurrentRoutes
- {
- get { return (ObservableCollection<Route>)GetValue(HelpItemProperty); }
- set { SetValue(HelpItemProperty, value); }
- }
- public static readonly DependencyProperty HelpItemProperty =
- DependencyProperty.Register("CurrentRoutes", typeof(ObservableCollection<Route>), typeof(RouteSelectPage), null);
- public RouteSelectPage()
- {
- AllRoutes = new RouteDatabase();
- CurrentRoutes = AllRoutes.GetCurrentRoutes();
- this.InitializeComponent();
- DefaultPivot.SetCheckedButton(CustomControls.DefaultPivotControl.Tab.RouteSelected);
- }
- protected override void OnNavigatedTo(NavigationEventArgs e)
- {
- SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Collapsed;
- CurrentRoutes = AllRoutes.GetCurrentRoutes();
- System.Diagnostics.Debug.WriteLine(CurrentRoutes[0].Language);
- }
- private void Routes_ItemClick(object sender, ItemClickEventArgs e)
- {
- Route route = e.ClickedItem as Route;
- MainPage.RootFrame.Navigate(typeof(RouteExample), route);
- }
- private void Page_GotFocus(object sender, RoutedEventArgs e)
- {
- CurrentRoutes = AllRoutes.GetCurrentRoutes();
- }
- }
- }
|