From 1f4cec0e3b571e7541f0c7f3a5ea302ed586d9fb Mon Sep 17 00:00:00 2001 From: WJC <wjc@hdlchina.com.cn> Date: 星期四, 24 十月 2019 16:47:06 +0800 Subject: [PATCH] 2019-10-24-5 --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs index 24f7d61..6d9db74 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/TextInputControls/TextInputExControl.cs @@ -33,7 +33,7 @@ public TextInputExControl(int i_Width, int i_Height, bool real = false) { this.InitSize(i_Width, i_Height, real); - this.TextColor = UserCenterColor.Current.TextGrayColor; + this.TextColor = UserCenterColor.Current.TextGrayColor3; this.TextChangeEventHandler += this.TextChangeEvent; this.EditorEnterAction += this.EditorEnterEvent; @@ -47,7 +47,7 @@ public TextInputExControl(int i_Width, bool real = false) { this.InitSize(i_Width, real); - this.TextColor = UserCenterColor.Current.TextGrayColor; + this.TextColor = UserCenterColor.Current.TextGrayColor3; this.TextChangeEventHandler += this.TextChangeEvent; this.EditorEnterAction += this.EditorEnterEvent; @@ -63,7 +63,7 @@ /// <param name="view"></param> private void EditorEnterEvent(View view) { - this.TextColor = UserCenterColor.Current.TextGrayColor; + this.TextColor = UserCenterColor.Current.TextGrayColor3; this.IsTextBlack = false; this.FinishInputEvent?.Invoke(); } -- Gitblit v1.8.0