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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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 User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236

namespace SmartCharging
{
    public sealed partial class ChargeRating : UserControl
    {
        public static readonly DependencyProperty EditableProperty = DependencyProperty.Register("Editable", typeof(bool), typeof(ChargeRating), null);
        public bool Editable
        {
            get
            {
                return (bool)this.GetValue(EditableProperty);
            }
            set
            {
                this.SetValue(EditableProperty, value);
            }
        }
        public static readonly DependencyProperty ValueProperty = DependencyProperty.Register("Value", typeof(double), typeof(ChargeRating), null);
        public double Value
        {
            get
            {
                return (double)this.GetValue(ValueProperty);
            }
            set
            {
                this.SetValue(ValueProperty, value);
            }
        }


        public ChargeRating()
        {
            this.InitializeComponent();
        }


        private void Image_Tapped_1(object sender, TappedRoutedEventArgs e)
        {
            this.setRatingValue(1);
        }

        private void Image_Tapped_2(object sender, TappedRoutedEventArgs e)
        {
            this.setRatingValue(2);
        }

        private void Image_Tapped_3(object sender, TappedRoutedEventArgs e)
        {
            this.setRatingValue(3);
        }

        private void Image_Tapped_4(object sender, TappedRoutedEventArgs e)
        {
            this.setRatingValue(4);
        }

        private void Image_Tapped_5(object sender, TappedRoutedEventArgs e)
        {
            this.setRatingValue(5);
        }

        private void setRatingValue(int value){
            if (this.Editable)
            {
                this.Value = value;
            }
        }
    }
}

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/SmartCharging/ChargeRating.xaml.cs

Diff revisions: vs.
Revision Author Commited Message
660 Diff Diff JMBauan picture JMBauan Thu 03 Sep, 2015 08:14:10 +0000
527 JMBauan picture JMBauan Mon 24 Aug, 2015 08:47:39 +0000