Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using DatacronVideoGuide.ViewModels;

namespace DatacronVideoGuide
{
    public partial class SkillView : PhoneApplicationPage

    {
        
        public SkillView()
        {
            InitializeComponent();
        }

        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            Skill s = (Skill)PhoneApplicationService.Current.State["selectedSkill"];
            this.DataContext = s;
            List<Datacron> datacronlist = (List<Datacron>)PhoneApplicationService.Current.State["datacrons"];
            this.datacrons.ItemsSource = datacronlist.Where(dc => dc.powerUp.ToLower().Contains(s.name));
        }

        private void StackPanel_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        {
            if (datacrons.SelectedItem != null)
            {
                PhoneApplicationService.Current.State["selectedDatacron"] = datacrons.SelectedItem;
                NavigationService.Navigate(new Uri("/LinksView.xaml", UriKind.Relative));
            }
        }
    }
}

Commits for Nextrek/WindowsPhone/SwtorDatacronVideoGuide/DatacronVideoGuide/DatacronVideoGuide/SkillView.xaml.cs

Diff revisions: vs.
Revision Author Commited Message
6 FMMortaroli picture FMMortaroli Sat 20 Apr, 2013 15:30:47 +0000