KLShapeShiftCardAutoUpgradePanelView.lua 882 B

123456789101112131415161718
  1. ---@class KLShapeShiftCardAutoUpgradePanelView:UIKmlLuaViewBase
  2. ---@field img1 UIKmlLuaControl
  3. ---@field btn_close UIKmlLuaControl
  4. ---@field text_tips UIKmlLuaControl
  5. ---@field togglegroup_auto UIKmlLuaControl
  6. ---@field toggle_layout UIKmlLuaControl
  7. ---@field toggle_list UIKmlLuaControl
  8. ---@field btn_card_func UIKmlLuaControl
  9. local KLShapeShiftCardAutoUpgradePanelView = {}
  10. setmetatable(KLShapeShiftCardAutoUpgradePanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardAutoUpgrade/KLShapeShiftCardAutoUpgradePanelKml'
  12. KLShapeShiftCardAutoUpgradePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLShapeShiftCardAutoUpgradePanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLShapeShiftCardAutoUpgradePanelView.content)
  16. end
  17. return KLShapeShiftCardAutoUpgradePanelView