KLShopMainPanelView.lua 752 B

1234567891011121314151617181920
  1. ---@class KLShopMainPanelView:UIKmlLuaViewBase
  2. ---@field shopMainPanel UIKmlLuaControl
  3. ---@field img_bg UIKmlLuaControl
  4. ---@field img_title UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. ---@field togGroup UIKmlLuaControl
  7. ---@field togList UIKmlLuaControl
  8. ---@field tog_shop UIKmlLuaControl
  9. ---@field tog_recharge UIKmlLuaControl
  10. local KLShopMainPanelView = {}
  11. setmetatable(KLShopMainPanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/outui/ShopMain/Panel/KLShopMain/KLShopMainPanelKml'
  13. KLShopMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLShopMainPanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLShopMainPanelView.content)
  17. end
  18. return KLShopMainPanelView