From 3f6685c77beeb12baf840733fb890860f4c26e7c Mon Sep 17 00:00:00 2001
From: mac <user@users-MacBook-Pro.local>
Date: 星期四, 25 七月 2024 17:25:59 +0800
Subject: [PATCH] 2024年07月25日17:24:45

---
 HDL_ON/UI/UI2/FuntionControlView/Aks/CommonView/CornerFramLayout.cs |  515 +++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 449 insertions(+), 66 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Aks/CommonView/CornerFramLayout.cs b/HDL_ON/UI/UI2/FuntionControlView/Aks/CommonView/CornerFramLayout.cs
index 2d3b075..6595c4d 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Aks/CommonView/CornerFramLayout.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Aks/CommonView/CornerFramLayout.cs
@@ -2,6 +2,8 @@
 using HDL_ON.UI.Music;
 using Shared;
 using System.Collections.Generic;
+using HDL_ON.UI.UI2.FuntionControlView.Aks.Entity;
+
 
 namespace HDL_ON.UI.UI2.FuntionControlView.Aks.CommonView
 {
@@ -14,32 +16,41 @@
         private int leftMargin;
         private int bottomMargin;
         private int rightMargin;
+        private int mWidth;
+        private int mHeight;
         /// <summary>
         /// 涓�琛屽嚑涓厓绱�
         /// </summary>
         private int mRowNumber;
-
-        private List<int> mList;
-
-        public Action<int> selectAction = null;
         /// <summary>
-        /// 褰撳墠閫夋嫨鐨勭储寮�(鍐呴儴浣跨敤)
+        /// 鍒楄〃鏈�澶у��
         /// </summary>
-        private int CurrnetSelectIndex = -1;
+        private int mListCount;
+        /// <summary>
+        /// 鎸夐敭鍥炶皟
+        /// </summary>
+        public Action<KeypadEntity> selectKeyAction = null; 
+        /// <summary>
+        /// 褰辩墖鍥炶皟
+        /// </summary>
+        public Action<MovieLibrary> selectImageAction = null;
+
+
         /// <summary>
         /// 
         /// </summary>
         /// <param name="width">瀹瑰櫒瀹藉害</param>
         /// <param name="height">瀹瑰櫒楂樺害</param>
-        ///<param name="rowNumber">涓�琛屽嚑涓厓绱�</param>
         ///<param name="rowNumber">鍦嗚鍊�</param>
-        public CornerFramLayout(int width, int height, int rowNumber,int radius=0)
+        public CornerFramLayout(int width, int height, int radius = 0)
         {
             this.BackgroundColor = MusicColor.WhiteColor;
             this.Width = Application.GetRealWidth(width);
             this.Height = Application.GetRealHeight(height);
             this.Radius = (uint)Application.GetRealHeight(radius);
-            this.mRowNumber = rowNumber;
+            this.mWidth = this.Width;
+            this.mHeight = this.Height;
+
 
         }
         /// <summary>
@@ -57,48 +68,42 @@
             this.rightMargin = right;
         }
 
-        /// <summary>
-        /// 璁剧疆鍒楄〃鏁版嵁(璇峰湪鍒濆鍖栧畬鎴愪箣鍓嶈皟鐢�)
-        /// </summary>
-        /// <param name="list"></param>
-        public void SetList(List<int> list)
-        {
-            if (list == null)
-            {
-                list = new List<int>();
-            }
-            this.mList = list;
-        }
+
 
         /// <summary>
         /// 鑾峰彇娴嬭瘯鍒楄〃鏁版嵁
         /// </summary>
-        public List<int> GetTestList(int count)
+        public List<KeypadEntity> GetTestList()
         {
-            var list = new List<int>();
-            for (int i = 1; i <= count; i++)
-            {
-                list.Add(i);
-            }
-            return list;
+            return AksCommonMethod.Current.GetTYYKeypadList(null);
         }
 
         /// <summary>
         /// 鍔ㄦ�佸姞杞芥寜閿晫闈�
         /// </summary>
