KLRecoverPanelView.lua 1.1 KB

123456789101112131415161718192021222324252627282930
  1. ---@class KLRecoverPanelView:UIKmlLuaViewBase
  2. ---@field Mask UIKmlLuaControl
  3. ---@field KmlRecoverUI UIKmlLuaControl
  4. ---@field RecoverTypeGroup UIKmlLuaControl
  5. ---@field RecoverGet UIKmlLuaControl
  6. ---@field img1 UIKmlLuaControl
  7. ---@field img2 UIKmlLuaControl
  8. ---@field TypeContent UIKmlLuaControl
  9. ---@field BtnRecover UIKmlLuaControl
  10. ---@field closeBtn UIKmlLuaControl
  11. ---@field AutoPickToggle UIKmlLuaControl
  12. ---@field AutoPickToggleText UIKmlLuaControl
  13. ---@field AutoRecoverToggle UIKmlLuaControl
  14. ---@field AutoRecoverToggleText UIKmlLuaControl
  15. ---@field scrollview1 UIKmlLuaControl
  16. ---@field layout2 UIKmlLuaControl
  17. ---@field loopscrollviewData UIKmlLuaControl
  18. ---@field TextTitle UIKmlLuaControl
  19. ---@field privilege_tip UIKmlLuaControl
  20. local KLRecoverPanelView = {}
  21. setmetatable(KLRecoverPanelView,UIKmlLuaViewBase)
  22. local kmlPath = 'dev/ui/Recover/Panel/KLRecover/KLRecoverPanelKml'
  23. KLRecoverPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  24. ---@param parent UIKmlLuaControl
  25. function KLRecoverPanelView:Init(parent)
  26. self:InitRoot(parent,kmlPath,KLRecoverPanelView.content)
  27. end
  28. return KLRecoverPanelView