KLDepotsPanelView.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ---@class KLDepotsPanelView:UIKmlLuaViewBase
  2. ---@field cut_area_up UIKmlLuaControl
  3. ---@field cut_area_down UIKmlLuaControl
  4. ---@field storeText UIKmlLuaControl
  5. ---@field edit_btn UIKmlLuaControl
  6. ---@field title UIKmlLuaControl
  7. ---@field closeBtn UIKmlLuaControl
  8. ---@field sv_frame UIKmlLuaControl
  9. ---@field pageLeft_btn UIKmlLuaControl
  10. ---@field pageRight_btn UIKmlLuaControl
  11. ---@field add_btn UIKmlLuaControl
  12. ---@field tidy_btn UIKmlLuaControl
  13. ---@field PageScrollView UIKmlLuaControl
  14. ---@field ItemContent UIKmlLuaControl
  15. ---@field edit_panel UIKmlLuaControl
  16. ---@field bgImg UIKmlLuaControl
  17. ---@field edit_oldName UIKmlLuaControl
  18. ---@field edit_CloseBtn UIKmlLuaControl
  19. ---@field old_Store_Name UIKmlLuaControl
  20. ---@field store_Name_Input UIKmlLuaControl
  21. ---@field edit_Cancel UIKmlLuaControl
  22. ---@field edit_Enter UIKmlLuaControl
  23. local KLDepotsPanelView = {}
  24. setmetatable(KLDepotsPanelView,UIKmlLuaViewBase)
  25. local kmlPath = 'dev/ui/Bag/Panel/KLDepots/KLDepotsPanelKml'
  26. KLDepotsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  27. ---@param parent UIKmlLuaControl
  28. function KLDepotsPanelView:Init(parent)
  29. self:InitRoot(parent,kmlPath,KLDepotsPanelView.content)
  30. end
  31. return KLDepotsPanelView