-        public void LoadButtonPage()
+        /// <param name="mList">鍒楄〃</param>
+        /// <param name="mRowNumber">涓�琛屽灏戜釜鍏冪礌</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadButtonPage(List<KeypadEntity> mList, int mRowNumber, int defaultIndex = -1)
         {
-            if (this.mRowNumber == 0)
+            if (mList == null || mList.Count == 0)
             {
                 return;
             }
+            if (mRowNumber == 0)
+            {
+                return;
+            }
+            this.mRowNumber = mRowNumber;
+            this.mListCount = mList.Count;
             int line = 0;
             int xCount = 0;
-            for (int i = 1; i <= this.mList.Count; i++)
+            for (int i = 1; i <= mList.Count; i++)
             {
-                ButtonFramLayout buttonFram = new ButtonFramLayout();             
+                var keypad = mList[i - 1];
+                ButtonFramLayout buttonFram = new ButtonFramLayout();
                 this.AddChidren(buttonFram);
-                buttonFram.Tag = i - 1;
+                buttonFram.Tag = keypad;
                 buttonFram.Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(ButtonFramLayout.heightFrameLayout * line);
                 buttonFram.X = Application.GetRealWidth(this.leftMargin) + Application.GetRealWidth(ButtonFramLayout.widthFrameLayout * xCount);
                 buttonFram.AddImageView();
@@ -111,7 +116,8 @@
                 {
                     buttonFram.AddBottomLine();
                 }
-                buttonFram.GetNameButton().Text = i.ToString();
+                buttonFram.GetImageButton().UnSelectedImagePath = keypad.localIconAddress;
+                buttonFram.GetNameButton().Text = keypad.name;
 
                 xCount++;
                 if (i % this.mRowNumber == 0)
@@ -120,44 +126,272 @@
                     line++;
                     xCount = 0;
                 }
+                //涓嶆敮鎸佹寜閿偣鍑昏儗鏅鑹�
+                if (!keypad.isClicked)
+                {
+                    buttonFram.GetImageButton().Alpha = 0.5f;
+                    buttonFram.GetNameButton().TextColor =unBackgroundColor;
+                    buttonFram.SetClick(false);
+
+                }
                 buttonFram.SetClickListener((fl, btnIcon, btnName) =>
                 {
-                    selectAction?.Invoke((int)buttonFram.Tag);
+                    if (buttonFram.Tag == null)
+                    {
+                        return;
+                    }
+                    selectKeyAction?.Invoke((KeypadEntity)buttonFram.Tag);
                 });
 
-                //if (CurrnetSelectIndex != -1 && CurrnetSelectIndex == i)
+                //if (defaultIndex != -1 && defaultIndex == i)
                 //{
-                //    selectAction?.Invoke((int)buttonFram.Tag);
+                //    if (buttonFram.Tag != null && buttonFram.Tag is KeypadEntity)
+                //    {
+                //        selectAction?.Invoke((KeypadEntity)buttonFram.Tag);
+                //    }
                 //}
 
 
             }
         }
 
-
         /// <summary>
-        /// 鍔ㄦ�佸姞杞藉浘鐗囩晫闈�
+        /// 鍔ㄦ�佸姞杞芥寜閿晫闈�
         /// </summary>
