KLInViteFriendPanelView.lua 628 B

12345678910111213141516
  1. ---@class KLInViteFriendPanelView:UIKmlLuaViewBase
  2. ---@field CodeTxt UIKmlLuaControl
  3. ---@field Num UIKmlLuaControl
  4. ---@field CopyBtn UIKmlLuaControl
  5. ---@field GenerateBtn UIKmlLuaControl
  6. local KLInViteFriendPanelView = {}
  7. setmetatable(KLInViteFriendPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/ui/Setting/Panel/KLInViteFriend/KLInViteFriendPanelKml'
  9. KLInViteFriendPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLInViteFriendPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLInViteFriendPanelView.content)
  13. end
  14. return KLInViteFriendPanelView