コード例 #1
0
ファイル: EditProfile.xaml.cs プロジェクト: CuiXiaoDao/tinder
        protected async override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
        {
            BioUpdate bioUpdate = new BioUpdate();
            bioUpdate.Bio = TinderSession.CurrentSession.CurrentProfile.BiographyText;
            await bioUpdate.SaveProfile();

            base.OnBackKeyPress(e);
        }
コード例 #2
0
        protected async override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
        {
            BioUpdate bioUpdate = new BioUpdate();

            bioUpdate.Bio = TinderSession.CurrentSession.CurrentProfile.bio;
            await bioUpdate.SaveProfile();

            base.OnBackKeyPress(e);
        }