---@class KLCodePanelView:UIKmlLuaViewBase ---@field CodeInput UIKmlLuaControl ---@field exchangeBtn UIKmlLuaControl local KLCodePanelView = {} setmetatable(KLCodePanelView,UIKmlLuaViewBase) local kmlPath = 'dev/ui/Setting/Panel/KLCode/KLCodePanelKml' KLCodePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt') ---@param parent UIKmlLuaControl function KLCodePanelView:Init(parent) self:InitRoot(parent,kmlPath,KLCodePanelView.content) end return KLCodePanelView