KLFastItemView.lua 734 B

123456789101112131415161718192021
  1. ---@class KLFastItemView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field shortcut_item UIKmlLuaControl
  4. ---@field noItem UIKmlLuaControl
  5. ---@field useBtn UIKmlLuaControl
  6. ---@field add_img_0 UIKmlLuaControl
  7. ---@field add_img UIKmlLuaControl
  8. ---@field control_circlebar UIKmlLuaControl
  9. ---@field noItem UIKmlLuaControl
  10. ---@field fastItemTip UIKmlLuaControl
  11. local KLFastItemView = {}
  12. setmetatable(KLFastItemView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/ui/MainUI/Item/KLFast/KLFastItemKml'
  14. KLFastItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLFastItemView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLFastItemView.content)
  18. end
  19. return KLFastItemView