HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-12-14 e90209beae6a4e822cecb18e6889f8bda23f630e
ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/CompoundControls/SearchEditText.cs
File was renamed from ZigbeeApp/Shared/Phone/Common/Controls/CompoundControls/SearchEditText.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
namespace Shared.Phone
namespace Shared.Phone.UserCenter
{
    /// <summary>
    /// 制作一个根据键值进行搜索的控件
@@ -73,13 +73,13 @@
            //搜索图标
            var btnIcon = new IconViewControl(52);
            btnIcon.Gravity = Gravity.CenterVertical;
            btnIcon.X = HdlControlResourse.XXLeft;
            btnIcon.X = ControlCommonResourse.XXLeft;
            btnIcon.UnSelectedImagePath = "Item/Search.png";
            this.AddChidren(btnIcon);
            //取消
            var btnCancel = new IconViewControl(58);
            btnCancel.X = this.Width - HdlControlResourse.XXLeft / 2 - btnCancel.IconSize;
            btnCancel.X = this.Width - ControlCommonResourse.XXLeft / 2 - btnCancel.IconSize;
            btnCancel.UnSelectedImagePath = "Item/CancelIcon.png";
            btnCancel.Gravity = Gravity.CenterVertical;
            this.AddChidren(btnCancel);