From b78a4d0ca90416d37fcbaf5e54b00f7eaab53919 Mon Sep 17 00:00:00 2001
From: WJC <wjc@hdlchina.com.cn>
Date: 星期一, 14 十月 2019 17:03:58 +0800
Subject: [PATCH] 2019-10-14-2
---
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