KLCommonImageItemView.lua 502 B

12345678910111213
  1. ---@class KLCommonImageItemView:UIKmlLuaViewBase
  2. ---@field img UIKmlLuaControl
  3. local KLCommonImageItemView = {}
  4. setmetatable(KLCommonImageItemView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/ui/Equip/Item/KLCommonImage/KLCommonImageItemKml'
  6. KLCommonImageItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLCommonImageItemView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLCommonImageItemView.content)
  10. end
  11. return KLCommonImageItemView