KLFirstChargeADPanelView.lua 839 B

12345678910111213141516171819202122
  1. ---@class KLFirstChargeADPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field arrow UIKmlLuaControl
  4. ---@field img4 UIKmlLuaControl
  5. ---@field model_icon UIKmlLuaControl
  6. ---@field text3 UIKmlLuaControl
  7. ---@field text5 UIKmlLuaControl
  8. ---@field text6 UIKmlLuaControl
  9. ---@field img1 UIKmlLuaControl
  10. ---@field DevilText UIKmlLuaControl
  11. ---@field CloseBtn UIKmlLuaControl
  12. local KLFirstChargeADPanelView = {}
  13. setmetatable(KLFirstChargeADPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/FirstCharge/Panel/KLFirstChargeAD/KLFirstChargeADPanelKml'
  15. KLFirstChargeADPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLFirstChargeADPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLFirstChargeADPanelView.content)
  19. end
  20. return KLFirstChargeADPanelView