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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
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 System.IO;
using System.ServiceModel.Syndication;
using System.Xml;
using Microsoft.Phone.Tasks;
using System.Text.RegularExpressions;
using Microsoft.Phone.Shell;

namespace NotizieTL
{
    public partial class MainPage : PhoneApplicationPage
    {
        private int i = 0;

        List<Articolo> listArticoli1;
        List<Articolo> listArticoli3;
        List<ArticoloPreferito> listArticoliP = new List<ArticoloPreferito>();

        // Constructor
        public MainPage()
        {
            //SystemTray.IsVisible = false;
            InitializeComponent();
            

            // Set the data context of the listbox control to the sample data
            DataContext = App.ViewModel;
            this.Loaded += new RoutedEventHandler(MainPage_Loaded);
        }

        // Load data for the ViewModel Items
        private void MainPage_Loaded(object sender, RoutedEventArgs e)
        {
            if (!App.ViewModel.IsDataLoaded)
            {
                App.ViewModel.LoadData();
            }
        }


        private void checkConnection()
        {
            if (Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType == Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceType.None)
            {
                MessageBox.Show("Nessuna connessione a internet rilevata! Lista notizie non aggiornata!");

            }
        }


        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            checkConnection();
            SystemTray.IsVisible = false;
            feedListPreferiti.ItemsSource = listArticoliP;

            // WebClient is used instead of HttpWebRequest in this code sample because 
            // the implementation is simpler and easier to use, and we do not need to use 
            // advanced functionality that HttpWebRequest provides, such as the ability to send headers.
            WebClient webClient1 = new WebClient();
            WebClient webClient3 = new WebClient();