-        public void LoadImagePage()
+        /// <param name="mList">鍒楄〃</param>
+        /// <param name="list"> 鍒楄〃涓储寮�,琛ㄧず鏌愪竴鏉″搴﹀姞瀹�,娌℃湁榛樿(new List<int>)</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadButtonPage(List<KeypadEntity> mList, List<int> list,int defaultIndex=-1)
         {
-            if (this.mRowNumber == 0)
+            if (mList == null || mList.Count == 0)
             {
                 return;
             }
-            int line = 0;
-            int xCount = 0;
-            for (int i = 1; i <= this.mList.Count; i++)
+            int currnetheightValue = 0;
+            int currnetWidthValue = 0;
+            //鑾峰彇鐩稿涓�涓含搴﹀��
+            int heightDimensionValue = this.Height - Application.GetRealHeight(this.topMargin) - Application.GetRealHeight(this.bottomMargin) - Application.GetRealHeight(ButtonFramLayout.heightFrameLayout / 2);
+            int widthDimensionValue = this.Width - Application.GetRealWidth(this.leftMargin) - Application.GetRealWidth(this.rightMargin) - Application.GetRealHeight(ButtonFramLayout.widthFrameLayout / 2);
+            for (int i = 1; i <= mList.Count; i++)
             {
+                var keypad = mList[i - 1];
+                ButtonFramLayout buttonFram = null;
+                if (list.Contains(i))
+                {
+                    buttonFram = new ButtonFramLayout(ButtonFramLayout.widthFrameLayout * 2);
+                    buttonFram.Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(currnetheightValue);
+                    buttonFram.X = Application.GetRealWidth(this.leftMargin) + Application.GetRealWidth(currnetWidthValue);
+                    currnetWidthValue += ButtonFramLayout.widthFrameLayout * 2;
+                }
+                else
+                {
+                    buttonFram = new ButtonFramLayout();
+                    buttonFram.Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(currnetheightValue);
+                    buttonFram.X = Application.GetRealWidth(this.leftMargin) + Application.GetRealWidth(currnetWidthValue);
+                    currnetWidthValue += ButtonFramLayout.widthFrameLayout;
+
+                }
+
+                this.AddChidren(buttonFram);
+                buttonFram.AddImageView();
+                buttonFram.AddNameView();
+                buttonFram.Tag = keypad;//鏍囪鏁版嵁
+                buttonFram.GetImageButton().UnSelectedImagePath = keypad.localIconAddress;
+                buttonFram.GetNameButton().Text = keypad.name;
+                if (widthDimensionValue > Application.GetRealWidth(currnetWidthValue))
+                {
+                    //鍔犲彸绾�
+                    buttonFram.AddRightLine();
+                }
+
+                if (heightDimensionValue > buttonFram.Bottom)
+                {
+                    //鍔犲簳绾�
+                    buttonFram.AddBottomLine();
+                }
+
+                if (widthDimensionValue < Application.GetRealWidth(currnetWidthValue))
+                {
+                    currnetheightValue += ButtonFramLayout.heightFrameLayout;
+                    currnetWidthValue = 0;
+                }
+                //涓嶆敮鎸佹寜閿偣鍑昏儗鏅鑹�
+                if (!keypad.isClicked)
+                {
+                    buttonFram.GetImageButton().Alpha = 0.5f;
+                    buttonFram.GetNameButton().TextColor = unBackgroundColor;
+                    buttonFram.SetClick(false);
+                }
+                buttonFram.SetClickListener((fl, btnIcon, btnName) =>
+                {
+                    if (buttonFram.Tag == null)
+                    {
+                        return;
+                    }
+                    selectKeyAction?.Invoke((KeypadEntity)buttonFram.Tag);
+                  
+                });
+
+                //if (defaultIndex != -1 && defaultIndex == i)
+                //{
+                //    if (buttonFram.Tag != null && buttonFram.Tag is KeypadEntity)
+                //    {
+                //        selectAction?.Invoke((KeypadEntity)buttonFram.Tag);
+                //    }
+                //}
+            }
+        }
+
+        /// <summary>
+        ///鍔ㄦ�佸姞杞芥暟瀛楁寜閿晫闈�
+        /// </summary>
+        /// <param name="mList">鍒楄〃</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadNumberButtonPage(List<KeypadEntity> mList)
+        {
+            if (mList == null || mList.Count == 0)
+            {
+                return;
+            }
+            int currnetheightValue = 0;
+            int currnetWidthValue = 0;
+            int heightMaxValue = 84 - 6;
+            int widthMaxValue = 78;
+            //鑾峰彇鐩稿涓�涓含搴﹀��
+            int heightDimensionValue = this.Height - Application.GetRealHeight(this.topMargin) - Application.GetRealHeight(this.bottomMargin) - Application.GetRealHeight(heightMaxValue / 2);
+            int widthDimensionValue = this.Width - Application.GetRealWidth(this.leftMargin) - Application.GetRealWidth(this.rightMargin) - Application.GetRealHeight(widthMaxValue / 2);
+            for (int i = 0; i < mList.Count; i++)
+            {
+                var keypad = mList[i];
+                Button button = new Button
+                {
+                    Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(currnetheightValue),
+                    X = Application.GetRealWidth(this.leftMargin) + Application.GetRealWidth(currnetWidthValue),
+                    Width = Application.GetRealWidth(widthMaxValue),
+                    Height = Application.GetRealHeight(heightMaxValue),
+                    Text = keypad.name,
+                    TextSize = TextSize.Text20,
+                    TextColor = MusicColor.TextColor,
+                    TextAlignment = TextAlignment.Center,
+                    IsBold = true,
+                    Tag = keypad,
+                    BackgroundColor = MusicColor.WhiteColor,
+                    SelectedBackgroundColor = 0xFFF2F3F7,
+                    Radius = (uint)Application.GetRealHeight(8),
+                    SelectedTextColor = MusicColor.TextColor,
+                };
+                this.AddChidren(button);
+
+                currnetWidthValue += widthMaxValue;
+                if (widthDimensionValue < Application.GetRealWidth(currnetWidthValue))
+                {
+                    currnetheightValue += heightMaxValue;
+                    currnetWidthValue = 0;
+                }
+                //涓嶆敮鎸佹寜閿偣鍑昏儗鏅鑹�
+                if (!keypad.isClicked)
+                {
+                    button.TextColor =unBackgroundColor;
+
+                }
+
+
+                button.MouseUpEventHandler += (sen, e) =>
+                {
+                    if (button.Tag == null || ((KeypadEntity)button.Tag).keypad == "none"|| !((KeypadEntity)button.Tag).isClicked)
+                    {
+                        return;
+                    }
+                    selectKeyAction?.Invoke((KeypadEntity)button.Tag);
+                    SetButtonIsSelected(button);
+                };
+
+                //if (defaultIndex != -1 && defaultIndex == i)
+                //{
+                //    selectAction?.Invoke((int)buttonFram.Tag);
+                //}
+            }
+        }
+
+        /// <summary>
+        /// 鍔ㄦ�佸姞杞藉浘鐗囩晫闈�
+        /// 褰辩墖甯冨眬
+        /// </summary>
+        /// <param name="mList">鍒楄〃</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadImagePage(List<MovieLibrary> mList)
+        {
+            if (mList == null || mList.Count == 0)
+            {
+                return;
+            }
+            int currnetheightValue = 0;
+            int currnetWidthValue = 0;
+            int heightMaxValue = ImageFramlayout.heightFrameLayout;
+            int widthMaxValue = ImageFramlayout.widthFrameLayout;
+            //鑾峰彇鐩稿涓�涓含搴﹀��
+            int heightDimensionValue = this.Height - Application.GetRealHeight(this.topMargin) - Application.GetRealHeight(this.bottomMargin) - Application.GetRealHeight(heightMaxValue / 2);
+            int widthDimensionValue = this.Width - Application.GetRealWidth(this.leftMargin) - Application.GetRealWidth(this.rightMargin) - Application.GetRealHeight(widthMaxValue / 2);
+            for (int i = 0; i < mList.Count; i++)
+            {
+                var movieLibrary = mList[i];
                 ImageFramlayout imageFram = new ImageFramlayout();
                 imageFram.AddView(this);
-                //this.AddChidren(imageFram);
-                imageFram.Tag = i - 1;
-                imageFram.Y = Application.GetRealHeight(this.topMargin)+ Application.GetRealHeight((ImageFramlayout.heightFrameLayout + 20) * line);
+                imageFram.Tag = movieLibrary;
+                imageFram.Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(currnetheightValue);
+                imageFram.X = Application.GetRealWidth(currnetWidthValue);
+                imageFram.btnName.Text = movieLibrary.name;
+                imageFram.btnImage.ImageBytes = movieLibrary.imageBytes;
+                imageFram.btnScore.Text = movieLibrary.rating;
+                currnetWidthValue += (widthMaxValue + 8);//8鏄殧闂村��
+                if (widthDimensionValue < Application.GetRealWidth(currnetWidthValue))
+                {
+                    currnetheightValue += (heightMaxValue + 20);//20鏄殧闂村��
+                    currnetWidthValue = 0;
+                }
+
+                imageFram.SetClickListener((fl) =>
+                {
+                    if (imageFram.Tag != null&& imageFram.Tag is MovieLibrary)
+                    {
+                        selectImageAction?.Invoke((MovieLibrary)imageFram.Tag);
+                    }
+                });
+                //if (CurrnetSelectIndex != -1 && CurrnetSelectIndex == i)
+                //{
+                //    selectImageAction?.Invoke((int)imageFram.Tag);
+                //}
+            }
+        }
+        /// <summary>
+        /// 鍔ㄦ�佸姞杞藉浘鐗囩晫闈�
+        /// 褰辩墖甯冨眬
+        /// </summary>
+        /// <param name="mRowNumber">涓�琛屽灏戜釜鍏冪礌</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadImagePage(List<MovieLibrary> mList, int mRowNumber)
+        {
+            if (mList == null || mList.Count == 0)
+            {
+                return;
+            }
+            if (mRowNumber == 0)
+            {
+                return;
+            }
+            this.mListCount = mList.Count;
+            this.mRowNumber = mRowNumber;
+            int line = 0;
+            int xCount = 0;
+            for (int i = 1; i <= mList.Count; i++)
+            {
+                var keypad = mList[i - 1];
+                ImageFramlayout imageFram = new ImageFramlayout();
+                imageFram.AddView(this);
+                imageFram.Tag = keypad;
+                imageFram.Y = Application.GetRealHeight(this.topMargin) + Application.GetRealHeight((ImageFramlayout.heightFrameLayout + 20) * line);
                 imageFram.X = Application.GetRealWidth((ImageFramlayout.widthFrameLayout + 8) * xCount);
-                //imageFram.AddImageView();
-                //imageFram.AddScoreButton();
-                //imageFram.AddNameButton();
-                imageFram.btnName.Text = i.ToString();
+                imageFram.btnName.Text = keypad.name;
 
                 xCount++;
                 if (i % this.mRowNumber == 0)
@@ -168,53 +402,157 @@
                 }
                 imageFram.SetClickListener((fl) =>
                 {
-                    selectAction?.Invoke((int)imageFram.Tag);
+                    if (imageFram.Tag != null && imageFram.Tag is MovieLibrary)
+                    {
+                        selectImageAction?.Invoke((MovieLibrary)imageFram.Tag);
+                    }
                 });
 
                 //if (CurrnetSelectIndex != -1 && CurrnetSelectIndex == i)
                 //{
-                //    selectAction?.Invoke((int)imageFram.Tag);
+                //    selectImageAction?.Invoke((MovieLibrary)imageFram.Tag);
                 //}
 
 
             }
         }
