KLBigMapTransferItemItemView.lua 677 B

12345678910111213141516
  1. ---@class KLBigMapTransferItemItemView:UIKmlLuaViewBase
  2. ---@field Label UIKmlLuaControl
  3. ---@field TextLevel UIKmlLuaControl
  4. ---@field ButtonCommon UIKmlLuaControl
  5. ---@field ImgVip UIKmlLuaControl
  6. local KLBigMapTransferItemItemView = {}
  7. setmetatable(KLBigMapTransferItemItemView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/ui/Map/Item/KLBigMapTransferItem/KLBigMapTransferItemItemKml'
  9. KLBigMapTransferItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLBigMapTransferItemItemView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLBigMapTransferItemItemView.content)
  13. end
  14. return KLBigMapTransferItemItemView