123456789101112131415161718 |
- ---@class KLOpenServiceWingTaskItemView:UIKmlLuaViewBase
- ---@field BG UIKmlLuaControl
- ---@field TaskDes UIKmlLuaControl
- ---@field CountText UIKmlLuaControl
- ---@field ItemPoint UIKmlLuaControl
- ---@field GoBT UIKmlLuaControl
- ---@field IsGet UIKmlLuaControl
- local KLOpenServiceWingTaskItemView = {}
- setmetatable(KLOpenServiceWingTaskItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/WingTask/Item/KLOpenServiceWingTask/KLOpenServiceWingTaskItemKml'
- KLOpenServiceWingTaskItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServiceWingTaskItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServiceWingTaskItemView.content)
- end
- return KLOpenServiceWingTaskItemView
|