123456789101112 |
- ---@class KLQuestionnairePanelView:UIKmlLuaViewBase
- local KLQuestionnairePanelView = {}
- setmetatable(KLQuestionnairePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/DailyRaffle/Panel/KLQuestionnaire/KLQuestionnairePanelKml'
- KLQuestionnairePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLQuestionnairePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLQuestionnairePanelView.content)
- end
- return KLQuestionnairePanelView
|