From 76e6d851ef5a8d3a2a9a1f2a3f90b74dd31eae86 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期三, 14 六月 2023 20:32:35 +0800 Subject: [PATCH] 渐变时间修复发送 --- HDL_ON/UI/UI1-Login/LoginPage.cs | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/HDL_ON/UI/UI1-Login/LoginPage.cs b/HDL_ON/UI/UI1-Login/LoginPage.cs index 0eda5db..a109e0c 100644 --- a/HDL_ON/UI/UI1-Login/LoginPage.cs +++ b/HDL_ON/UI/UI1-Login/LoginPage.cs @@ -41,8 +41,14 @@ { if (etPassword.Foucs) { + new Thread(() => { + Thread.Sleep(100); + if (this.Y < 0) + { + return; + } for (var i = 0; i < 10; i++) { Application.RunOnMainThread(() => @@ -246,6 +252,8 @@ #if __Android__ OnAppConfig.Instance.isAgreePrivacyPolicy = true; #endif + this.BackgroundColor = CSS_Color.MainBackgroundColor; + var btnIcon = new Button() { X = Application.GetRealWidth(28), -- Gitblit v1.8.0