KLGameAnnouncementPanelView.lua 939 B

1234567891011121314151617181920212223
  1. ---@class KLGameAnnouncementPanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field img_13 UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. ---@field vline UIKmlLuaControl
  7. ---@field selectGamesToggroup UIKmlLuaControl
  8. ---@field selectGamesTogs UIKmlLuaControl
  9. ---@field selectGamesTogsDataList UIKmlLuaControl
  10. ---@field scrollview UIKmlLuaControl
  11. ---@field textInfo UIKmlLuaControl
  12. ---@field btn_iknow UIKmlLuaControl
  13. local KLGameAnnouncementPanelView = {}
  14. setmetatable(KLGameAnnouncementPanelView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/ui/Login/Panel/KLGameAnnouncement_PC/KLGameAnnouncementPanelKml'
  16. KLGameAnnouncementPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLGameAnnouncementPanelView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLGameAnnouncementPanelView.content)
  20. end
  21. return KLGameAnnouncementPanelView