KLFriendApplySubItemView.lua 628 B

123456789101112131415
  1. ---@class KLFriendApplySubItemView:UIKmlLuaViewBase
  2. ---@field FriendApply_ UIKmlLuaControl
  3. ---@field add_friend_scrollview UIKmlLuaControl
  4. ---@field ListContent UIKmlLuaControl
  5. local KLFriendApplySubItemView = {}
  6. setmetatable(KLFriendApplySubItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/FriendSys/Item/KLFriendApplySub/KLFriendApplySubItemKml'
  8. KLFriendApplySubItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLFriendApplySubItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLFriendApplySubItemView.content)
  12. end
  13. return KLFriendApplySubItemView