KLUISystemItemView.lua 549 B

123456789101112131415
  1. ---@class KLUISystemItemView:UIKmlLuaViewBase
  2. ---@field sysIcon UIKmlLuaControl
  3. ---@field red UIKmlLuaControl
  4. ---@field TimeText UIKmlLuaControl
  5. local KLUISystemItemView = {}
  6. setmetatable(KLUISystemItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/MainUI/Item/KLUISystem/KLUISystemItemKml'
  8. KLUISystemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLUISystemItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLUISystemItemView.content)
  12. end
  13. return KLUISystemItemView