KLUINearPlayerPanelView.lua 884 B

12345678910111213141516171819202122
  1. ---@class KLUINearPlayerPanelView:UIKmlLuaViewBase
  2. ---@field panel_1228 UIKmlLuaControl
  3. ---@field img_1229 UIKmlLuaControl
  4. ---@field text_1230 UIKmlLuaControl
  5. ---@field text_1231 UIKmlLuaControl
  6. ---@field text_1232 UIKmlLuaControl
  7. ---@field text1 UIKmlLuaControl
  8. ---@field text_1233 UIKmlLuaControl
  9. ---@field near_player_scrollview UIKmlLuaControl
  10. ---@field near_player_gridview UIKmlLuaControl
  11. ---@field near_player_datalist UIKmlLuaControl
  12. local KLUINearPlayerPanelView = {}
  13. setmetatable(KLUINearPlayerPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/ui/Team/Panel/KLUINearPlayer/KLUINearPlayerPanelKml'
  15. KLUINearPlayerPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLUINearPlayerPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLUINearPlayerPanelView.content)
  19. end
  20. return KLUINearPlayerPanelView