KLShapeShiftCardTipsPanelView.lua 1.1 KB

123456789101112131415161718192021222324252627
  1. ---@class KLShapeShiftCardTipsPanelView:UIKmlLuaViewBase
  2. ---@field img_close UIKmlLuaControl
  3. ---@field img_panel UIKmlLuaControl
  4. ---@field img1 UIKmlLuaControl
  5. ---@field card_bg UIKmlLuaControl
  6. ---@field card_img UIKmlLuaControl
  7. ---@field card_name UIKmlLuaControl
  8. ---@field card_level UIKmlLuaControl
  9. ---@field text_name UIKmlLuaControl
  10. ---@field text_tips UIKmlLuaControl
  11. ---@field text_quality UIKmlLuaControl
  12. ---@field text_type UIKmlLuaControl
  13. ---@field info_view UIKmlLuaControl
  14. ---@field all_list_layout UIKmlLuaControl
  15. ---@field all_info_data UIKmlLuaControl
  16. ---@field btn_func UIKmlLuaControl
  17. local KLShapeShiftCardTipsPanelView = {}
  18. setmetatable(KLShapeShiftCardTipsPanelView,UIKmlLuaViewBase)
  19. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardTips/KLShapeShiftCardTipsPanelKml'
  20. KLShapeShiftCardTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  21. ---@param parent UIKmlLuaControl
  22. function KLShapeShiftCardTipsPanelView:Init(parent)
  23. self:InitRoot(parent,kmlPath,KLShapeShiftCardTipsPanelView.content)
  24. end
  25. return KLShapeShiftCardTipsPanelView