From 9d65c293924e4edbbc8c6c6091f55d7fc49c23eb Mon Sep 17 00:00:00 2001
From: wei <kaede@kaededeMacBook-Air.local>
Date: 星期二, 06 七月 2021 13:15:46 +0800
Subject: [PATCH] 乐橙子账号token
---
HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPage.cs | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPage.cs
index e32c1e8..5b18a2d 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomsManagementPage.cs
@@ -49,6 +49,8 @@
/// </summary>
void LoadRoomRow(Room room)
{
+ roomsListView.AddChidren(new Button() { Height = Application.GetRealHeight(10) });
+
var roomRow = new FrameLayout()
{
Tag = room.roomName + "row",
@@ -56,10 +58,11 @@
};
roomsListView.AddChidren(roomRow);
+
var btnBg = new ImageView()
{
- Y = Application.GetRealHeight(10),
- Height = Application.GetRealHeight(90),
+ Y = Application.GetRealHeight(-50),
+ Height = Application.GetRealHeight(192),
Width = Application.GetRealWidth(343),
//ImagePath = room.backgroundImage,
Radius = (uint)Application.GetRealWidth(12),
@@ -69,6 +72,12 @@
//2020-12-03 淇敼鍥剧墖鍔犺浇鏂规硶
ImageUtlis.Current.LoadLocalOrNetworkImages(room.backgroundImage, btnBg);
+
+ var btn = new Button()
+ {
+ UnSelectedImagePath = "RoomListBg.png",
+ };
+ roomRow.AddChidren(btn);
var btnRoomName = new Button()
{
@@ -89,6 +98,7 @@
btnBg.MouseUpEventHandler = eventHandler;
roomRow.MouseUpEventHandler = eventHandler;
btnRoomName.MouseUpEventHandler = eventHandler;
+ btn.MouseUpEventHandler = eventHandler;
}
}
--
Gitblit v1.8.0