KLTaskPanelView.lua 594 B

12345678910111213141516
  1. ---@class KLTaskPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field info_view UIKmlLuaControl
  4. ---@field left_top_task_process_panel_layout UIKmlLuaControl
  5. ---@field left_top_task_list UIKmlLuaControl
  6. local KLTaskPanelView = {}
  7. setmetatable(KLTaskPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/ui/Task/Panel/KLTask/KLTaskPanelKml'
  9. KLTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLTaskPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLTaskPanelView.content)
  13. end
  14. return KLTaskPanelView