KLFriendTipsPanelView.lua 586 B

123456789101112131415
  1. ---@class KLFriendTipsPanelView:UIKmlLuaViewBase
  2. ---@field FriendAdd_ UIKmlLuaControl
  3. ---@field BtnClose UIKmlLuaControl
  4. ---@field TextContent UIKmlLuaControl
  5. local KLFriendTipsPanelView = {}
  6. setmetatable(KLFriendTipsPanelView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/FriendSys/Panel/KLFriendTips/KLFriendTipsPanelKml'
  8. KLFriendTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLFriendTipsPanelView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLFriendTipsPanelView.content)
  12. end
  13. return KLFriendTipsPanelView