KLUIBagPanelView.lua 758 B

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