KLShapeShiftCardMainPanelView.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. ---@class KLShapeShiftCardMainPanelView:UIKmlLuaViewBase
  2. ---@field img_bg UIKmlLuaControl
  3. ---@field img_51 UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field toggle_group_title UIKmlLuaControl
  6. ---@field layout_55 UIKmlLuaControl
  7. ---@field toggle_inlay UIKmlLuaControl
  8. ---@field text_57 UIKmlLuaControl
  9. ---@field item_equip_redPoint_inlay UIKmlLuaControl
  10. ---@field toggle_house UIKmlLuaControl
  11. ---@field text_59 UIKmlLuaControl
  12. ---@field item_equip_redPoint_house UIKmlLuaControl
  13. ---@field toggle_synthesis UIKmlLuaControl
  14. ---@field text_61 UIKmlLuaControl
  15. ---@field item_equip_redPoint_synthesis UIKmlLuaControl
  16. ---@field toggle_break UIKmlLuaControl
  17. ---@field text_61 UIKmlLuaControl
  18. ---@field item_equip_redPoint_break UIKmlLuaControl
  19. ---@field toggle_shop UIKmlLuaControl
  20. ---@field text_63 UIKmlLuaControl
  21. ---@field item_equip_redPoint_shop UIKmlLuaControl
  22. ---@field img_block UIKmlLuaControl
  23. local KLShapeShiftCardMainPanelView = {}
  24. setmetatable(KLShapeShiftCardMainPanelView,UIKmlLuaViewBase)
  25. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardMain/KLShapeShiftCardMainPanelKml'
  26. KLShapeShiftCardMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  27. ---@param parent UIKmlLuaControl
  28. function KLShapeShiftCardMainPanelView:Init(parent)
  29. self:InitRoot(parent,kmlPath,KLShapeShiftCardMainPanelView.content)
  30. end
  31. return KLShapeShiftCardMainPanelView