KLGoldChallengePanelView.lua 985 B

1234567891011121314151617181920212223242526
  1. ---@class KLGoldChallengePanelView:UIKmlLuaViewBase
  2. ---@field bgRoot UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field img1 UIKmlLuaControl
  5. ---@field FinishCount UIKmlLuaControl
  6. ---@field FinishCountText UIKmlLuaControl
  7. ---@field cost UIKmlLuaControl
  8. ---@field costText UIKmlLuaControl
  9. ---@field costModel UIKmlLuaControl
  10. ---@field CloseBtn UIKmlLuaControl
  11. ---@field tipsText UIKmlLuaControl
  12. ---@field grid UIKmlLuaControl
  13. ---@field items UIKmlLuaControl
  14. ---@field img2 UIKmlLuaControl
  15. ---@field RefreshBtn UIKmlLuaControl
  16. local KLGoldChallengePanelView = {}
  17. setmetatable(KLGoldChallengePanelView,UIKmlLuaViewBase)
  18. local kmlPath = 'dev/outui/Activity/Panel/KLGoldChallenge/KLGoldChallengePanelKml'
  19. KLGoldChallengePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  20. ---@param parent UIKmlLuaControl
  21. function KLGoldChallengePanelView:Init(parent)
  22. self:InitRoot(parent,kmlPath,KLGoldChallengePanelView.content)
  23. end
  24. return KLGoldChallengePanelView