KLAppearGroupPanelView.lua 494 B

123456789101112
  1. ---@class KLAppearGroupPanelView:UIKmlLuaViewBase
  2. local KLAppearGroupPanelView = {}
  3. setmetatable(KLAppearGroupPanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/outui/AppearGroup/Panel/KLAppearGroup/KLAppearGroupPanelKml'
  5. KLAppearGroupPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLAppearGroupPanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLAppearGroupPanelView.content)
  9. end
  10. return KLAppearGroupPanelView