KLMonthCardBuyTipPanelView.lua 560 B

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