---@class KLCommonItemTipsPanelView:UIKmlLuaViewBase ---@field bg UIKmlLuaControl ---@field bgImg UIKmlLuaControl ---@field closeBtn UIKmlLuaControl ---@field tipContent UIKmlLuaControl ---@field showItem UIKmlLuaControl ---@field countInfo UIKmlLuaControl ---@field btn_cancel UIKmlLuaControl ---@field btn_sure UIKmlLuaControl local KLCommonItemTipsPanelView = {} setmetatable(KLCommonItemTipsPanelView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/Common/Panel/KLCommonItemTips/KLCommonItemTipsPanelKml' KLCommonItemTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLCommonItemTipsPanelView:Init(parent) self:InitRoot(parent,kmlPath,KLCommonItemTipsPanelView.content) end return KLCommonItemTipsPanelView