123456789101112131415161718192021222324 |
- ---@class KLOpenServiceWingTaskPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field ChapterContent UIKmlLuaControl
- ---@field chapterDataList UIKmlLuaControl
- ---@field DIY_TaskScrollView UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- ---@field taskDataList UIKmlLuaControl
- ---@field EquipItem UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field chapter UIKmlLuaControl
- ---@field txt_chapter UIKmlLuaControl
- ---@field img_Get UIKmlLuaControl
- ---@field btn_Get UIKmlLuaControl
- local KLOpenServiceWingTaskPanelView = {}
- setmetatable(KLOpenServiceWingTaskPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/WingTask/Panel/KLOpenServiceWingTask/KLOpenServiceWingTaskPanelKml'
- KLOpenServiceWingTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServiceWingTaskPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServiceWingTaskPanelView.content)
- end
- return KLOpenServiceWingTaskPanelView
|