12345678910111213141516 |
- ---@class KLInViteFriendPanelView:UIKmlLuaViewBase
- ---@field CodeTxt UIKmlLuaControl
- ---@field Num UIKmlLuaControl
- ---@field CopyBtn UIKmlLuaControl
- ---@field GenerateBtn UIKmlLuaControl
- local KLInViteFriendPanelView = {}
- setmetatable(KLInViteFriendPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Setting/Panel/KLInViteFriend/KLInViteFriendPanelKml'
- KLInViteFriendPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLInViteFriendPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLInViteFriendPanelView.content)
- end
- return KLInViteFriendPanelView
|