KLFastItemView.lua 835 B

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