From e5f993f52e09eb46878baced83bb8492f147d41c Mon Sep 17 00:00:00 2001 From: WJC <wjc@hdlchina.com.cn> Date: 星期一, 04 十一月 2019 17:58:40 +0800 Subject: [PATCH] 2019-11-04-1 --- 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