KLUIBuffInfoListPanelView.lua 621 B

123456789101112131415
  1. ---@class KLUIBuffInfoListPanelView:UIKmlLuaViewBase
  2. ---@field buffBg UIKmlLuaControl
  3. ---@field buffInfo_list UIKmlLuaControl
  4. ---@field closeBtn UIKmlLuaControl
  5. local KLUIBuffInfoListPanelView = {}
  6. setmetatable(KLUIBuffInfoListPanelView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/MainUI/Panel/KLUIBuffInfoList/KLUIBuffInfoListPanelKml'
  8. KLUIBuffInfoListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLUIBuffInfoListPanelView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLUIBuffInfoListPanelView.content)
  12. end
  13. return KLUIBuffInfoListPanelView