wxr
2024-12-02 f60b17fa18701c2cee017a5117e96510f54b44cf
HDL_ON/UI/UI2/2-Classification/ClassificationPage.cs
@@ -366,23 +366,30 @@
            {
                Height = Application.GetRealWidth(192),
                Radius = (uint)Application.GetRealWidth(12),
                BackgroundColor = 0xFFFFFFFF,
            };
            roomView.AddChidren(roomViewbgColor);
            var nameView = new FrameLayout()
            {
                Height = Application.GetRealWidth(50),
                BackgroundColor = 0x33000000,
                Radius = (uint)Application.GetRealWidth(12),
            };
            roomView.AddChidren(nameView);
            var btnFloorAndRoomName = new Button()
            {
                X = Application.GetRealWidth(16),
                Y = Application.GetRealHeight(12 - 2),
                Y = Application.GetRealWidth(12 - 2),
                Width = Application.GetRealWidth(266),
                Height = Application.GetRealHeight(22 + 2 + 2),
                Height = Application.GetRealWidth(22 + 2 + 2),
                Text = room.floorName + room.roomName,
                TextAlignment = TextAlignment.CenterLeft,
                TextColor = CSS_Color.MainBackgroundColor,
                TextSize = CSS_FontSize.HeadlineFontSize,
                TextSize = CSS_FontSize.SubheadingFontSize + OnAppConfig.Instance.FontAmplify,
                IsBold = true,
            };
            roomView.AddChidren(btnFloorAndRoomName);
            nameView.AddChidren(btnFloorAndRoomName);
            var btnAllClose = new Button()
            {