From d1ab259186e2341a0839c87300065e9bb5f14e9c Mon Sep 17 00:00:00 2001 From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local> Date: 星期二, 12 十一月 2019 10:42:14 +0800 Subject: [PATCH] 2019.11.12 --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs | 22 ++++++++++++++++++++-- 1 files changed, 20 insertions(+), 2 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs index 4eb84cc..9d31add 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ListViewLayoutControls/VerticalListControl.cs @@ -23,6 +23,21 @@ /// 涓�涓病浠�涔堢敤鐨勪笢瑗� /// </summary> private FrameLayout frameBackTemp = null; + /// <summary> + /// 鑷畾涔夌殑鑾峰彇瀛愭帶浠朵釜鏁� + /// </summary> + public new int ChildrenCount + { + get + { + int count = base.ChildrenCount; + if (frameBackTemp != null) + { + count--; + } + return count < 0 ? 0 : count; + } + } #endregion @@ -87,8 +102,11 @@ { frameBackTemp?.RemoveFromParent(); frameBackTemp = null; - //杩樺師涓烘渶澶ч珮搴� - this.Height = maxHeight; + if (maxHeight != -1) + { + //杩樺師涓烘渶澶ч珮搴� + this.Height = maxHeight; + } return; } -- Gitblit v1.8.0