KLHorseRaceLampPanelView.lua 705 B

1234567891011121314151617
  1. ---@class KLHorseRaceLampPanelView:UIKmlLuaViewBase
  2. ---@field HorseRaceLampBG UIKmlLuaControl
  3. ---@field scroll UIKmlLuaControl
  4. ---@field HorseRaceLampLayout UIKmlLuaControl
  5. ---@field HorseRaceLamp UIKmlLuaControl
  6. ---@field HorseRace UIKmlLuaControl
  7. local KLHorseRaceLampPanelView = {}
  8. setmetatable(KLHorseRaceLampPanelView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/outui/Message/Panel/KLHorseRaceLamp/KLHorseRaceLampPanelKml'
  10. KLHorseRaceLampPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLHorseRaceLampPanelView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLHorseRaceLampPanelView.content)
  14. end
  15. return KLHorseRaceLampPanelView