123456789101112131415161718192021222324 |
- ---@class KLOpenServiceWingTaskChapterItemView:UIKmlLuaViewBase
- ---@field ItemIcon UIKmlLuaControl
- ---@field Highlights UIKmlLuaControl
- ---@field HighlightsSelect UIKmlLuaControl
- ---@field img_common UIKmlLuaControl
- ---@field img_select UIKmlLuaControl
- ---@field icon_close UIKmlLuaControl
- ---@field AngleBG UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field Angle UIKmlLuaControl
- ---@field img8 UIKmlLuaControl
- ---@field Des UIKmlLuaControl
- ---@field btn_Chapter UIKmlLuaControl
- local KLOpenServiceWingTaskChapterItemView = {}
- setmetatable(KLOpenServiceWingTaskChapterItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/WingTask/Item/KLOpenServiceWingTaskChapter/KLOpenServiceWingTaskChapterItemKml'
- KLOpenServiceWingTaskChapterItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServiceWingTaskChapterItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServiceWingTaskChapterItemView.content)
- end
- return KLOpenServiceWingTaskChapterItemView
|