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
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.Tasks;

namespace NotizieTL
{
    public partial class Information : PhoneApplicationPage
    {
        public Information()
        {
            InitializeComponent();
        }

        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            checkConnectionType();
        }

        public void checkConnectionType()
        {
            if (Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType == Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceType.Wireless80211)
            {
                tipoConnessione.Text = "Wireless";
            }

            else
            {
                if ((Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType == Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceType.MobileBroadbandCdma) || ((Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType == Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceType.MobileBroadbandGsm)))
                {
                    tipoConnessione.Text = "GSM";
                }

                else
                {
                    if (Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType == Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceType.Ethernet)
                    {
                        tipoConnessione.Text = "Ethernet";
                    }
                    else
                    {
                        tipoConnessione.Text = "Nessuna";
                    }
                }
            }

        }


        private void rateButton_Click(object sender, RoutedEventArgs e)
        {
            MarketplaceReviewTask review = new MarketplaceReviewTask();
            review.Show();
        }

        private void moreAppsButton_Click(object sender, RoutedEventArgs e)
        {
            //Search for an application, which is the default content type.
            MarketplaceSearchTask marketplaceSearchTask = new MarketplaceSearchTask();

            marketplaceSearchTask.SearchTerms = "wolters kluwer";

            marketplaceSearchTask.Show();
        }

        //private void feedbackbutton_Click(object sender, RoutedEventArgs e)
        //{
        //    NavigationService.Navigate(new Uri("/NotizieTL;component/Feedback.xaml", UriKind.Relative));
        //}

    }
}

Commits for Nextrek/WindowsPhone/NotizieTL/NotizieTL/Information.xaml.cs

Diff revisions: vs.
Revision Author Commited Message
42 Diff Diff LTardio picture LTardio Tue 30 Jul, 2013 18:51:03 +0000
37 Diff Diff LTardio picture LTardio Thu 18 Jul, 2013 20:17:52 +0000
36 LTardio picture LTardio Mon 15 Jul, 2013 18:56:24 +0000