KLResetPointItemView.lua 858 B

1234567891011121314151617181920212223
  1. ---@class KLResetPointItemView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bgImg UIKmlLuaControl
  4. ---@field img_679 UIKmlLuaControl
  5. ---@field closeBtn UIKmlLuaControl
  6. ---@field layout_681 UIKmlLuaControl
  7. ---@field text_682 UIKmlLuaControl
  8. ---@field cost_item UIKmlLuaControl
  9. ---@field item_click_img UIKmlLuaControl
  10. ---@field layout_684 UIKmlLuaControl
  11. ---@field common_lf_btn UIKmlLuaControl
  12. ---@field common_rt_btn UIKmlLuaControl
  13. local KLResetPointItemView = {}
  14. setmetatable(KLResetPointItemView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/ui/Role/Item/KLResetPoint/KLResetPointItemKml'
  16. KLResetPointItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLResetPointItemView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLResetPointItemView.content)
  20. end
  21. return KLResetPointItemView