From 452e8cef1c740d18ee398be6971d9952e41dbd4a Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期三, 12 四月 2023 16:11:50 +0800
Subject: [PATCH] 1
---
HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs b/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
index 980ea4d..db258bb 100644
--- a/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
+++ b/HDL_ON/UI/UI0-Public/DiySelectPopupDialog.cs
@@ -70,7 +70,7 @@
/// <param name="mSecondList">浜岀骇鏁版嵁闆嗗悎</param>
/// <param name="SelectAction">閫夋嫨鍥炶皟浜嬩欢</param>
/// <param name="selectTagId"></param>
- public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT)
+ public void ShowView(List<RoomCellInfo> mFirstList, List<List<RoomCellInfo>> mSecondList, Action<string> SelectAction, string selectTagId = ALLSELECT, int offsetY = 0)
{
if (mFirstList == null)
{
@@ -109,7 +109,7 @@
}
//View鏄剧ず
- ShowDoubleBaseView();
+ ShowDoubleBaseView(offsetY);
//鏁版嵁鍐呭濉厖
RefreshDoubleBaseView();
//閫変腑鏁堟灉
@@ -206,7 +206,7 @@
/// <summary>
/// 鏄剧ず浜岀骇view
/// </summary>
- void ShowDoubleBaseView()
+ void ShowDoubleBaseView(int offsetY = 0)
{
bodyView.BackgroundColor = CSS_Color.DialogTransparentColor1;
this.AddChidren(bodyView);
@@ -218,7 +218,7 @@
BackView = new FrameLayout()
{
X = Application.GetRealWidth(10),
- Y = Application.GetRealHeight(104),
+ Y = Application.GetRealHeight(104+ offsetY),
Width = Application.GetRealWidth(283),
Height = Application.GetRealWidth(242),
};
--
Gitblit v1.8.0