KLUILeftUpPanelView.lua 1.0 KB

123456789101112131415161718192021222324252627
  1. ---@class KLUILeftUpPanelView:UIKmlLuaViewBase
  2. ---@field activityRoot UIKmlLuaControl
  3. ---@field expandBtn UIKmlLuaControl
  4. ---@field foldBtn UIKmlLuaControl
  5. ---@field palyerInfo UIKmlLuaControl
  6. ---@field combat_powerBg UIKmlLuaControl
  7. ---@field combat_powerIcon UIKmlLuaControl
  8. ---@field combat_power UIKmlLuaControl
  9. ---@field defenseIcon UIKmlLuaControl
  10. ---@field defense UIKmlLuaControl
  11. ---@field toggleGroupTop UIKmlLuaControl
  12. ---@field taskToggle UIKmlLuaControl
  13. ---@field teamToggle UIKmlLuaControl
  14. ---@field jewelryTaskBtn UIKmlLuaControl
  15. ---@field announceBtn UIKmlLuaControl
  16. ---@field tabObjRoot UIKmlLuaControl
  17. local KLUILeftUpPanelView = {}
  18. setmetatable(KLUILeftUpPanelView,UIKmlLuaViewBase)
  19. local kmlPath = 'dev/ui/MainUI/Panel/KLUILeftUp/KLUILeftUpPanelKml'
  20. KLUILeftUpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  21. ---@param parent UIKmlLuaControl
  22. function KLUILeftUpPanelView:Init(parent)
  23. self:InitRoot(parent,kmlPath,KLUILeftUpPanelView.content)
  24. end
  25. return KLUILeftUpPanelView