---@class KLShopMainPanelView:UIKmlLuaViewBase ---@field shopMainPanel UIKmlLuaControl ---@field img_bg UIKmlLuaControl ---@field img_title UIKmlLuaControl ---@field btn_close UIKmlLuaControl ---@field togGroup UIKmlLuaControl ---@field togList UIKmlLuaControl ---@field tog_shop UIKmlLuaControl ---@field tog_recharge UIKmlLuaControl local KLShopMainPanelView = {} setmetatable(KLShopMainPanelView,UIKmlLuaViewBase) local kmlPath = 'dev/outui/ShopMain/Panel/KLShopMain/KLShopMainPanelKml' KLShopMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLShopMainPanelView:Init(parent) self:InitRoot(parent,kmlPath,KLShopMainPanelView.content) end return KLShopMainPanelView