KLFriendAddPanelView.lua 750 B

12345678910111213141516171819
  1. ---@class KLFriendAddPanelView:UIKmlLuaViewBase
  2. ---@field FriendAdd_ UIKmlLuaControl
  3. ---@field BtnClose UIKmlLuaControl
  4. ---@field add_friend_butten UIKmlLuaControl
  5. ---@field TextAddFriend UIKmlLuaControl
  6. ---@field friend_applay_butten UIKmlLuaControl
  7. ---@field TextFriendApply UIKmlLuaControl
  8. ---@field SubRoot UIKmlLuaControl
  9. local KLFriendAddPanelView = {}
  10. setmetatable(KLFriendAddPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/ui/FriendSys/Panel/KLFriendAdd/KLFriendAddPanelKml'
  12. KLFriendAddPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLFriendAddPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLFriendAddPanelView.content)
  16. end
  17. return KLFriendAddPanelView