public Sections()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
     this.defaultViewModel.Add("Items", new SectionsStoreData().getSections());
 }
        public BitmapCanvas()
        {
            this.InitializeComponent();
            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += navigationHelper_LoadState;
            this.navigationHelper.SaveState += navigationHelper_SaveState;

            Dashboard.PointerPressed += new PointerEventHandler(MyCanvas_PointerPressed);
            Dashboard.PointerMoved += new PointerEventHandler(MyCanvas_PointerMoved);
            Dashboard.PointerReleased += new PointerEventHandler(MyCanvas_PointerReleased);
            Dashboard.PointerExited += new PointerEventHandler(MyCanvas_PointerReleased);
        }
 public Levels()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }