KLQuestionnairePanelView.lua 512 B

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