123456789101112131415 |
- ---@class KLFriendTipsPanelView:UIKmlLuaViewBase
- ---@field FriendAdd_ UIKmlLuaControl
- ---@field BtnClose UIKmlLuaControl
- ---@field TextContent UIKmlLuaControl
- local KLFriendTipsPanelView = {}
- setmetatable(KLFriendTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/FriendSys/Panel/KLFriendTips/KLFriendTipsPanelKml'
- KLFriendTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFriendTipsPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLFriendTipsPanelView.content)
- end
- return KLFriendTipsPanelView
|