12345678910111213141516 |
- ---@class KLBigMapTransferItemItemView:UIKmlLuaViewBase
- ---@field Label UIKmlLuaControl
- ---@field TextLevel UIKmlLuaControl
- ---@field ButtonCommon UIKmlLuaControl
- ---@field ImgVip UIKmlLuaControl
- local KLBigMapTransferItemItemView = {}
- setmetatable(KLBigMapTransferItemItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Item/KLBigMapTransferItem/KLBigMapTransferItemItemKml'
- KLBigMapTransferItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBigMapTransferItemItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLBigMapTransferItemItemView.content)
- end
- return KLBigMapTransferItemItemView
|