-        /// <summary> 
-        /// 璁剧疆鍒濆閫夋嫨(璇峰湪鍒濆鍖栧畬鎴愪箣鍓嶈皟鐢�)
+
+       private int currnetheightValue1 = 0;
+       private int currnetWidthValue1 = 0;
+       private int heightMaxValue1 = ImageFramlayout.heightFrameLayout;
+       private int widthMaxValue1 = ImageFramlayout.widthFrameLayout;
+        //鑾峰彇鐩稿涓�涓含搴﹀��
+       private int widthDimensionValue1 = Application.GetRealWidth(343) - Application.GetRealHeight(ImageFramlayout.widthFrameLayout / 2);
+        /// <summary>
+        /// 鍔犺浇褰辩墖鍒楄〃甯冨眬
+        /// (鐗规畩甯冨眬)
         /// </summary>
-        /// <param name="index">浠庡垪琛�0寮�濮嬭绠楃涓�涓厓绱�,璁剧疆瓒呰繃鍒楄〃鏈�澶�(new List().count-1)鍊艰涓烘棤鏁�</param>
-        public void SetIndex(int index = -1)
+        /// <param name="mList">鍒楄〃</param>
+        public void LoadImagePage(List<ImageFramlayout> imageFramlayoutList)
         {
-            if (index == -1) { return; }
-            this.CurrnetSelectIndex = index;
+
+            if (imageFramlayoutList==null||imageFramlayoutList.Count == 0)
+            {
+                return;
+            }
+            //int currnetheightValue = 0;
+            //int currnetWidthValue = 0;
+            //int heightMaxValue = ImageFramlayout.heightFrameLayout;
+            //int widthMaxValue = ImageFramlayout.widthFrameLayout;
+            ////鑾峰彇鐩稿涓�涓含搴﹀��
+            //int heightDimensionValue = this.Height - Application.GetRealHeight(this.topMargin) - Application.GetRealHeight(this.bottomMargin) - Application.GetRealHeight(heightMaxValue / 2);
+            //int widthDimensionValue = this.Width - Application.GetRealWidth(this.leftMargin) - Application.GetRealWidth(this.rightMargin) - Application.GetRealHeight(widthMaxValue / 2);
+            for (int i = 0; i < imageFramlayoutList.Count; i++)
+            {
+                var imageFram = imageFramlayoutList[i];
+                if (imageFram == null)
+                {
+                    continue;
+                }
+                imageFram.AddView(this);
+                imageFram.Y =Application.GetRealHeight(this.topMargin) + Application.GetRealHeight(currnetheightValue1);
+                imageFram.X = Application.GetRealWidth(currnetWidthValue1);
+                currnetWidthValue1 += (widthMaxValue1 + 8);//8鏄殧闂村��
+                if (widthDimensionValue1 < Application.GetRealWidth(currnetWidthValue1))
+                {
+                    currnetheightValue1 += (heightMaxValue1 + 20);//20鏄殧闂村��
+                    currnetWidthValue1 = 0;
+                }
+
+                imageFram.SetClickListener((fl) =>
+                {
+                    if (imageFram.Tag != null && imageFram.Tag is MovieLibrary)
+                    {
+                        selectImageAction?.Invoke((MovieLibrary)imageFram.Tag);
+                    }
+                });
+            }
+        }
+        /// <summary>
+        /// 姘村钩婊戝姩甯冨眬
+        /// </summary>
+        /// <param name="mList">鍒楄〃</param>
+        /// <param name="defaultIndex">榛樿鍊肩储寮曡寖鍥碵0,mList.count-1],鍊艰秴鍑鸿寖鍥磋涓烘棤鏁�</param>
+        public void LoadHorizontalPage(List<FilterCategoryEntity> mList, int defaultIndex = -1)
+        {
+            if (mList == null || mList.Count == 0)
+            {
+                return;
+            }
+            for (int i = 0; i < mList.Count; i++)
+            {
+                var filterCategory = mList[i];
+                BaseFramLayout horizontalFL = new BaseFramLayout
+                {
+                    Y = Application.GetRealHeight(i * 75),
+                    Height = Application.GetRealHeight(75),
+                    Width = this.Width,
+                };
+                this.AddChidren(horizontalFL);
+                Button btnTitleType = new Button
+                {
+                    X = Application.GetRealWidth(16),
+                    Y = Application.GetRealHeight(16),
+                    Height = Application.GetRealHeight(22),
+                    Width = Application.GetRealWidth(200),
+                    Text = filterCategory.name,
+                    TextSize = TextSize.Text16,
+                    TextColor = MusicColor.TextColor,
+                    TextAlignment = TextAlignment.CenterLeft,
+                    IsBold = true,
+                    Tag = filterCategory,
+                };
+                horizontalFL.AddChidren(btnTitleType);
+
+                HorizontalFramLayout horizontal = new HorizontalFramLayout(375 - 16, 28);
+                horizontalFL.AddChidren(horizontal);
+                horizontal.Y = btnTitleType.Bottom + Application.GetRealHeight(8);
+                horizontal.X = Application.GetRealWidth(16);
+                horizontal.SelectTypeEvent += (filters) =>
+                {
+                    KeypadEntity keypad = new KeypadEntity();
+                    keypad.category = filters.category;
+                    keypad.filterValue = filters.filterValue;
+                    keypad.filterName = filters.filterName;
+                    selectKeyAction?.Invoke(keypad);
+                };
+                horizontal.InitControl(filterCategory.filters, defaultIndex);
+
+
+            }
 
         }
