KLArchangelDecomposePanelView.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---@class KLArchangelDecomposePanelView:UIKmlLuaViewBase
  2. ---@field BG UIKmlLuaControl
  3. ---@field CloseButton UIKmlLuaControl
  4. ---@field NoInfo UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. ---@field hide_panel UIKmlLuaControl
  7. ---@field EquipBg UIKmlLuaControl
  8. ---@field EquipScrollView UIKmlLuaControl
  9. ---@field gridview2 UIKmlLuaControl
  10. ---@field grail_list UIKmlLuaControl
  11. ---@field DecomposeCustomScrollView UIKmlLuaControl
  12. ---@field DecomposeCustomCount UIKmlLuaControl
  13. ---@field DecomposeCustomDataList UIKmlLuaControl
  14. ---@field DecomposeGetScrollView UIKmlLuaControl
  15. ---@field DecomposeGetCount UIKmlLuaControl
  16. ---@field DecomposeGetDataList UIKmlLuaControl
  17. ---@field decoIcon_1 UIKmlLuaControl
  18. ---@field decoIcon_1_Icon UIKmlLuaControl
  19. ---@field decoIcon_1_Text UIKmlLuaControl
  20. ---@field decoIconLineL UIKmlLuaControl
  21. ---@field decoIconLineR UIKmlLuaControl
  22. ---@field decoIcon UIKmlLuaControl
  23. ---@field DecomposeButton UIKmlLuaControl
  24. ---@field allselect UIKmlLuaControl
  25. ---@field text1 UIKmlLuaControl
  26. ---@field gouxuan UIKmlLuaControl
  27. local KLArchangelDecomposePanelView = {}
  28. setmetatable(KLArchangelDecomposePanelView, UIKmlLuaViewBase)
  29. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelDecompose/KLArchangelDecomposePanelKml'
  30. KLArchangelDecomposePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath, nil, '.txt')
  31. ---@param parent UIKmlLuaControl
  32. function KLArchangelDecomposePanelView:Init(parent)
  33. self:InitRoot(parent, kmlPath, KLArchangelDecomposePanelView.content)
  34. end
  35. return KLArchangelDecomposePanelView