KLArchangelGroupPanelView.lua 792 B

12345678910111213141516171819
  1. ---@class KLArchangelGroupPanelView:UIKmlLuaViewBase
  2. ---@field MaskCloseButton UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field toggleGroup UIKmlLuaControl
  5. ---@field toggleLayout UIKmlLuaControl
  6. ---@field breakthroughToggle UIKmlLuaControl
  7. ---@field grailToggle UIKmlLuaControl
  8. ---@field decomposeToggle UIKmlLuaControl
  9. local KLArchangelGroupPanelView = {}
  10. setmetatable(KLArchangelGroupPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelGroup/KLArchangelGroupPanelKml'
  12. KLArchangelGroupPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLArchangelGroupPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLArchangelGroupPanelView.content)
  16. end
  17. return KLArchangelGroupPanelView