123456789101112131415161718192021222324 |
- ---@class KLTradeGoodsItemView:UIKmlLuaViewBase
- ---@field btn_goods_item UIKmlLuaControl
- ---@field scroll_text_template UIKmlLuaControl
- ---@field KmlScrollTextTemplate UIKmlLuaControl
- ---@field txt_item_name UIKmlLuaControl
- ---@field item UIKmlLuaControl
- ---@field txt_count_down UIKmlLuaControl
- ---@field img_coin_type UIKmlLuaControl
- ---@field monthCardText UIKmlLuaControl
- ---@field txt_price UIKmlLuaControl
- ---@field img_favor_count UIKmlLuaControl
- ---@field txt_favor_count UIKmlLuaControl
- ---@field icon_career UIKmlLuaControl
- local KLTradeGoodsItemView = {}
- setmetatable(KLTradeGoodsItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Item/KLTradeGoods/KLTradeGoodsItemKml'
- KLTradeGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeGoodsItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeGoodsItemView.content)
- end
- return KLTradeGoodsItemView
|