From 049d6807b7cbf9a338da659a556d137915a0bf15 Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期二, 29 八月 2023 09:22:37 +0800
Subject: [PATCH] 2023年08月29日09:22:35

---
 HDL_ON/UI/UI2/FuntionControlView/Aks/MusicPage.cs |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Aks/MusicPage.cs b/HDL_ON/UI/UI2/FuntionControlView/Aks/MusicPage.cs
index ae0273e..668d031 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Aks/MusicPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Aks/MusicPage.cs
@@ -54,14 +54,14 @@
 
         private void EventListener()
         {
-            cornerFram.selectAction += (value) =>
+            cornerFram.selectKeyAction += (value) =>
             {
                 Console.WriteLine("1");
             };
 
             typeSingleFramLayout.SetClickListener((f) =>
             {
-                YkPage ykPage = new YkPage();
+                YkPage ykPage = new YkPage(this.remoteControl);
                 MainPage.BasePageView.AddChidren(ykPage);
                 MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
                 ykPage.Show();
@@ -124,31 +124,34 @@
             this.AddChidren(btnTitle);
 
             cornerFram = new CornerFramLayout(343, 452, 17);
+            this.AddChidren(cornerFram);
             cornerFram.X = Application.GetRealWidth(16);
             cornerFram.Y = btnTitle.Bottom + Application.GetRealHeight(16);
-            this.AddChidren(cornerFram);
             cornerFram.SetMargin(16, 0, 16, 0);
             cornerFram.LoadButtonPage(AksCommonMethod.Current.GetMusicKeypadList(), 4);
 
 
             CornerFramLayout cornerBottomFram = new CornerFramLayout(343, 364, 17);
+            this.AddChidren(cornerBottomFram);
             cornerBottomFram.X = Application.GetRealWidth(16);
             cornerBottomFram.Y = cornerFram.Bottom + Application.GetRealHeight(16);
             cornerBottomFram.BackgroundColor = MusicColor.WhiteColor;
             cornerBottomFram.Radius = (uint)Application.GetRealHeight(17);
-            this.AddChidren(cornerBottomFram);
+          
 
             typeSingleFramLayout = new TypeSingleFramLayout();
-            typeSingleFramLayout.singleFramLayout.Y = Application.GetRealHeight(24);
             typeSingleFramLayout.AddView(cornerBottomFram);
+            typeSingleFramLayout.singleFramLayout.Y = Application.GetRealHeight(24);
+
 
             menuFram = new MenuFramLayout();
-            menuFram.Y = typeSingleFramLayout.singleFramLayout.Bottom + Application.GetRealHeight(32);
             menuFram.AddView(cornerBottomFram);
+            menuFram.Y = typeSingleFramLayout.singleFramLayout.Bottom + Application.GetRealHeight(32);
+
 
             typeMultiFramLayout = new TypeMultiFramLayout();
-            typeMultiFramLayout.multiFramLayout.Y = menuFram.Bottom + Application.GetRealHeight(32);
             typeMultiFramLayout.AddView(cornerBottomFram);
+            typeMultiFramLayout.multiFramLayout.Y = menuFram.Bottom + Application.GetRealHeight(32);
             //typeMultiFramLayout.btnBottonRightName.TextID = StringId.bofangqi;
             typeMultiFramLayout.btnBottonRightName.Text = this.remoteControl.name;
 

--
Gitblit v1.8.0