| | |
| | | LoadEvent_ChangeBindEmail(); |
| | | LoadEvent_ChangeBindPhone(); |
| | | LoadEvent_SkipModifyPassword(); |
| | | LoadEvent_MyQRcode(); |
| | | GetUserInfo(); |
| | | } |
| | | |
| | |
| | | }).Start(); |
| | | #endregion |
| | | |
| | | UserInfo.Current.lastTime = DateTime.MinValue; |
| | | //2.注销推送 |
| | | new HttpServerRequest().SignOutPush(); |
| | | //3.跳转登录页面 |
| | | UserInfo.Current.LastTime = DateTime.MinValue; |
| | | UserInfo.Current.SaveUserInfo(); |
| | | MainPage.GoLoginPage(UserInfo.Current); |
| | | DB_ResidenceData.residenceData.EixtAccount(); |
| | |
| | | btnTakePicture.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | btnTakePicture.IsSelected = false; |
| | | var pid = Guid.NewGuid(); |
| | | CropImage.TakePicture((Action<string>)((imagePath) => |
| | | //var pid = Guid.NewGuid(); |
| | | //CropImage.TakePicture((Action<string>)((imagePath) => |
| | | //{ |
| | | // if (imagePath != null) |
| | | // { |
| | | // UserInfo.Current.headImagePagePath = imagePath.ToString(); |
| | | // userHeadImageView.ImagePath = imagePath.ToString(); |
| | | // updataHeadImage(); |
| | | // new System.Threading.Thread(() => |
| | | // { |
| | | // new DAL.Server.HttpServerRequest().UpdataUserHeadImage(imagePath); |
| | | // }) |
| | | // { IsBackground = true }.Start(); |
| | | // UserInfo.Current.SaveUserInfo(); |
| | | // MainPage.Log("SelectPicture 裁剪图片返回路径: " + imagePath); |
| | | // } |
| | | //}), pid.ToString(), 1, 1); |
| | | |
| | | //拍照裁剪 |
| | | var imageName = Guid.NewGuid().ToString() + ".png"; |
| | | CropImage.TakePicture((imagePath) => |
| | | { |
| | | if (imagePath != null) |
| | | { |
| | | UserInfo.Current.headImagePagePath = imagePath.ToString(); |
| | | userHeadImageView.ImagePath = imagePath.ToString(); |
| | | updataHeadImage(); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | new DAL.Server.HttpServerRequest().UpdataUserHeadImage(imagePath); |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | UserInfo.Current.SaveUserInfo(); |
| | | MainPage.Log("SelectPicture 裁剪图片返回路径: " + imagePath); |
| | | } |
| | | }), pid.ToString(), 1, 1); |
| | | CropImageCallBack(imagePath, imageName); |
| | | |
| | | }, imageName, 1, 1); |
| | | |
| | | pictureOptionView.RemoveFromParent(); |
| | | baseView.RemoveFromParent(); |
| | | }; |
| | |
| | | btnAlbum.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | btnAlbum.IsSelected = false; |
| | | var pid = Guid.NewGuid(); |
| | | //var pid = Guid.NewGuid(); |
| | | //CropImage.SelectPicture((imagePath) => |
| | | //{ |
| | | // if (imagePath != null) |
| | | // { |
| | | // UserInfo.Current.headImagePagePath = imagePath.ToString(); |
| | | // userHeadImageView.ImagePath = imagePath.ToString(); |
| | | // updataHeadImage(); |
| | | |
| | | // new System.Threading.Thread(() => |
| | | // { |
| | | // new DAL.Server.HttpServerRequest().UpdataUserHeadImage(imagePath); |
| | | // }) |
| | | // { IsBackground = true }.Start(); UserInfo.Current.SaveUserInfo(); |
| | | // MainPage.Log("SelectPicture 裁剪图片返回路径: " + imagePath); |
| | | // } |
| | | //}, pid.ToString(), 1, 1); |
| | | |
| | | //从相册选择图片裁剪 |
| | | var imageName = Guid.NewGuid().ToString() + ".png"; |
| | | CropImage.SelectPicture((imagePath) => |
| | | { |
| | | if (imagePath != null) |
| | | { |
| | | UserInfo.Current.headImagePagePath = imagePath.ToString(); |
| | | userHeadImageView.ImagePath = imagePath.ToString(); |
| | | updataHeadImage(); |
| | | CropImageCallBack(imagePath, imageName); |
| | | }, imageName, 1, 1); |
| | | |
| | | new System.Threading.Thread(() => |
| | | { |
| | | new DAL.Server.HttpServerRequest().UpdataUserHeadImage(imagePath); |
| | | }) |
| | | { IsBackground = true }.Start(); UserInfo.Current.SaveUserInfo(); |
| | | MainPage.Log("SelectPicture 裁剪图片返回路径: " + imagePath); |
| | | } |
| | | }, pid.ToString(), 1, 1); |
| | | pictureOptionView.RemoveFromParent(); |
| | | baseView.RemoveFromParent(); |
| | | }; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | /// <param name="imagePath"></param> |
| | | /// <param name="imageName"></param> |
| | | void CropImageCallBack(string imagePath, string imageName) |
| | | { |
| | | if (string.IsNullOrEmpty(imagePath) == true) |
| | | { |
| | | return; |
| | | } |
| | | //删除原来本地头像 |
| | | System.IO.File.Delete(userHeadImageView.ImagePath); |
| | | Utlis.WriteLine("删除: " + userHeadImageView.ImagePath); |
| | | |
| | | MainPage.Log("SelectPicture 裁剪图片返回路径: " + imagePath); |
| | | //userHeadImageView.ImageBytes = Shared.IO.FileUtils.ReadFile(imagePath); |
| | | FileUtils.FileCopyToRootPath(imagePath, imageName); |
| | | System.IO.File.Delete(imagePath); |
| | | //生成图片 |
| | | //Shared.IO.FileUtils.WriteFileByBytes(imageName, userHeadImageView.ImageBytes); |
| | | UserInfo.Current.headImagePagePath = imageName; |
| | | userHeadImageView.ImagePath = imageName; |
| | | updataHeadImage(); |
| | | |
| | | new System.Threading.Thread(() => |
| | | { |
| | | new DAL.Server.HttpServerRequest().UpdataUserHeadImage(imageName); |
| | | }) |
| | | { IsBackground = true }.Start(); UserInfo.Current.SaveUserInfo(); |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | btnEditUserNameIcon.MouseUpEventHandler = eventHandler; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 加载我的二维码事件 |
| | | /// </summary> |
| | | void LoadEvent_MyQRcode() |
| | | { |
| | | EventHandler<MouseEventArgs> eventHandler = (sender, e) => |
| | | { |
| | | //我的二维码 |
| | | var aep = new MyQRCodePage(); |
| | | MainPage.BasePageView.AddChidren(aep); |
| | | aep.LoadPage(); |
| | | MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; |
| | | |
| | | }; |
| | | _QRcodeView.MouseUpEventHandler = eventHandler; |
| | | btnQRcode.MouseUpEventHandler = eventHandler; |
| | | btnQRcodeIcon.MouseUpEventHandler = eventHandler; |
| | | btnQRcodeRight.MouseUpEventHandler = eventHandler; |
| | | } |
| | | |
| | | #region 修改绑定邮箱 |
| | | /// <summary> |
| | | /// 修改绑定邮箱 |