KLTradeCrossServerGoodsPanelView.lua 638 B

12345678910111213
  1. ---@class KLTradeCrossServerGoodsPanelView:UIKmlLuaViewBase
  2. ---@field osa_scrollview_crossServer_goods UIKmlLuaControl
  3. local KLTradeCrossServerGoodsPanelView = {}
  4. setmetatable(KLTradeCrossServerGoodsPanelView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/outui/Trade/Panel/KLTradeCrossServerGoods/KLTradeCrossServerGoodsPanelKml'
  6. KLTradeCrossServerGoodsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLTradeCrossServerGoodsPanelView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLTradeCrossServerGoodsPanelView.content)
  10. end
  11. return KLTradeCrossServerGoodsPanelView