KLBigMapPanelView.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---@class KLBigMapPanelView:UIKmlLuaViewBase
  2. ---@field img_21 UIKmlLuaControl
  3. ---@field img_drag UIKmlLuaControl
  4. ---@field btn_close UIKmlLuaControl
  5. ---@field img_24 UIKmlLuaControl
  6. ---@field TransferScrollView UIKmlLuaControl
  7. ---@field TransferList UIKmlLuaControl
  8. ---@field img_27 UIKmlLuaControl
  9. ---@field layout_28 UIKmlLuaControl
  10. ---@field btn_npc_transfer1 UIKmlLuaControl
  11. ---@field label_npc_transfer1 UIKmlLuaControl
  12. ---@field btn_npc_shop1 UIKmlLuaControl
  13. ---@field label_npc_shop1 UIKmlLuaControl
  14. ---@field right_area UIKmlLuaControl
  15. ---@field panel_scene UIKmlLuaControl
  16. ---@field img_scene UIKmlLuaControl
  17. ---@field icon_parent UIKmlLuaControl
  18. ---@field img_player_icon UIKmlLuaControl
  19. ---@field text_map_name UIKmlLuaControl
  20. ---@field btn_map_zoom_out UIKmlLuaControl
  21. ---@field img_17 UIKmlLuaControl
  22. ---@field btn_map_zoom_in UIKmlLuaControl
  23. ---@field slider_map_size UIKmlLuaControl
  24. ---@field Delivery_Item UIKmlLuaControl
  25. ---@field Delivery_Item_Tips UIKmlLuaControl
  26. ---@field FixedPoint UIKmlLuaControl
  27. ---@field FixedPointItem UIKmlLuaControl
  28. ---@field FixedPointText UIKmlLuaControl
  29. ---@field FixedPointToggle UIKmlLuaControl
  30. ---@field FixedPointItemCount UIKmlLuaControl
  31. local KLBigMapPanelView = {}
  32. setmetatable(KLBigMapPanelView,UIKmlLuaViewBase)
  33. local kmlPath = 'dev/ui/Map/Panel/KLBigMap/KLBigMapPanelKml'
  34. KLBigMapPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  35. ---@param parent UIKmlLuaControl
  36. function KLBigMapPanelView:Init(parent)
  37. self:InitRoot(parent,kmlPath,KLBigMapPanelView.content)
  38. end
  39. return KLBigMapPanelView