HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-12-31 fe3b2466c68b5db70d38e78039703add3b8b1dfe
ZigbeeApp/Shared/Phone/UserCenter/UserMain/QRCodeForm.cs
@@ -69,19 +69,19 @@
            btnIcon.Radius = (uint)this.GetRealSizeEx(294) / 2;
            btnIcon.Y = frameDetail.Y - this.GetRealSizeEx(294) / 2;
            btnIcon.Gravity = Gravity.CenterHorizontal;
            btnIcon.ImageBytes = Shared.IO.FileUtils.ReadFile(HdlFileNameResourse.UserHeadIconFile);
            btnIcon.ImageBytes = Shared.IO.FileUtils.ReadFile(UserCenterResourse.UserInfo.UserIconFile);
            frameBack.AddChidren(btnIcon);
            //用户名
            var btnUser = new NormalViewControl(frameBack.Width, this.GetRealHeight(50), false);
            btnUser.IsBold = true;
            btnUser.Y = btnIcon.Bottom + this.GetRealSizeEx(23);
            btnUser.Text = HdlUserCenterResourse.UserInfo.NickName;
            btnUser.Text = UserCenterResourse.UserInfo.UserName;
            btnUser.TextAlignment = TextAlignment.Center;
            btnUser.TextColor = UserCenterColor.Current.TextGrayColor2;
            frameBack.AddChidren(btnUser);
            //二维码
            var btnQrCode = new PicViewControl(this.GetRealSizeEx(236), this.GetRealSizeEx(236), false);
            btnQrCode.ImageBytes = QRCode.BytesFromText(HdlUserCenterResourse.UserInfo.Account, this.GetPictrueRealSize(236), this.GetPictrueRealSize(236));
            btnQrCode.ImageBytes = QRCode.BytesFromText(UserCenterResourse.UserInfo.Account, this.GetPictrueRealSize(236), this.GetPictrueRealSize(236));
            btnQrCode.Gravity = Gravity.CenterHorizontal;
            btnQrCode.Y = btnUser.Bottom + this.GetRealSizeEx(69);
            frameBack.AddChidren(btnQrCode);