[+] UI循环列表拓展Grid 用法和List一样

[+] UI循环列表拓展Grid 用法和List一样
This commit is contained in:
ALEXTANG
2023-08-18 16:32:08 +08:00
parent 0e6851e691
commit 0f2ad3c71d
26 changed files with 2868 additions and 41 deletions

View File

@@ -0,0 +1,14 @@
namespace GameLogic
{
public class UILoopGridItemWidget: SelectItemBase
{
public LoopGridViewItem LoopItem { set; get; }
public int Index { private set; get; }
public virtual void UpdateItem(int index)
{
Index = index;
}
}
}