public PeopleInfoEditorPage()
        {
            InitializeComponent();

            TiltEffect.SetIsTiltEnabled(this, true);
            this.DataContext = this;
            peopleInfoEditor = new Controls.PeopleManager.PeopleInfoEditor(this);

            this.ContentPanel.Children.Add(peopleInfoEditor);

            Loaded += new RoutedEventHandler(PeopleInfoEditorPage_Loaded);

            InitializeApplicationBar();
        }
 private void CancelMenuButton_Click(object sender, EventArgs e)
 {
     this.peopleInfoEditor = null;
     this.SafeGoBack();
 }