KLDailyRafflePanelView.lua 995 B

12345678910111213141516171819202122232425
  1. ---@class KLDailyRafflePanelView:UIKmlLuaViewBase
  2. ---@field datalist_active UIKmlLuaControl
  3. ---@field txt_cur_active_num UIKmlLuaControl
  4. ---@field icon_get_5 UIKmlLuaControl
  5. ---@field icon_get_4 UIKmlLuaControl
  6. ---@field icon_get_3 UIKmlLuaControl
  7. ---@field icon_get_2 UIKmlLuaControl
  8. ---@field icon_get_1 UIKmlLuaControl
  9. ---@field icon_box_5 UIKmlLuaControl
  10. ---@field icon_box_4 UIKmlLuaControl
  11. ---@field icon_box_3 UIKmlLuaControl
  12. ---@field icon_box_2 UIKmlLuaControl
  13. ---@field icon_box_1 UIKmlLuaControl
  14. ---@field slider_active_num UIKmlLuaControl
  15. local KLDailyRafflePanelView = {}
  16. setmetatable(KLDailyRafflePanelView,UIKmlLuaViewBase)
  17. local kmlPath = 'dev/outui/DailyRaffle/Panel/KLDailyRaffle/KLDailyRafflePanelKml'
  18. KLDailyRafflePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  19. ---@param parent UIKmlLuaControl
  20. function KLDailyRafflePanelView:Init(parent)
  21. self:InitRoot(parent,kmlPath,KLDailyRafflePanelView.content)
  22. end
  23. return KLDailyRafflePanelView