KLRecoverBagPanelView.lua 841 B

12345678910111213141516171819202122
  1. ---@class KLRecoverBagPanelView:UIKmlLuaViewBase
  2. ---@field cut_area_up UIKmlLuaControl
  3. ---@field cut_area_down UIKmlLuaControl
  4. ---@field img_250 UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. ---@field closeBtn UIKmlLuaControl
  7. ---@field sv_frame UIKmlLuaControl
  8. ---@field person_shop_btn UIKmlLuaControl
  9. ---@field storage_btn UIKmlLuaControl
  10. ---@field recycle_btn UIKmlLuaControl
  11. ---@field tidy_btn UIKmlLuaControl
  12. local KLRecoverBagPanelView = {}
  13. setmetatable(KLRecoverBagPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/ui/Bag/Panel/KLRecoverBag/KLRecoverBagPanelKml'
  15. KLRecoverBagPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLRecoverBagPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLRecoverBagPanelView.content)
  19. end
  20. return KLRecoverBagPanelView