Click here to Skip to main content
15,881,588 members
Articles / Mobile Apps / Windows Phone 7

Clearer – A Gesture-Driven Windows 8 To-Do Application

Rate me:
Please Sign up or sign in to vote.
4.97/5 (14 votes)
9 Oct 2012CPOL15 min read 52.3K   878   22  
This article describes my experiences of porting a novel gesture-driven Windows Phone app to Windows 8.
using System.Collections.ObjectModel;
using System.Linq;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Collections.Generic;


namespace ClearStyle.ViewModel
{
  /// <summary>
  /// An ObservableCollection which exposes a Reset method, which raises a CollectionChanged
  /// eventy of type 'NotifyCollectionChangedAction.Reset'.
  /// </summary>
  public class ObservableCollectionEx<T> : ObservableCollection<T>
  {
    public ObservableCollectionEx()
    {
    }

    public ObservableCollectionEx(IEnumerable<T> list)
      : base(list)
    {
    }

    public void Reset()
    {
      OnCollectionChanged(new NotifyCollectionChangedEventArgs(
        NotifyCollectionChangedAction.Reset));
    }

    #region property changed relay

    protected override void InsertItem(int index, T item)
    {
      var propertyChangedItem = item as INotifyPropertyChanged;
      if (propertyChangedItem != null)
      {
        propertyChangedItem.PropertyChanged += Item_PropertyChanged;
      }

      base.InsertItem(index, item);
    }

    protected override void RemoveItem(int index)
    {
      T item = this[index];

      var propertyChangedItem = item as INotifyPropertyChanged;
      if (propertyChangedItem != null)
      {
        propertyChangedItem.PropertyChanged -= Item_PropertyChanged;
      }

      base.RemoveItem(index);
    }

    private void Item_PropertyChanged(object sender, PropertyChangedEventArgs e)
    {
      RelayedPropertyChanged(sender, e);
    }

    public event PropertyChangedEventHandler RelayedPropertyChanged = delegate { };

    #endregion
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Scott Logic
United Kingdom United Kingdom
I am CTO at ShinobiControls, a team of iOS developers who are carefully crafting iOS charts, grids and controls for making your applications awesome.

I am a Technical Architect for Visiblox which have developed the world's fastest WPF / Silverlight and WP7 charts.

I am also a Technical Evangelist at Scott Logic, a provider of bespoke financial software and consultancy for the retail and investment banking, stockbroking, asset management and hedge fund communities.

Visit my blog - Colin Eberhardt's Adventures in .NET.

Follow me on Twitter - @ColinEberhardt

-

Comments and Discussions