+
         /// <summary>
         /// 鏈�鍚庝竴琛�
         /// </summary>
-        /// <param name="value"></param>
+        /// <param name="index">褰撳墠绱㈠紩鍊�</param>
         /// <returns></returns>
-        private bool IsLastColumn(int value)
+        private bool IsLastColumn(int index)
         {
-            int lineCount = this.mList.Count / this.mRowNumber;
-            int number = this.mList.Count % this.mRowNumber;
+            if (this.mRowNumber == 0 || mListCount == 0)
+            {
+                return false;
+            }
+            int lineCount = mListCount / this.mRowNumber;//寰楀嚭琛屾暟
+            int number = mListCount % this.mRowNumber;
             if (number != 0)
             {
-                if (value > lineCount * this.mRowNumber)
+                if (index > lineCount * this.mRowNumber)
                 {
                     return true;
                 }
             }
             else
             {
-                if (value > lineCount-- * this.mRowNumber)
+                int value = --lineCount * this.mRowNumber;
+                if (index > value)
                 {
                     return true;
                 }
 
             }
             return false;
-
         }
         /// <summary>
         /// 鏈�鍚庡彸杈归偅涓�涓�
@@ -223,11 +561,56 @@
         /// <returns></returns>
         private bool IsLastRight(int value)
         {
+            if (this.mRowNumber == 0)
+            {
+                return false;
+            }
             if (value % this.mRowNumber == 0)
             {
                 return true;
             };
             return false;
         }
+
+
+        /// <summary>
+        /// 閲嶆柊璁$畻button瀹藉害
+        /// </summary>
+        /// <param name="button">鎺т欢</param>
+        /// <param name="widthMax">瀹藉害鏈�澶ф渶</param>
+        /// <param name="padding">鍐呰竟璺�</param>
+        private void AdjustRealWidth(Button button, int widthMax = 0, int padding = 0)
+        {
+            if (button == null)
+            {
+                return;
+            }
+            int width;
+            if (widthMax == 0)
+            {
+                //鍐呰竟璺�
+                width = button.GetTextWidth() + Application.GetRealWidth(padding * 2);
+            }
+            else
+            {
+                if (button.GetTextWidth() > Application.GetRealWidth(widthMax))
+                {
+
+                    button.TextSize = 10;//鎺т欢楂樺害涓嶅彉,鏀瑰彉瀛椾綋澶у皬,鍑嗗鎹㈣;
+                    width = Application.GetRealWidth(widthMax);
+                }
+                else
+                {
+                    width = button.GetTextWidth();
+                }
+
+            }
+
+            button.Width = width;
+        }
+
+
+
+
     }
 }

--
Gitblit v1.8.0