12345678910111213141516 |
- ---@class KLTaskPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field info_view UIKmlLuaControl
- ---@field left_top_task_process_panel_layout UIKmlLuaControl
- ---@field left_top_task_list UIKmlLuaControl
- local KLTaskPanelView = {}
- setmetatable(KLTaskPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Task/Panel/KLTask/KLTaskPanelKml'
- KLTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTaskPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTaskPanelView.content)
- end
- return KLTaskPanelView
|