            // Subscribe to the DownloadStringCompleted event prior to downloading the RSS feed.
            webClient1.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient1_DownloadStringCompleted);
            webClient3.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient3_DownloadStringCompleted);

            // Download the RSS feed. DownloadStringAsync was used instead of OpenStreamAsync because we do not need 
            // to leave a stream open, and we will not need to worry about closing the channel. 
            webClient1.DownloadStringAsync(new System.Uri("http://tuttolavoro.indicitalia.it/RSS/app.xml"));
            webClient3.DownloadStringAsync(new System.Uri("http://www.wki.it/marketing/app/tuttolavoroApp_Rel_news.xml"));


            //if (listArticoliP.Count == 0)
            //    feedListPreferiti.Visibility = System.Windows.Visibility.Collapsed;
        }

        // Click handler that runs when the 'Load Feed' or 'Refresh Feed' button is clicked. 
        //private void loadFeedButton_Click(object sender, System.Windows.RoutedEventArgs e)
        //{
            
        //}

        // Event handler which runs after the feed is fully downloaded.
        private void webClient1_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (e.Error != null)
            {
                Deployment.Current.Dispatcher.BeginInvoke(() =>
                {
                    // Showing the exact error message is useful for debugging. In a finalized application, 
                    // output a friendly and applicable string to the user instead. 
                    MessageBox.Show(e.Error.Message);
                });
            }
            else
            {
                // Save the feed into the State property in case the application is tombstoned. 
                this.State["feed"] = e.Result;

                UpdateFeedList1(e.Result);
            }
        }

        private void webClient3_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            if (e.Error != null)
            {
                Deployment.Current.Dispatcher.BeginInvoke(() =>
                {
                    // Showing the exact error message is useful for debugging. In a finalized application, 
                    // output a friendly and applicable string to the user instead. 
                    MessageBox.Show(e.Error.Message);
                });
            }
            else
            {
                // Save the feed into the State property in case the application is tombstoned. 
                this.State["feed"] = e.Result;

                UpdateFeedList3(e.Result);
            }
        }

        // This method determines whether the user has navigated to the application after the application was tombstoned.
        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            // First, check whether the feed is already saved in the page state.
            if (this.State.ContainsKey("feed"))
            {
                // Get the feed again only if the application was tombstoned, which means the ListBox will be empty.
                // This is because the OnNavigatedTo method is also called when navigating between pages in your application.
                // You would want to rebind only if your application was tombstoned and page state has been lost. 
                if (feedListBoxNews1.Items.Count == 0)
                {
                    UpdateFeedList1(State["feed"] as string);
                }

                if (feedListBoxNews3.Items.Count == 0)
                {
                    UpdateFeedList3(State["feed"] as string);
                }

            }
        }

        private String convertiData(String data)
        {
            String giorno = data.Substring(0, 3);
            String mese = data.Substring(8, 3);

            if (data.Contains("Mon"))
            {
                data = data.Replace("Mon", "Lun");
            }
            if (data.Contains("Tue"))
            {
                data = data.Replace("Tue", "Mar");
            }
            if (data.Contains("Wed"))
            {
                data = data.Replace("Wed", "Mer");
            }
            if (data.Contains("Thu"))
            {
                data = data.Replace("Thu", "Gio");
            }
            if (data.Contains("Fri"))
            {
                data = data.Replace("Fri", "Ven");
            }
            if (data.Contains("Sat"))
            {
                data = data.Replace("Sat", "Sab");
            }
            if (data.Contains("Sun"))
            {
                data = data.Replace("Sun", "Dom");
            }

            //switch (giorno)
            //{
            //    case "Mon" :
            //        data = data.Replace("Mon", "Lun");
            //        break;
            //    case "Tue":
            //        data = data.Replace("Tue", "Mar");
            //        break;
            //    case "Wed":
            //        data = data.Replace("Wed", "Mer");
            //        break;
            //    case "Thu":
            //        data = data.Replace("Thu", "Gio");
            //        break;
            //    case "Fri":
            //        data = data.Replace("Fri", "Ven");
            //        break;
            //    case "Sat":
            //        data = data.Replace("Sat", "Sab");
            //        break;
            //    case "Sun":
            //        data = data.Replace("Sun", "Dom");
            //        break;
            //    default:
            //        break;
            //}

            if (data.Contains("Jan"))
            {
                data = data.Replace("Jan", "Gen");
            }
            
            if (data.Contains("May"))
            {
                data = data.Replace("May", "Mag");
            }
            if (data.Contains("Jun"))
            {
                data = data.Replace("Jun", "Giu");
            }
            if (data.Contains("Jul"))
            {
                data = data.Replace("Jul", "Lug");
            }
            if (data.Contains("Aug"))
            {
                data = data.Replace("Aug", "Ago");
            }
            if (data.Contains("Sep"))
            {
                data = data.Replace("Sep", "Set");
            }
            if (data.Contains("Oct"))
            {
                data = data.Replace("Oct", "Ott");
            }
            
            if (data.Contains("Dec"))
            {
                data = data.Replace("Dec", "Dic");
            }
            


            //switch (mese)
            //{
            //    case "Jan":
            //        data = data.Replace("Jan", "Gen");
            //        break;
            //    case "Feb":
            //        break;
            //    case "Mar":
            //        break;
            //    case "Apr":
            //        break;
            //    case "May":
            //        data = data.Replace("May", "Mag");
            //        break;
            //    case "Jun":
            //        data = data.Replace("Jun", "Giu");
            //        break;
            //    case "Jul":
            //        data = data.Replace("Jul", "Lug");
            //        break;
            //    case "Aug":
            //        data = data.Replace("Aug", "Ago");
            //        break;
            //    case "Sep":
            //        data = data.Replace("Sep", "Set");
            //        break;
            //    case "Oct":
            //        data = data.Replace("Oct", "Ott");
            //        break;
            //    case "Nov":
            //        break;
            //    case "Dec":
            //        data = data.Replace("Dec", "Dic");
            //        break;
            //    default:
            //        break;
            //}

            return data;

        }

        // This method sets up the feed and binds it to our ListBox. 
        private void UpdateFeedList1(string feedXML)
        {
            listArticoli1 = new List<Articolo>();
            Articolo a;

            while (feedXML.Contains("<item>"))
            {
                int i = feedXML.IndexOf("<item>"); //rappresenta l'indice iniziale del blocco item
                int j = feedXML.IndexOf("</item>");    //rappresenta l'indice finale del blocco item
                int k = j-i; //rappresenta la lunghezza della stringa racchiusa dal blocco item
                String item = feedXML.Substring(i, k);

                int it = item.IndexOf("<title>") + 7;
                int ft = item.IndexOf("</title>");
                String title = item.Substring(it, ft - it);

                int il = item.IndexOf("<link>") + 6;
                int fl = item.IndexOf("</link>");
                String link = (item.Substring(il, fl - il)).Replace("amp;","");

                int id = item.IndexOf("<description>") + 13;
                int fd = item.IndexOf("</description>");
                String description1 = item.Substring(id, fd - id);
                String descriptionComplete = HtmlToPlainText(description1);
                descriptionComplete = descriptionComplete.Remove(descriptionComplete.LastIndexOf("\r"));
                //if (!descriptionComplete.EndsWith("."))
                //    descriptionComplete = descriptionComplete.Remove(descriptionComplete.LastIndexOf("\r"));
                if (descriptionComplete.StartsWith("\r\n"))
                    descriptionComplete = descriptionComplete.Remove(0, 2);
                //String description = descriptionComplete;
                String description = descriptionComplete.Substring(0, 125);
                description = description.Remove(description.LastIndexOf(" "));
                description += "...";

                int idp = item.IndexOf("<pubDate>") + 9;
                int fdp = item.IndexOf("</pubDate>");
                String dataPubEng = item.Substring(idp, fdp - idp);
                String dataPub = convertiData(dataPubEng);

                a = new Articolo(title, link, description, descriptionComplete, dataPub);
                listArticoli1.Add(a);

                feedXML = feedXML.Substring(feedXML.IndexOf("/pubDate") + 16);

                Boolean b = true;
            }

            // Load the feed into a SyndicationFeed instance.
            StringReader stringReader = new StringReader(feedXML);
            XmlReader xmlReader = XmlReader.Create(stringReader);
            //SyndicationFeed feed = SyndicationFeed.Load(xmlReader);

            // In Windows Phone OS 7.1 or later versions, WebClient events are raised on the same type of thread they were called upon. 
            // For example, if WebClient was run on a background thread, the event would be raised on the background thread. 
            // While WebClient can raise an event on the UI thread if called from the UI thread, a best practice is to always 
            // use the Dispatcher to update the UI. This keeps the UI thread free from heavy processing.
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                // Bind the list of SyndicationItems to our ListBox.
                feedListBoxNews1.ItemsSource = listArticoli1;
                //feedListPreferiti.ItemsSource = listArticoli1;

                //loadFeedButton.Content = "Refresh Feed";
            });
        }

        private void UpdateFeedList3(string feedXML)
        {
            listArticoli3 = new List<Articolo>();
            Articolo a;

            while (feedXML.Contains("<Item>"))
            {
                int i = feedXML.IndexOf("<Item>") + 8; //rappresenta l'indice iniziale del blocco item
                int j = feedXML.IndexOf("</Item>");    //rappresenta l'indice finale del blocco item
                int k = j - i; //rappresenta la lunghezza della stringa racchiusa dal blocco item
                String item = feedXML.Substring(i, k);

                int it = item.IndexOf("<Name>") + 6;
                int ft = item.IndexOf("</Name>");
                String title = item.Substring(it, ft - it);
                
                int id = item.IndexOf("<Descp>") + 7;
                int fd = item.IndexOf("</Descp>");
                String description = item.Substring(id, fd - id);

                int ii = item.IndexOf("<Icon>") + 6;
                int fi = item.IndexOf("</Icon>");
                String icona = item.Substring(ii, fi - ii);

                int il = item.IndexOf("<Link>") + 6;
                int fl = item.IndexOf("</Link>");
                String link = item.Substring(il, fl - il);

                //int idp = item.IndexOf("<pubDate>") + 9;
                //int fdp = item.IndexOf("</pubDate>");
                //String dataPub = item.Substring(idp, fdp - idp);
                

                a = new Articolo(title, link, description, description, "1/1/2013", icona);
                listArticoli3.Add(a);

                feedXML = feedXML.Substring(feedXML.IndexOf("/Link") + 11);

                Boolean b = true;


                //int i = feedXML.IndexOf("<item>")+8; //rappresenta l'indice iniziale del blocco item
                //int j = feedXML.IndexOf("</item>");    //rappresenta l'indice finale del blocco item
                //int k = j - i; //rappresenta la lunghezza della stringa racchiusa dal blocco item
                //String item = feedXML.Substring(i, k);

                //int it = item.IndexOf("<title>")+7;
                //int ft = item.IndexOf("</title>");
                //String title = item.Substring(it, ft - it);

                //int il = item.IndexOf("<link>") + 6;
                //int fl = item.IndexOf("</link>");
                //String link = item.Substring(il, fl - il);

                //int id = item.IndexOf("<description>") + 13;
                //int fd = item.IndexOf("</description>");
                //String description = item.Substring(id, fd - id);

                //int idp = item.IndexOf("<pubDate>") + 9;
                //int fdp= item.IndexOf("</pubDate>");
                //String dataPub = item.Substring(idp, fdp - idp);

                //a = new Articolo(title, link, description, dataPub);
                //listArticoli.Add(a);

                //feedXML = feedXML.Substring(feedXML.IndexOf("/pubDate")+16);

                //Boolean b = true;
            }

            // Load the feed into a SyndicationFeed instance.
            StringReader stringReader = new StringReader(feedXML);
            XmlReader xmlReader = XmlReader.Create(stringReader);
            //SyndicationFeed feed = SyndicationFeed.Load(xmlReader);

            // In Windows Phone OS 7.1 or later versions, WebClient events are raised on the same type of thread they were called upon. 
            // For example, if WebClient was run on a background thread, the event would be raised on the background thread. 
            // While WebClient can raise an event on the UI thread if called from the UI thread, a best practice is to always 
            // use the Dispatcher to update the UI. This keeps the UI thread free from heavy processing.
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                // Bind the list of SyndicationItems to our ListBox.
                feedListBoxNews3.ItemsSource = listArticoli3;

                //loadFeedButton.Content = "Refresh Feed";
            });
        }

        // The SelectionChanged handler for the feed items 
        private void feedListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {   
            ListBox listBox = sender as ListBox;

            if (listBox != null && listBox.SelectedItem != null)
            {
                // Get the SyndicationItem that was tapped.
                Articolo sItem = (Articolo)listBox.SelectedItem;

                // Set up the page navigation only if a link actually exists in the feed item.
                if (sItem.Titolo != null && sItem.DataPub != null && sItem.TestoFull != null)
                {
                    titleCanvas.Text = sItem.Titolo;
                    dateCanvas.Text = sItem.DataPub;
                    textCanvas.Text = sItem.TestoFull;

                    //Double h = titleCanvas.ActualHeight;

                    //grigliaTesto.Height -= (h * 15) / 100;
                    //Double h = textCanvas.ActualHeight;
                    scroller.ScrollToVerticalOffset(0.0);

                    notiziaCanvas.Visibility = System.Windows.Visibility.Visible;
                    ApplicationBar.IsVisible = true;

                    //scroller.DataContext = sItem.TestoFull;

                    // Get the associated URI of the feed item.
                    //Uri uri = new Uri(sItem.Link);

                    // Create a new WebBrowserTask Launcher to navigate to the feed item. 
                    // An alternative solution would be to use a WebBrowser control, but WebBrowserTask is simpler to use. 
                    //WebBrowserTask webBrowserTask = new WebBrowserTask();
                    //webBrowserTask.Uri = uri;
                    //webBrowserTask.Show();
                }
            }
        }

        private void feedListBox3_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            ListBox listBox = sender as ListBox;

            if (listBox != null && listBox.SelectedItem != null)
            {
                // Get the SyndicationItem that was tapped.
                Articolo sItem = (Articolo)listBox.SelectedItem;

                // Set up the page navigation only if a link actually exists in the feed item.
                if (sItem.Link != null)
                {
                    //titleCanvas.Text = sItem.Titolo;
                    //dateCanvas.Text = sItem.DataPub;
                    //textCanvas.Text = sItem.TestoFull;

                    //notiziaCanvas.Visibility = System.Windows.Visibility.Visible;
                    // Get the associated URI of the feed item.
                    Uri uri = new Uri(sItem.Link);

                    // Create a new WebBrowserTask Launcher to navigate to the feed item. 
                    // An alternative solution would be to use a WebBrowser control, but WebBrowserTask is simpler to use. 
                    WebBrowserTask webBrowserTask = new WebBrowserTask();
                    webBrowserTask.Uri = uri;
                    webBrowserTask.Show();
                }
            }
        }

        private static string HtmlToPlainText(string html)
        {
            const string tagWhiteSpace = @"(>|$)(\W|\n|\r)+<";//matches one or more (white space or line breaks) between '>' and '<'
            const string stripFormatting = @"<[^>]*(>|$)";//match any character between '<' and '>', even when end tag is missing
            const string lineBreak = @"<(br|BR)\s{0,1}\/{0,1}>";//matches: <br>,<br/>,<br />,<BR>,<BR/>,<BR />
            var lineBreakRegex = new Regex(lineBreak, RegexOptions.Multiline);
            var stripFormattingRegex = new Regex(stripFormatting, RegexOptions.Multiline);
            var tagWhiteSpaceRegex = new Regex(tagWhiteSpace, RegexOptions.Multiline);

            var text = html;
            //Decode html specific characters
            text = System.Net.HttpUtility.HtmlDecode(text);
            //Remove tag whitespace/line breaks
            text = tagWhiteSpaceRegex.Replace(text, "><");
            //Replace <br /> with line breaks
            text = lineBreakRegex.Replace(text, Environment.NewLine);
            //Strip formatting
            text = stripFormattingRegex.Replace(text, string.Empty);

            return text;
        }

        private void CheckBox_Checked(object sender, RoutedEventArgs e)
        {
            ListBoxItem checedItem = this.feedListPreferiti.ItemContainerGenerator.ContainerFromItem((sender as CheckBox).DataContext) as ListBoxItem;
            if (checedItem != null)
            {
                checedItem.IsSelected = true;
            }
        }

        private void CheckBox_Unchecked(object sender, RoutedEventArgs e)
        {
            ListBoxItem checedItem = this.feedListPreferiti.ItemContainerGenerator.ContainerFromItem((sender as CheckBox).DataContext) as ListBoxItem;
            if (checedItem != null)
            {
                checedItem.IsSelected = false;
            }
        }

        private void MenuItem_Click(object sender, RoutedEventArgs e)
        {
       
            //feedListPreferiti.ItemsSource = listArticoliP;
            
        }

        private void feedListBoxNews1_Hold(object sender, System.Windows.Input.GestureEventArgs e)
        {

        //    ListBox listBox = sender as ListBox;
        //    bool a = (listBox.SelectedItem != null);
        //    bool b = true;

            

        //    if (listBox != null && listBox.SelectedItem != null)
        //    {
        //        // Get the SyndicationItem that was tapped.
        //        Articolo sItem = (Articolo)listBox.SelectedItem;

        //        String ti = sItem.Titolo;
        //        String te = sItem.Testo;
        //        String l = sItem.Link;
        //        String d = sItem.DataPub;
        //        Boolean isC = false;

        //        ArticoloPreferito ap = new ArticoloPreferito(ti, te, l, d, isC);
        //        listArticoliP.Add(ap);

                
        //    }
        }

        private void appBarDelete_Click(object sender, EventArgs e)
        {

            if (listArticoliP.Count > 0)
            {
                foreach (ArticoloPreferito a in listArticoliP)
                {
                    if (a.IsChecked == true)
                    {
                        listArticoliP.Remove(a);
                        feedListPreferiti.ItemsSource = listArticoliP;
                    }
                }
            } 
        }


        private void Pivot_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {


            if (pivot.SelectedIndex == 0 || pivot.SelectedIndex == 2)
            {
                ApplicationBar.IsVisible = false;

            }
            else
            {
                //ApplicationBar.Mode = Microsoft.Phone.Shell.ApplicationBarMode.Minimized;
                ApplicationBar.IsVisible = true;
                feedListPreferiti.ItemsSource = listArticoliP;

                try
                {
                    //appBarDelete.IsEnabled = false;
                }
                catch { }
            }

            
        }

        

        private void appBarinfo_Click(object sender, EventArgs e)
        {
            NavigationService.Navigate(new Uri("/NotizieTL;component/Information.xaml", UriKind.Relative));
        }

        private void PhoneApplicationPage_BackKeyPress(object sender, System.ComponentModel.CancelEventArgs e)
        {
            if (notiziaCanvas.Visibility == System.Windows.Visibility.Visible)
            {
                notiziaCanvas.Visibility = System.Windows.Visibility.Collapsed;
                ApplicationBar.IsVisible = false;
            }

            e.Cancel = true;
        }

        private void appBarRefresh_Click(object sender, EventArgs e)
        {
            feedListBoxNews1.Visibility = System.Windows.Visibility.Collapsed;
            loadingPanel.Visibility = System.Windows.Visibility.Visible;
            //i = 3;
            //PhoneApplicationPage_LayoutUpdated(sender, e);
            WebClient webClient1 = new WebClient();
            webClient1.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient1_DownloadStringCompleted);
            webClient1.DownloadStringAsync(new System.Uri("http://tuttolavoro.indicitalia.it/RSS/app.xml"));
        }

        private void PhoneApplicationPage_LayoutUpdated(object sender, EventArgs e)
        {
            i++;
            if (i >= 4)
            {
                feedListBoxNews1.Visibility = System.Windows.Visibility.Visible;
                loadingPanel.Visibility = System.Windows.Visibility.Collapsed;
            }
        }

        private void titolo1_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
        {

        }

        private void titolo1_LayoutUpdated(object sender, EventArgs e)
        {

        }

        private void feedListBoxNews1_LayoutUpdated(object sender, EventArgs e)
        {

        }

        private void boxArticolo_Hold(object sender, System.Windows.Input.GestureEventArgs e)
        {

        }

        private void boxArticolo_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        {
            notiziaCanvas.Visibility = System.Windows.Visibility.Visible;
        }

        private void appBarZoomIn_Click(object sender, EventArgs e)
        {
            if (textCanvas.FontSize == 20.0)
            {
                textCanvas.FontSize = 22.0;
            }
            else
            {
                if (textCanvas.FontSize == 22.0)
                {
                    textCanvas.FontSize = 24.0;
                }
            }
        }

        private void appBarZoomOut_Click(object sender, EventArgs e)
        {
            if (textCanvas.FontSize == 22.0)
            {
                textCanvas.FontSize = 20.0;
            }
            else
            {
                if (textCanvas.FontSize == 24.0)
                {
                    textCanvas.FontSize = 22.0;
                }
            }
        }

        private void appBarPrev_Click(object sender, EventArgs e)
        {
            String t = titleCanvas.Text;
            foreach (Articolo a in listArticoli1)
            {
                if (a.Titolo == t)
                {
                    int i = listArticoli1.IndexOf(a);

                    if (i > 0)
                    {
                        scroller.ScrollToVerticalOffset(0.0);
                        titleCanvas.Text = listArticoli1[i - 1].Titolo;
                        dateCanvas.Text = listArticoli1[i - 1].DataPub;
                        textCanvas.Text = listArticoli1[i - 1].TestoFull;
                    }

                }

            }
            
        }

        private void appBarNext_Click(object sender, EventArgs e)
        {
            String t = titleCanvas.Text;
            foreach (Articolo a in listArticoli1)
            {
                if (a.Titolo == t)
                {
                    int i = listArticoli1.IndexOf(a);

                    if (!(listArticoli1.Count <= i+1))
                    {
                        scroller.ScrollToVerticalOffset(0.0);
                        titleCanvas.Text = listArticoli1[i + 1].Titolo;
                        dateCanvas.Text = listArticoli1[i + 1].DataPub;
                        textCanvas.Text = listArticoli1[i + 1].TestoFull;
                    }

                }

            }
        }

        

        private void appBarCondividi_Click(object sender, EventArgs e)
        {
            EmailComposeTask email = new EmailComposeTask();
            email.To = "";
            email.Subject = titleCanvas.Text;
            email.Body = titleCanvas.Text + "\r\n" + "\r\n" + dateCanvas.Text + "\r\n" + "\r\n" + textCanvas.Text;
            email.Show();
        }

        private void boxArticolo_Loaded(object sender, RoutedEventArgs e)
        {
            SolidColorBrush evenBackground = new SolidColorBrush(Color.FromArgb(0xff, 0xff, 0xff, 0xff));
            SolidColorBrush oddBackground = new SolidColorBrush(Color.FromArgb(0xff, 0xcc, 0xcc, 0xcc));

            StackPanel stackpanel = sender as StackPanel;
            int index = feedListBoxNews1.Items.IndexOf(stackpanel.DataContext);
            if (index % 2 == 0)
                stackpanel.Background = evenBackground;
            else
                stackpanel.Background = oddBackground; 
        }

        private void appBarRefresh_Click_1(object sender, EventArgs e)
        {

        }

        private void appBarAddFavorites_Click(object sender, EventArgs e)
        {
            String titolo = titleCanvas.Text;
            String data = dateCanvas.Text;
            String testo = textCanvas.Text;

            ArticoloPreferito ap = new ArticoloPreferito(titolo, "", testo.Substring(0, 125)+"...", testo, data, false);

            listArticoliP.Add(ap);
            //feedListPreferiti.ItemsSource = listArticoliP;

        }

        private void boxArticoloPreferito_Loaded(object sender, RoutedEventArgs e)
        {
            SolidColorBrush evenBackground = new SolidColorBrush(Color.FromArgb(0xff, 0xff, 0xff, 0xff));
            SolidColorBrush oddBackground = new SolidColorBrush(Color.FromArgb(0xff, 0xcc, 0xcc, 0xcc));

            StackPanel stackpanel = sender as StackPanel;

            int index = feedListPreferiti.Items.IndexOf(stackpanel.DataContext);
            if (index % 2 == 0)
                stackpanel.Background = evenBackground;
            else
                stackpanel.Background = oddBackground; 
        }


        private void articoloPreferitoPanel_Tap(object sender, System.Windows.Input.GestureEventArgs e)
        {
            StackPanel stackpanel = sender as StackPanel;

            titleCanvas.Text = ((ArticoloPreferito)stackpanel.DataContext).Titolo;
            textCanvas.Text = ((ArticoloPreferito)stackpanel.DataContext).TestoFull;
            dateCanvas.Text = ((ArticoloPreferito)stackpanel.DataContext).DataPub;

            notiziaCanvas.Visibility = System.Windows.Visibility.Visible;
            
        }
        

        

        

        


    }
}

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

Diff revisions: vs.
Revision Author Commited Message
37 Diff Diff LTardio picture LTardio Thu 18 Jul, 2013 20:17:52 +0000
36 Diff Diff LTardio picture LTardio Mon 15 Jul, 2013 18:56:24 +0000
35 Diff Diff LTardio picture LTardio Fri 12 Jul, 2013 19:34:36 +0000
34 Diff Diff LTardio picture LTardio Fri 12 Jul, 2013 15:13:48 +0000
33 LTardio picture LTardio Thu 11 Jul, 2013 16:57:32 +0000