KLShapeShiftCardUnLockPanelView.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---@class KLShapeShiftCardUnLockPanelView:UIKmlLuaViewBase
  2. ---@field img1 UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field togglegroup_card UIKmlLuaControl
  6. ---@field img_rank UIKmlLuaControl
  7. ---@field text_tips UIKmlLuaControl
  8. ---@field text_rank UIKmlLuaControl
  9. ---@field img_first UIKmlLuaControl
  10. ---@field text8 UIKmlLuaControl
  11. ---@field text_first_success UIKmlLuaControl
  12. ---@field text10 UIKmlLuaControl
  13. ---@field item_first UIKmlLuaControl
  14. ---@field text_first_cost UIKmlLuaControl
  15. ---@field btn_first_add UIKmlLuaControl
  16. ---@field img_second UIKmlLuaControl
  17. ---@field text14 UIKmlLuaControl
  18. ---@field text_second_success UIKmlLuaControl
  19. ---@field text16 UIKmlLuaControl
  20. ---@field item_second UIKmlLuaControl
  21. ---@field text_second_cost UIKmlLuaControl
  22. ---@field btn_second_add UIKmlLuaControl
  23. ---@field img20 UIKmlLuaControl
  24. ---@field img_bar UIKmlLuaControl
  25. ---@field loadingbar_value UIKmlLuaControl
  26. ---@field text_bar_value UIKmlLuaControl
  27. ---@field text_luck_tips UIKmlLuaControl
  28. ---@field btn_open UIKmlLuaControl
  29. ---@field btn_help UIKmlLuaControl
  30. local KLShapeShiftCardUnLockPanelView = {}
  31. setmetatable(KLShapeShiftCardUnLockPanelView,UIKmlLuaViewBase)
  32. local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardUnLock/KLShapeShiftCardUnLockPanelKml'
  33. KLShapeShiftCardUnLockPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  34. ---@param parent UIKmlLuaControl
  35. function KLShapeShiftCardUnLockPanelView:Init(parent)
  36. self:InitRoot(parent,kmlPath,KLShapeShiftCardUnLockPanelView.content)
  37. end
  38. return KLShapeShiftCardUnLockPanelView